Is there a recommended way to share temporary result set's between reports (procedures) in myDBR?
Local temporary tables fall out of scope between reports and Global temporary tables won't work as they are shared between users.
At present I have been creating regular tables for individual users and using those, but it's a messy solution as it in effect creates hundreds of new tables that are only holding temporary information.
Just wondered if there was a better way.
The underlying database is SQL Server 2008 R2