Tagged Questions

3
votes
4answers
182 views

functional reason why stored procedures don't support INSERT/EXECUTE INTO?

In SQL Server, there's no way to create a temp table on the fly from the results of a stored procedure, ala: CREATE TABLE #temptable AS EXEC spMyStoredProc or EXEC spMyStoredProc INTO #temptable ...
2
votes
6answers
229 views

Why would you Truncate immediately before Dropping a temp table?

I see some code where the author has truncated a temp table immediately before dropping the temp table. Is there a reason for doing this? TRUNCATE TABLE #Temp DROP TABLE #Temp
2
votes
2answers
1k views

Accessing TSQL created #temp tables from CLR stored procedure. Is it possible?

I have a TSQL Stored Procedure tsql__sp__A which does two things: (a) Creates a temp table #tempTable that has SELECT data from a complex SELECT query. (b) Calls a CLR managed Stored Procedure ...
1
vote
1answer
74 views

Sql Server: Select..Into #TempTable with variable assignment on Temp Table name

I have a question here.I better paste my code first SET @Sql = 'DECLARE @Date_From VARCHAR(10); DECLARE @Date_To VARCHAR(10); DECLARE @TempTable VARCHAR(500); SET ...
1
vote
2answers
82 views

Can creating a primary key on a #temp table increase proc speed?

If you create a primary key on a large #temp table, or perhaps a few other indexes, what are the potential speed benefits, and what are the potential slowdowns? Is it normally a good idea to this ...
1
vote
3answers
105 views

SQL “WITH” Performance and Temp Table (possible “Query Hint” to simplify)

Given the example queries below (Simplified examples only) DECLARE @DT int; SET @DT=20110717; -- yes this is an INT WITH LargeData AS ( SELECT * -- This is a MASSIVE table indexed on dt field ...
1
vote
2answers
431 views

Using a temp table between stored procedures in SQL Server 2008

I currently have a main stored procedure calling many stored procedures: Main --| --| --| > Exec Pre-processing SP (create and populate #temp table) --| --| > Exec ...
0
votes
2answers
57 views

Error in SQL Server 2005 Syntax

Here is the SQL: CREATE TABLE dbo.TmpFeesToRules1(Name varchar, LookupId int) INSERT INTO dbo.TmpFeesToRules1(Name, LookupId) SELECT DISTINCT Name, 0 FROM Lending.Fee UNION SELECT DISTINCT Name, 0 ...