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
2answers
187 views

Can I have index created on temp tables (#temp) which are created dynamically in a stored procedure?

I am creating temp tables (#temp_table) in my stored procedure. It is a huge table with large data. Then I am creating a index in the storeed procedure as it is required for faster query to the temp ...
1
vote
2answers
429 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 ...