I'm trying to pivot some data in SQL Server 2000, but the user that runs the application only have read/write permissions. I've looked the solutions posted here, but all involving create/destroy temporary tables.
Asked
Active
Viewed 231 times
1 Answers
1
I think you may be a bit confused as to what temporary tables are.
You should be able to create a temp table (in memory) within your SQL statement. No extra permissions are necessary.

Neil N
- 24,862
- 16
- 85
- 145
-
I believed that temporary tables are created in the TempDb database. – Apocatastasis May 24 '10 at 04:52