SSIS Package Errors using OLE DB Command transformation - sql-server

I recently begun upgrading a MS SQL Server 2005 instance to MS SQL 2012. I have created a VM and installed MS SQL Server and used backups to create the DBs on the new server.
In Visual Studio I was switching my old connections to the new connections and when I switched the connection of an OLE DB Command Transformation that contains the command "UPDATE JOB SET Active = 0 WHERE Job.JobId = ?" I received the following errors.
Error 1 Validation error.
Sync Jobs: Sync Jobs: SSIS Error Code
DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code:
0x80004005. An OLE DB record is available. Source: "Microsoft SQL
Server Native Client 11.0" Hresult: 0x80004005 Description: "The
metadata could not be determined because statement 'REVERT
--Check if SSB is enabled in this database' in procedure 'sp_send_dbmail'
does not support metadata discovery.". JobPack.dtsx 0 0
Error 2 Validation error.
Sync Jobs: Sync Jobs: Unable to retrieve
destination column descriptions from the parameters of the SQL
command. JobPack.dtsx 0 0
I checked to make sure this "SSB" was on in the new DB (it wasn't) but even after enabling it I still cannot resolve this error. I switch back to the old server and it works fine...
UPDATE:
I was wondering where the email procedure came into play and I found that the DB has a trigger that emails when updated. Disabling this trigger resolves the SSIS package issue. I still have no idea why BIDS shows an error in the editor when this trigger is enabled.

I was able to resolve this issue simply by switching from the Native SQL Driver to the MS SQL Driver on the transformation. I still have no idea why that works and why this caused a compatibility problem.

I came across a similar error.
An OLE DB record is available. Source: "Microsoft SQL Server Native Client 11.0" Hresult: 0x80004005 Description: "The metadata could not be determined because statement '....' uses a temp table.".
Work around.
If SP uses a #table or ##table and it is used in the SP, then we need to specify the #table structure along with the EXEC.
The SP should be given along with the structure.
EXEC SP_TestTemp 1,2
it should be given like
EXEC SP_TestTemp 1,2 WITH RESULT SETS
(
(
id int,
Marks int
)
)
Note: the 'retain same connection = true' and 'validate external metadata' = false did not help/work here.

Related

how to solve problems of configuration in agent SQL?

I am doing a data warehousing project using SQL server for the analysis services database. This service works perfectly, but the problem is with the SQL agent. I created a job to do a daily ETL process with SISS packages. When I try to run that job it returns a configuration error in the connection manager (I bring data from postgre SQL with ODBC). The error it returns is the following (translated with google since it returns it in Spanish):
Code: 0xC020801B Source: Data Flow Task OLE DB Destination [2] Description: Cannot find runtime connection manager with id. "{849459E5-813C-4707-810B-4C5214A362DA}". Check that the connection manager collection has a connection manager with that id. End of error Error: 2020-10-02 11: 12: 00.36 Code: 0xC0047017 Source: SSIS.Pipeline Data Flow Task Description: OLE DB Destination validation failed; error code 0xC020801B was returned.
The question is: how can I change this configuration so that in the connection manager it has the same id that SQL Server mentions?
You need to parameterise the connection within the SSIS designer.
See this article

Redirect Error to log error into a table is not executing

I am trying to load 200000 rows into a table. However, after inserting 1,29,024 rows. the SSIS package is failing with the following error:
Source: "Microsoft SQL Server Native Client 11.0" Hresult: 0x80004005 Description: "Conversion failed when converting the nvarchar value 'X' to data type int.".
There are 40 columns. The package fails every time at 1,29,024. I tried to log record with the problematic data into a separate table, however, the log component is not executing.
What I am doing wrong here? How could be the possible reasons why the error log component is not executing even though the OLE DB Source is failing?
Softwares:
Visual Studio 2013 Professional
SQL server Data Tools 12.0.3
SQL Server 2014

SSIS OLEDB Destination Insert fail for Data Access Mode Table or View

I have OLEDB DEstination to insert to a table using Table or View Data Access Mode (Not Fast Load).
My table has a trigger AFTER INSERT, which will update a status.
When executing in Production, Package throws the below error.
SSIS Error Code DTS_E_OLEDBERROR.
An OLE DB error has occurred.
Error code: 0x80004005.
An OLE DB record is available.
Source: "Microsoft SQL Server Native Client 11.0"
Hresult: 0x80004005
Description: "Cannot find the object "MYTABLE_Response" because it does not exist or you do not have permissions."
The table has permissions (SELECT/INSERT/DELETE/UPDATE)
It ran succcessfully in UAT but not in Prod.
Any response on this will be helpful.
Here are some possible solutions:
Get the DBA to triple check that the account used in the connection manager has the
appropriate access to the table/database.
Verify that when the package runs in Prod that it's connecting to the database that you expect it to connect to, i.e. is it configured/parameterized correctly?
Verify the table actually exists in Prod.

SSDT fails to preview a table with error 0x80004005

I'm getting an unusual one that I cannot find any reference for out there?? Hope some of you have seen this?
I have a number of packages in my project all working fine, using a Project level Connection Manager, to a SQL Server DB.
I am configuring a number of Source to Destination flows in a Data Flow, to import text files into Stage tables.
I configure the Source to connect to the text file and Preview the data no problem. I add an OLE DB Connection to the DB and select the desired table in the dropdown. I then Click the View Existing Data button and get the following error;
An OLE DB record is available. Source: "Microsoft SQL Server Native
Client 11.0" Hresult: 0x80004005 Description: "Unspecified error".
An OLE DB record is available. Source: "Microsoft SQL Server Native
Client 11.0" Hresult: 0x80004005 Description: "Communication link
failure". Error at DFT_Name [TableName [230]]: Failed to open a
fastload rowset for TableName. Check that the object exists in the
database.
I also get a similar error if I try to Click the Mappings tab. The Connection Manage is working fine as I have an Execute SQL task in the Control flow that runs fine.
I should mention that in desperation, I deleted all the Data flow tasks and saved the package. I then recreated the data flows and all worked fine. I come in today and the problem is back, although no changes were made!! This has to be to do with Password caching or some such, but I am using Windows Authentication and the CM tests fine and the Execute SQL task still runs !! Help?

SSIS package creating Hresult: 0x80004005 Description: "Login timeout expired" error

I have an SSIS package that is being executed by an SQL Job which runs twice a day. I recently updated the SSIS package by removing a where clause of a Select statement in it. Now the results have around 1800 rows compared tot he 650 of before. When I execute the new package on my local machine everything runs fine. But when I put it on the Prod server, it does not run and gives me Hresult: 0x80004005 Description: "Login timeout expired" error.
This error is usually thrown when remote access is not enabled but it is. The Job is running under my account, so the rights should not be a problem. Also, the package was running without problems before and I only changed a where clause that makes the Table larger by a thousand rows, so I should not have a login timeout error for that.
I know it is not the remaining space on the server because if I change the config file of the SSIS package and direct it the the production database, everything works fine.
Again, that problem is bugging me because when I put the old package with the old where clause, everything works fine.
Anyone has any idea what might be causing the problem?
Here is the Log entry:
Executed as user: Services. ...sion 9.00.3042.00 for 32-bit Copyright (C) Microsoft Corp 1984-2005. All rights reserved. Started: 1:49:21 PM Error: 2011-08-04 13:50:12.28 Code: 0xC0202009 Source: Brd Load Connection manager "DataBase" Description: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Login timeout expired". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.". An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "TCP Provider: A connection att... Process Exit Code 1. The step failed.
I finally found the problem. The error was not the good one.
Apparently, Ole DB source have a bug that might make it crash and throw that error. I replaced the OLE DB destination with a OLE DB Command with the insert statement in it and it fixed it.
The link the got me there:
http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/fab0e3bf-4adf-4f17-b9f6-7b7f9db6523c/
Strange Bug, Hope it will help other people.
The answer here is not clear, so I wanted to add more detail.
Using the link provided above, I performed the following step.
In my XML config manager I changed the "Provider" to SQLOLEDB.1 rather than SQLNCLI.1. This got me past this error.
This information is available at the link the OP posted in the Answer.
The link the got me there: http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/fab0e3bf-4adf-4f17-b9f6-7b7f9db6523c/
I had a similar error..This might be due to two reasons.
a) If you have used variables, re-evaluate the expressions in which variables are used and make sure the expression is evaluated without errors.
b) If you are deleting the excel sheet and creating excel sheet on the fly in your package.

Resources