OLEDB command does the row by row operation and not in bulk so you might face performance issues
Instead, use stored procedure and run them to populate Fact tables
Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hi experts,
I have 3 fact table and 8 dim tables.
i have created and load my dim tables. now i want to load fact table(insert dim table key ) and do a incremental load in fact in future.
please help
OLEDB command does the row by row operation and not in bulk so you might face performance issues
Instead, use stored procedure and run them to populate Fact tables
Please don't forget to Accept Answer and Up-vote if the response helped -- Vaibhav
Hi @Sudarsan Pandiyan ,
Best Regards,
Mona
----------
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Hot issues in November--What can I do if my transaction log is full?
Hot issues in November--How to convert Profiler trace into a SQL Server table?
Although you can technically do insert/update/delete in SSIS, I would recommend you do it via TSQL in a stored proc.
You can simply "stage" your data into a table, and run a stored proc which "merges" the data into the target tables. It is much simpler.
This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.
Comments have been turned off. Learn more