I have a stored procedure that uses sp_executesql to generate a result set, the number of columns in the result can vary but will be in the form of Col1 Col2 Col3 etc.

I need to get the result into a temp table or table variable so I can work with it. The problem is I need to define the columns of the temp table, which I cant do dynamically using sp_executesql as the scope of the temp table is lost after the command is executed.

I have toyed with the idea of using Global Temp tables, as the scope allows it to be created dynamically, however, there is a very good chance the Global Temps would get updated by the concurrent executions of this process.

Any ideas?

link|improve this question

77% accept rate
1  
SQL is generally oriented around producing result sets with the same "shape" - the same columns (names, types) each time the query is executed. Whilst you can produce variable result sets using various hacks, it would be better to try to re-work your solution to fit this model of querying. You're also indicating a very procedural approach (1st I produce this result set, then I do further work with it), which again isn't what SQL is meant to be about - you find a way to describe your desired result, and let SQL Server sweat the details of how that happens. – Damien_The_Unbeliever May 23 '11 at 16:57
duplicate- stackoverflow.com/questions/840968/… – DForck42 May 23 '11 at 17:19
Not a duplicate, I have ruled out the use of Global Temp tables as a solution for me. – Fly_Trap May 23 '11 at 17:34
feedback

3 Answers

You can use global temp tables whose names are 'uniquified' by the SPID of the creating process. This can allow you to avoid stomping on other global temp tables created by other connections.

Just make sure to clean them up when you're done... :)

link|improve this answer
global temps go away as soon as the defining connection is closed and any other referencing connection also closes - there shouldn't be any cleanup required (but it's still an ugly solution) – Damien_The_Unbeliever May 23 '11 at 17:00
I did consider this, but how would you query the temp table? SELECT * FROM @tmpTableName is not allowed so you would have to start using dynamic sql to query the results. Just feels wrong – Fly_Trap May 23 '11 at 17:08
1  
@Fly_Trap - everything here feels wrong - we may do better if you describe the original problem, rather than this broken half-solution that doesn't seem to be working. – Damien_The_Unbeliever May 23 '11 at 17:12
I'm importing a flat csv (of unknown structure) into a single nvarchar(max) field. I'm then converting the text into an xml stucture and using xquery to structure the data into a table. This is where I'm up to. Then I want to iterate the rows and look for key bits of information so I can apply business logic to the results. There are many reasons why I am doing this in such a way that would best be discussed on another thread. Anyhow I have found the answer to my problem now, I will it post shortly. – Fly_Trap May 23 '11 at 17:18
feedback
up vote 1 down vote accepted

I have found a solution that works for me with the help of @SQLMenace in this post T-SQL Dynamic SQL and Temp Tables

In short, I need to create a #temp table in normal SQL first, then I can alter the structure using further dynamic SQL statements. In this example @colcount is set to 6. This will be determined by another stored proc when I implement this.

IF object_id('tempdb..#myTemp') IS NOT NULL
DROP TABLE #myTemp

CREATE TABLE #myTemp (id int IDENTITY(1,1) )
DECLARE @cmd nvarchar(max)
DECLARE @colcount int
SET @colcount = 6
DECLARE @counter int
SET @counter = 0
WHILE @counter < @colcount
    BEGIN
      SET @counter = @counter + 1
      SET @cmd = 'ALTER TABLE #myTemp  ADD col' + CAST(@counter AS varchar(4)) + ' NVARCHAR(MAX)'
      EXEC(@cmd)
    END

INSERT INTO #myTemp 
EXEC myProc @param1, @param2, @param3

SELECT * FROM #myTemp
link|improve this answer
feedback

IS there any reason you can't do something like:

SELECT *
INTO #MyTempTable
FROM MyResultSet

SELECT INTO doesn't require an explicit field list.

link|improve this answer
Can't do this as the results are coming from a stored proc, the following is not allowed. You can use INSERT INTO #MyTempTable EXEC MyProc but the schema needs defining first. – Fly_Trap May 23 '11 at 17:11
This is a terrible idea. This will lock tempdb the entire time your query is running. This will cause serious issues if it is a long running query – cadrell0 May 23 '11 at 19:34
1  
It will lock that TABLE in tempdb, not the whole database. – JNK May 23 '11 at 19:36
Ah, I guess just an old prejudice. It did this in older version of SQL Server, but apparently it has been fixed. – cadrell0 Jun 7 '11 at 20:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.