I am testing SSIS packages and stored procedures as I am only a beginner. What I need to do is use the stored procedure that I installed in the source database to return the dataset, and then I need the ssis package to use the dataset returned by the stored procedure as the OLE DB source to populate the second destination table.
I basically have 2 tables: - test_source - test_destination
test_source has one table called "Companies with Three Rows" (ID, Name, Foundlished). I created a stored procedure (spGetCompanies) to return all the records in this table to the result set.
Then in BIDS, I have an SSIS package that takes data from the test_source table (in this case SPGetCompanies SP) and inserts it into the test_destination table.
Can someone help by letting me know how I can use the spGetCompanies stored procedure as an OLE DB source?
Kian
source
share