Job SSIS - Extract data from PostgreSQL to SQL Server - sql-server

I have some troubles to automatize a package SSIS with a job SQL Server.
I have to get some data from a DB PostgreSQL to a DB SQL Server. For that, I'm using an ODBC connector (downloaded from http://www.postgresql.org/ftp/odbc/versions/msi/ and added using administrator console odbc in C:\Windows\SysWOW64\odbcad.exe):
driver odbc:
odbcad:
To be able to run the SSIS package, I had to change debugging settings in SSDT to run the package in 32 bits mode :
So far, everything works fine, but when I'm trying to automatize it with a SQL Server job, the job fails. Yet, I specified to my job to run in 32 bits mode too:
Below, the errors I got (sorry it's french):
The most meaningful error is
failed to call method acquireconnection to connection manager "PostgreSQL". Error code : 0xC0014009
I'm stuck & every related posts I found are solved using the checkbox "32 bits mode" checked on the job.

Thank's to M.Ali, I found the solution.
I just needed to add the DSN connection under System because the job SQL Agent is launch with another account than my current user.

Related

SSIS package failing via Credential account

I have one package which loads data from excel using ace.oledb.12.0 driver to SQL server(same server where SQL agent service is running.).
When I ran this Step from SQL Agent using Infrastructure Service account it succeed.
When I ran this step using a credential account it is stopping the job as a failure 'Unexpected Termination'.
Funny part is this is running exactly fine for files with data size low(100kb-300kb) when run from both Infrastructure Service account and a Credential account.
But for my current file having size 4.5 mb it is failing via Credential account.
Is there a way I can capture why the job is getting terminated?
Disclaimer: I work for ZappySys
Looks like you need to find out detailed error message to know more. Did you deploy package using SSIS Project Mode in SSISDB or running as File System Package? When you run SSIS Package via Agent Job you will see very limited error message and many times its useless. So better to run package under SSIS Catalog so you see full execution log. If that is not possible then try to Add Some SSIS Log Provider (see below) for better logging on error messages.
How to add SSIS Log Provider in your package
How to view execution log in SSIS Catalog (See Step#10 in this link)

SSIS run time error occurs when run on SQL Server catalog

I have create a SSIS package to extract data from oracle source and load data into a SQL Server database. It runs successfully when run it on SSIS.
But I'm getting an error when I runs the packages on SQL Server catalog.
Errors shown below
I also changed the execution type into 64 to 32 and try again. But same error occurred.
Kindly give solution for this.
Thanks.
Make sure you change it to 32bit in the package, and in the SQL Agent job if there is one. Also, as you are using ODBC, ensure you're using the 32bit ODBC driver and not the 64bit version - There are two different ODBC Data Source Administrators, one for each.
You could always change the job to OLE DB and see if that works correct just to make sure it's not a network/firewall issue.
Based on the error message, the issue should be related to account permissions.
As per my understanding, the account that log on the SQL Agent job
may doesn’t have permission to access the database server or SSIS
engine uses the design time values of a task until it actually runs a
task when DelayValidation is not set to true.
Note: If user has sysadmin permission doesn't means he has permissions to access the database server in ODBC Connection Manager.
Error message Fix:
Make sure the account in the job step is used to run the package has permissions to access the database server in ODBC Connection Manager. And change the DelayValidation property of your Data Flow Task to true and then re-ran the job.

SSIS - Email not sent from deployed package

I am building a package that performs multiple tasks and sends a success email (from script task) as last step of the package.
When running the package manually from Visual Studio the email is sent correctly. However, when running the deployed package from a Job in SQL Server the email is never sent (I have checked in the Gmail account that sends the email and it does not appear in the "Sent" folder).
I also checked the report for the package execution and I can't find the send email task, so it seems that it never actually get to the script task that sends the email.
Any ideas what the problem might be?
Thanks!
Ensure that you can send mail in SQL Server without Visual Studio involved. Also, the job from SQL Server sometimes runs as a different user than you when you login and run via Visual Studio. The problem may be that the script isn't running because the SQL Server user does not have permission to run a portion of the script. I would set this to run as an SSIS job in SQL Server and then check the SSIS log in SQL Server to see where the failure is occurring. If it is a different user issue, you can solve a multiple number of ways. You can give the SQL Server user the necessary permissions or you can setup a proxy account in SQL Server that has permission to run the job
The following link answers this question. Before deploying to SSIS, change the SQL Server version:
SSIS: script task (vs15) not work when deploy on sql server 2014
I have noticed something else while looking at the execution report, and now I am even more confused... (since other jobs that tigger emails are executed and everything is fine).
1) When executing the job from a job (executed by SQLSERVERAGENT) it seems like the task runs (since logs appear), but still the email is not sent:
2) When executing in SQL Server manually (with my user which is SysAdmin) an error appears:

Package that runs perfect on SSIS, but fails on SQL - server job activity

I wonder if you can help me, I am having a problem which I can't figure out for the last few days... I get these errors when I run a package, that runs perfect on SSIS, on SQL - server job activity:
Error: There were errors during task validation
Error: .. failed validation and returned error code 0xC0208449
Error: One or more component failed validation
ADO NET source has failed to acquire the connection {...} with the following error message "exception from HRESULT: 0x80131937
Some additional info:
I am using project deployment mode
my Sql server version is 2014
My protection level in SSIS is DontSaveSensitives both in project and packages, but I think that it doesn't matter when I deploy anyway.
The package I get this error about run on SSIS but not on SQL-server job activity
When runnin within Sql Agent Job, your package is failing to acquire connections. First review your package/job connections, and make sure they have deployed properly.
Then rule out access permissions issues by testing the package using a Sql Server user/password account. If it works this way then most likely you need to use a Sql Server Proxy account.
If you are still unable to access then check connectivity between the machine you are running the job and the one(s) where your data is located (addresses, ports and instances,..). Also make sure that all involved machines can use the same transport (named pipe, tcp,...) in Sql Server Configuration Manager.

SSIS Package stalls when run as a SQL Job

Here is the short version of the problem: I have a discrete DTSX file that works fine on our Production server, but doesn't on our new Dev server.
Symptom: When run from a SQL-Server job, the job starts and nothing at all happens, and it never finishes... it just hangs, using very little system resources.
Some info: For Prod, the packages were developed on SQL-Server 2012 and run on an NT 2008 server. The new Dev server is also SQL-Server 2012, but runs on an NT 2012 server (in case that matters). I have duplicated the folder/file structure exactly, including drive name. The package uses an external dtsConfig file, but as I said - the folder/file structure is identical.
The SSIS service, SQL-Server Agent, and my remote login are all the same, and is a member of the server Administrator group on the Dev box. If I copy the command line text from the SQL job and run it in a CMD window using dtexec.exe, the package executes correctly. The job owner is my login, and the "run as" is the SQL-Agent, which - as I mentioned - is the same login. Since everything in the package uses integrated security, everything should be running using the same login whether on the command line or via the SQL-Agent, which should eliminate any user permission/credentials issues.
I tried adding SSIS logging to the package, logging everything I could. When I run the package from the command line, I get a ton of messages in the log. When I run the package via the SQL job, there are no messages at all in the log - nothing.
Whatever is going on, it's not getting far enough into the SSIS package to generate a single log entry. It's just stopping but not exiting or throwing an error. FWIW - I have the same problem with every other package I've tried.
Any ideas are appreciated...
I found the cause of the problem. The MS-SQL Server service was using a different login than the SSIS server service and the NT Agent service (it was using a local service account).
Once I changed the MS-SQL Server login to match the others (and restarted the service), the job ran correctly.

Resources