views:

22

answers:

1

Hi. 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.

+1  A: 

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
I believed that temporary tables are created in the TempDb database.
Apocatastasis

related questions