A SQL Server technology that supports the creation, management, and delivery of both traditional, paper-oriented reports and interactive, web-based reports.
Hi @Bobby P,
Check out here:
So after some research I found out that using #temp tables created in one data set cannot be used in another data set. And using ##tables are not the way to go either as this will cause all kinds of issues when people try to run this report at or near the same time.> I was finally able to get what I needed by using a stored procedure to write the data I was going to use in other data sets into a staging table and before each run truncate the table ("TRUNCATE TABLE "). This will allow you to apply indexes and another performance modifications as needed.> Once execute your stored procedure in the first data set. Your data will be populated in the staging table and you can then call it from other data sets.> I hope this helps anyone that was trying to use temp tables in other data sets. Simple answer is its not possible.
Regards,
Zoe Hui
If the answer is helpful, please click "Accept Answer" and upvote it.