If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
Advantage of SSIS Package over OpenRowSet/OpenDataSource
I have this project that do these tasks using SSIS package (.dtsx file)
1.) Imports data from excel file
2.) Inserts these data to SQL tables
3.) Formulate a query, then export the result set of the query to Excel File
I'm executing this SSIS packages from a DOS command prompt.
Later did I find out that there is this "OpenRowSet" and "OpenDataSource" thing that I can do in my SQLServer stored procedure to do the same task. And call this stored procedure from a command promt. Correct me if im wrong, can i really call an SP or job from a DOS commnd prompt?
Now my questions are:
What are the advantages of SSIS package over OPenRowSet/OpenDataSource?
Which is easier to maintain?
i'm already finish w/ the project. what i'm doing right now is to defend why I used SSIS package. I can't find any info on the advantage of SSIS over openrowset.
Anyway, how about the performance? Which is faster in importing and exporting data to and from SQL Server?