I have a SSIS dataflow task. Within this is an OLEDB source with SQL command text as follows:
SELECT *
FROM ##TMP_TBL1
This works provided that during development I create that temp table via management studio (otherwise it won't allow me to save the SQL command text). This works fine.
When I try the same with local temporary table, it doesn't work. Is there any way to use local temporary table inside the SSIS dataflow's OLEDB source SQL command text?