I have stored procedures with multiple temp tables in it. I need to run these Stored Procedures in SSIS (using SSDT 15.8.1). Since SSIS doesn't work for Stored Procedure with temp tables, it was recommended to use table variables instead of temp tables.
Now, my performance is bad. The Stored Procedure is taking a long time(8 min approx instead of previous 11 sec).
How do I resolve this without using temp tables? Is there any alternatives to table variables so that my performance doesn't get affected?
Thanks in advance.