business intelligence - Unable to call a stored Procedure via link server in SSIS 2005 -


I had created a test stored procedure in the data-hardwareHouse.map server. I had created an OLE DB source. This source is associated with the mas.est server and I'm calling the stored functioning via link server EXEC [data-warehouse]. MAP dbo.test

  Process TITLE: Microsoft Visual Studio ---------------------- -------- Component reported the following warnings: Error in data flow task [OLE DB source [1]]: No column information was found by SQL command. Choose OK if you want to continue with the operation. Select Cancel if you want to stop the operation. ------------------------------ Button: Cancel OK --------------- --------------   

Please tell me how to do this?

If you are using a stored procedure as a source in your data flow, be careful Stay informed that stored procedures are notorious for meta data issues. There is a hard time in SSIS, which is a translation of the set of returns that is stored procedures because they can do more than one command and can not always return any dataset. That vs This article discusses this issue: Note that the article is primarily about SQL Server, but some people are also commenting about Oracle Hope it helps.

Comments