Temporary tables are tables that automatic lose their content at the end of a transaction or session.
72
votes
5answers
113k views
check if temp table exist and delete if it exists before creating a temp table
I am using the following code to check if the temp table exists and drop the table if it exists before creating again. It works fine as long as I don't change the columns. If I add a column later, it ...
37
votes
4answers
38k views
Create temporary table from select statement without using Create Table
Is it possible to create a temporary (session only) table from a select statement without using a create table statement and specifying each column type? I know derived tables are capable of this, but ...
20
votes
7answers
17k views
Which are more performant, CTE or temporary tables?
Which are more performant, CTE or temporary tables?
17
votes
2answers
22k views
PostgreSQL temporary tables
I need to perform a query 2.5 million times. This query generates some rows which I need to AVG(column) and then use this AVG to filter the table from all values below average. I then need to INSERT ...
17
votes
5answers
9k views
Getting around MySQL “Can't reopen table” error
I'm currently busy implementing a filter of sorts for which I need to generate an INNER JOIN clausse for every "tag" to filter on.
The problem is that after a whole bunch of SQL, I have a table that ...
16
votes
8answers
3k views
Are temporary tables thread-safe?
I'm using SQL Server 2000, and many of the stored procedures it use temp tables extensively. The database has a lot of traffic, and I'm concerned about the thread-safety of creating and dropping temp ...
13
votes
2answers
12k views
ways to avoid global temp tables in oracle
We just converted our sql server stored procedures to oracle procedures. Sql Server SP's were highly dependent on session tables (INSERT INTO #table1...) these tables got converted as global ...
12
votes
7answers
23k views
SQL Server SELECT INTO and Blocking With Temp Tables
So, recently a DBA is trying to tell us that we cannot use the syntax of
SELECT X, Y, Z
INTO #MyTable
FROM YourTable
To create temporary tables in our environment, because that syntax causes a lock ...
11
votes
4answers
19k views
What is the difference between a temporary table vs global temporary table in Oracle?
I have heard these two terms "temporary table" and "global temporary table" used pretty much in similar context.
What is the difference between the two?
11
votes
3answers
24k views
TSQL Define Temp Table (or table variable) Without Defining Schema?
Is there a way to define a temp table without defining it's schema up front?
10
votes
5answers
22k views
How to retrieve field names from temporary table (SQL Server 2008)
I'm using SQL Server 2008. Say I create a temporary table like this one:
create table #MyTempTable (col1 int,col2 varchar(10))
How can I retrieve the list of fields dynamically? I would like to see ...
10
votes
8answers
5k views
How to get a table of dates between x and y in sql server 2005
I just want a quick way (and preferably not using a while loop)of createing a table of every date between date @x and date @y so I can left outer join to some stats tables, some of which will have no ...
9
votes
3answers
15k views
Best use of indices on temporary tables in T-SQL
If you're creating a temporary table within a stored procedure and want to add an index or two on it, to improve the performance of any additional statements made against it, what is the best ...
8
votes
4answers
619 views
MySQL: what is a temporary table?
What is the purpose of a temporary table like in the following statement? How is it different than a regular table?
CREATE TEMPORARY TABLE tmptable
SELECT A.* FROM batchinfo_2009 AS A, ...
8
votes
2answers
4k views
When should I use a table variable vs temporary table in sql server?
I'm learning more details in table variable.It says that temp tables are always on disk,and table variables are in memory,that is to say, the performance of table variable is better than temp table ...
8
votes
1answer
3k views
SQL Server CTE referred in self joins slow
I have written a table-valued UDF that starts by a CTE to return a subset of the rows from a large table.
There are several joins in the CTE. A couple of inner and one left join to other tables, which ...
7
votes
4answers
4k views
EF4 - The selected stored procedure returns no columns
I have query in a stored procedure that calls some linked servers with some dynamic SQL. I understand that EF doesn't like that, so I specifically listed all the columns that would be returned. Yet, ...
7
votes
4answers
3k views
What is the difference between TEMPORARY TABLE and TABLE VARIABLE in SQL 2008?
What is the difference between:
CREATE TABLE #temp ( [ID] INT)
INSERT INTO #temp
SELECT ...
and
DECLARE @temp TABLE ( [ID] INT)
INSERT @temp
SELECT ...
in SQL Server 2008?
7
votes
2answers
3k views
Is MySQL Temporary table a shared resource?
I have a MySQL stored procedure that uses a temporary table. Assume that my table name is 'temp' and I use it to store some middle data. It will create at the beginning of procedure, and will drop at ...
7
votes
4answers
45k views
How to return temporary table from stored procedure
CREATE PROCEDURE [test].[proc]
@ConfiguredContentId int,
@NumberOfGames int
AS
BEGIN
SET NOCOUNT ON
RETURN
@WunNumbers TABLE (WinNumb int)
INSERT INTO @WunNumbers (WinNumb)
SELECT TOP ...
6
votes
6answers
3k views
Can you define “literal” tables in SQL?
Is there any SQL subquery syntax that lets you define, literally, a temporary table?
For example, something like
SELECT
MAX(count) AS max,
COUNT(*) AS count
FROM
(
(1 AS id, 7 AS count),
...
6
votes
5answers
200 views
Duplicate all rows in a table and prevent duplicate keys
I am tring to do this
Get all rows in a blogs named table.
Copy them in a temporary database
Edit the language field of this temporary table records
Insert into the blogs table
And I'm trying it ...
6
votes
2answers
1k views
Recommed usage of temp table or table variable in Entity Framework 4. Update Performance Entity framework
I need to update a bit field in a table and set this field to true for a specific list of Ids in that table.
The Ids are passed in from an external process.
I guess in pure SQL the most efficient ...
6
votes
4answers
3k views
Temporary tables in Linq — Anyone see a problem with this?
In trying to solve:
Linq .Contains with large set causes TDS error
I think I've stumbled across a solution, and I'd like to see if it's a kosher way of approaching the problem.
(short summary) I'd ...
5
votes
4answers
6k views
Is there a way to get a list of all current temporary tables in SQL Server?
I realize that temporary tables are session/connection bound and not visible or accessible out of the session/connection.
I have a long running stored procedure that creates temporary tables at ...
5
votes
4answers
2k views
Global Temp Tables - SQL Server vs Oracle
I am using Oracle 11g Global Temporary Tables as I need a solution where I can add rows to a temporary table for a join, and I want only the rows added to the temp table for the Oracle ...
5
votes
2answers
2k views
Temporary tables using JDBC with null ResultSet
I am executing a stored procedure via standard JDBC Connection using MS SQL Driver version 3.0.
I have found that when I create and insert data into a temporary table the stored procedure doesn't ...
5
votes
4answers
4k views
Table variable poor performance on insert in SQL Server Stored Procedure
We are experiencing performance problems using a table variable in a Stored Procedure.
Here is what actually happens :
DECLARE @tblTemp TABLE(iId_company INT)
INSERT INTO @tblTemp(iId_company)
...
5
votes
1answer
336 views
Not getting expected output while using Temp Table or Cursor in MySQL
I'm doing some POC. I've written one stored procedure in MySQL. I'm using MySQLWorkbench for database operations like creating new table, stored procedures, query execution etc. I'm observing some ...
4
votes
5answers
14k views
Using temporary table in c#
I read an excel sheet into a datagrid.From there , I have managed to read the grid's rows into a DataTable object.The DataTable object has data because when I make equal a grid's datasource to that ...
4
votes
2answers
3k views
Pass index to temporary table from regular table?
I am creating a temp table with a query like this:
CREATE TEMPORARY TABLE temp_table
SELECT * FROM regular_table
WHERE 1
But regular_table has FULLTEXT index on some of the fields. I try to do a ...
4
votes
5answers
5k views
DBCC CHECKIDENT on a temporary table throwing permissions error for wrong user
I'm logged into a SQL Server 2005 database as a non-sa user, 'bhk', that is a member of the 'public' server role only. The following code tries to execute within a stored procedure called by user ...
4
votes
1answer
757 views
select null as testdate into #temp_table
Is there a way to insert/update a datetime value (getdate()) into a temp table created like the following:
select id, null as testdate
into #temp_table
and then later statement:
update #temp_table ...
4
votes
1answer
2k views
is a mysql temporary table unique for each user accessing the script that creates it…?
While looking for a way to temporarily save the search results when a user searches for a hotel free between particular dates i came across temporary tables.
But certain questions are not answered ...
4
votes
2answers
471 views
Concurrency problems with temp tables in consequent batches?
I have sometimes a problem when running a script. I have the probelm when using an application (that I didn't write and therefore cannot debug) that launches the scripts. This app isn't returning the ...
4
votes
1answer
913 views
TO_CHAR of an Oracle PL/SQL TABLE type
For debugging purposes, I'd like to be able to "TO_CHAR" an Oracle PL/SQL in-memory table. Here's a simplified example, of what I'd like to do:
DECLARE
TYPE T IS TABLE OF MY_TABLE%ROWTYPE INDEX BY ...
4
votes
3answers
98 views
Pulling items out of a DB with weighted chance
Let's say I had a table full of records that I wanted to pull random records from. However, I want certain rows in that table to appear more often than others (and which ones vary by user). What's the ...
4
votes
2answers
2k views
View MySQL Temporary Table - Not in session
I currently have a script running and didn't think it would take so long to run, the script is modifying a temporary table.
I know that temporary tables only exist for the current session, but is ...
4
votes
2answers
3k views
Entity Framework, full-text search and temporary tables
I have a LINQ-2-Entity query builder, nesting different kinds of Where clauses depending on a fairly complex search form. Works great so far.
Now I need to use a SQL Server fulltext search index in ...
4
votes
2answers
160 views
What data is included when MySQL creates a temporary table?
I have been reading about VARCHAR fields being converted to CHAR fields whenever MySQL generates a temporary table.
If I have the following table...
Excess of 100K rows
A dozen VARCHAR columns set ...
3
votes
3answers
2k views
Temporary tables in sql server?
I have a doubt Why Should we use temporary table is there any special thing in temporary table and where should we use the temporary tables. Can you please explain me or any reference thank you.
3
votes
6answers
6k views
Sybase Developer Asks: How To Create a Temporary Table in Oracle?
I'm familiar with Sybase / SQL server, where I can create a temp. table like this:
SELECT *
INTO #temp
FROM tab1 ,
tab2
WHERE tab1.key = tab2.fkey
SELECT *
FROM #temp
WHERE ...
3
votes
2answers
4k views
sp_send_dbmail will not send query results
I've tried every avenue on every damn forum suggested, but to no avail!
Need to send results of SQLPERF(logspace), that have been stored in a table, via sp_send_dbmail to recipient.
Step 2 of job is ...
3
votes
4answers
470 views
Alternative for a MySQL temporary table in Oracle
I noticed that the concept of temporary tables in these two systems is different, and I have a musing.. I have the following scenario in MySQL:
Drop temporary table 'a' if exists
Create temporary ...
3
votes
6answers
3k views
How to add 2 temporary tables together
If I am creating temporary tables, that have 2 columns. id and score. I want to to add them together.
The way I want to add them is if they each contain the same id then I do not want to duplicate ...
3
votes
4answers
1k 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 ...
3
votes
2answers
10k views
SQL Server, temporary tables with truncate vs table variable with delete
I have a stored procedure inside which I create a temporary table that typically contains between 1 and 10 rows. This table is truncated and filled many times during the stored procedure. It is ...
3
votes
4answers
117 views
Short circuit in IF clause
I have searched and found nothing about it (I believe it is impossible to do it). My problem is that I have to check if a temporary table exists and also if there is some specific data on that ...
3
votes
4answers
2k views
Why can I not reuse temp tables in T-SQL?
Here's some sample code:
if object_id('tempdb..#TempList') is not null drop table #TempList
create table #TempList (
ID int,
Name varchar(20)
)
insert into #TempList values (1, 'Alpha')
...
3
votes
5answers
2k views
Is it possible to create a temp table on a linked server?
I'm doing some fairly complex queries against a remote linked server, and it would be useful to be able to store some information in temp tables and then perform joins against it - all with the remote ...