Is me again, I try to select...into a temp Table Call #TempTable in sp_Executedsql. I not so sure thats its successfully inserted or not but there Messages there written (359 row(s) affected) that mean successful inserted? Anyway, i Paste my code here first.

DECLARE @Sql NVARCHAR(MAX);
SET @Sql = 'select distinct Coloum1,Coloum2 into #TempTable 
            from SPCTable with(nolock)
            where Convert(varchar(10), Date_Tm, 120) Between @Date_From And @Date_To';

SET @Sql = 'DECLARE @Date_From VARCHAR(10);
            DECLARE @Date_To VARCHAR(10);
            SET @Date_From = '''+CONVERT(VARCHAR(10),DATEADD(d,DATEDIFF(d,0,GETDATE()),0)-1,120)+''';
            SET @Date_To = '''+CONVERT(VARCHAR(10),DATEADD(d,DATEDIFF(d,0,GETDATE()),0)-1,120)+''';
            '+ @Sql;

EXECUTE sp_executesql @Sql;

After i execute this bunch of code,its return me on messages (359 row(s) affected).And Continue then i trying to select out the data from #TempTable.Like this below:

Select * From #TempTable;

Its return me:

Msg 208, Level 16, State 0, Line 2
Invalid object name '#TempTable'.

I think there is not actually successful inserted in, just the select sql selected out only.Is that correct? And how to resolve this kind of problem?

Thanks

Regards

LiangCk

link|improve this question

69% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Local temporary table "#table_name" is visible in current session only, global temporary "##table_name" table are visible in all sessions. Both lives until their session is closed. sp_executesql - creates its own session (maybe word "scope" would be better) so that's why it happens.

link|improve this answer
I think the word "scope" would be better. DECLARE @sql NVARCHAR(MAX); SET @sql = 'SELECT @@SPID'; EXECUTE sp_executesql @sql; SELECT @@SPID – Tom Hunter Nov 7 '11 at 17:40
Thanks @Michal, i recalled already this method of using.Thanks again – LiangCk Nov 7 '11 at 17:40
feedback

your temp table in dynamic SQL is out of scope in the non dynamic SQL part.

Look here how to deal with this: A bit about sql server's local temp tables

link|improve this answer
feedback

Temporary tables only live as long as the connection that creates them. I would expect that you're unintentionally issuing the select on a separate connection. You can test this by momentarily doing your insert into a non-temporary table and seeing if your data is there. If that is the case you can go back to your original solution and just be sure to pass the connection object to your select.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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