Tagged Questions
The temp-tables tag has no wiki summary.
3
votes
4answers
969 views
Speeding up temp table joins in SQL Server
I have 2 temp tables #temp1 and #temp. Both have a key and date columns. Both have around 25k rows. And I'm left joining them on the basis of the key and date which are unique on all rows. It's taking ...
1
vote
3answers
177 views
SQL Server Temp table vs Table Variable
Our client's database admins have requested that we don't use temp tables within our reporting stored procedures (#Table), but instead, make use of table variables.
Are table variables less efficient ...
1
vote
3answers
2k views
Dynamic query results into a temp table or table variable
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 ...
1
vote
2answers
631 views
Using temp tables in SSIS
I've created an ADO.NET connection manager, and a DataReader source with the following SQL Command:
select
'test' as testcol
INTO
#tmp
select * from #tmp
If I click the refresh button in ...
0
votes
1answer
42 views
Inconsistent values for created_tmp_tables server status variable in MySQL
I log into the (RDS) mysql server with the console client in two terminals, use the same database (not that that should matter), and run the query show status like 'created%' in each. They show a ...
0
votes
1answer
420 views
TSQL - Optimizing Full Text Search query with temp table
To make it short I have a full text search query that does a company search on a single table. Once the search is complete I pull extra stats from the result such as Top 5 titles, top 5 locations ...
0
votes
3answers
1k views
T-SQL Dynamic SQL and Temp Tables
It looks like #temptables created using dynamic SQL via the EXECUTE string method have a different scope and can't be referenced by "fixed" SQLs in the same stored procedure.
However, I can reference ...