Temporary tables are tables that automatic lose their content at the end of a transaction or session.

learn more… | top users | synonyms

20
votes
7answers
17k views

Which are more performant, CTE or temporary tables?

Which are more performant, CTE or temporary tables?
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, ...
1
vote
4answers
16k views

Local Temporary table in Oracle 10 (for the scope of Stored Procedure)

I am new to oracle. I need to process large amount of data in stored proc. I am considering using Temporary tables. I am using connection pooling and the application is multi-threaded. Is there a ...
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 ...
37
votes
4answers
37k 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 ...
4
votes
1answer
900 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 ...
2
votes
4answers
1k views

Create temporary table in CakePHP and load it as a Model

My plan is to create a temporary table using the $this->Model->query(); method then load it as a Model but I'm getting an error staying "Missing Database Table". Turning on debug to level two shows ...
3
votes
3answers
1k 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 ...
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 ...
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 ...
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 ...
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 ...
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?
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), ...
0
votes
2answers
4k views

Accessing a temporary table multiple times in MySql

I have tried to use a temporary table as an intermediate result holder for a SELECT statement. The problem is though that I can't access the temp table multiple times in other queries statement which ...
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 ...
2
votes
3answers
10k 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
3k views

Why are temporary tables not removed from tempdb in SQL Server?

I have created one stored procedure with 7 temporary tables and each temp table is dropped at the end of their own work. I am calling the SP from one web service and same web service we are used for ...
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 ...
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 ...
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) ...
8
votes
4answers
618 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, ...
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 ...
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 ...
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 ...
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 ...
2
votes
4answers
7k views

How can I simulate an array variable in MySQL?

It seems that MySQL doesn't have array variables. What do I use instead? The question I linked to suggest using a set type. What would be the set-based idiom equivalent to foreach? Also, what about a ...
2
votes
1answer
2k views

How to insert into a temp table the info given by RESTORE FILELISTONLY / HEADERONLY / VERIFYONLY

How to insert the resultset given by the commands RESTORE FILELISTONLY RESTORE HEADERONLY RESTORE VERIFYONLY into an automatically generated temp table ? I would like to use a technique similar ...
1
vote
1answer
295 views

Stored procedure mixing results into temp tables from different invokations

I'm using a stored procedure in Mysql that creates 3 temporary tables that store records from database's tables, and then used to select the final result from those subset of stored records. The ...
1
vote
1answer
443 views

Paginate TEMPORARY TABLE in Cakephp?

Let say I have a table named 'products' and Model named 'Product'. 'products' table has 3 fields id,title,price,created I want to calculate cal_price (which varies per record and day of search) and ...
0
votes
4answers
2k views

Session-global temporary tables in SQL Server

In SQL Server, temporary tables with a name like #temp has a local scope. If you create them in your session, everything in your session can see them, but not outside your session. If you create such ...
0
votes
3answers
4k 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 ...
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?
8
votes
2answers
3k 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 ...
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 ...
3
votes
2answers
587 views

What's the scoping rule for temporary tables within exec within stored procedures?

Compare the following stored procedures: CREATE PROCEDURE testProc1 AS SELECT * INTO #temp FROM information_schema.tables SELECT * FROM #temp GO CREATE PROCEDURE testProc2 AS ...
3
votes
1answer
1k views

Can I CREATE TEMPORARY TABLE in SQLAlchemy without appending to Table._prefixes?

I'd like to create a temporary table in SQLAlchemy. I can build a CREATE TABLE statement with a TEMPORARY clause by calling table._prefixes.append('TEMPORARY') against a Table object, but that's less ...
2
votes
2answers
435 views

What are the use cases for temporary tables in SQL database systems?

what are the main purposes for which temporary tables are used? I want to know the practical and commercial uses of temporary tables in actual softwares working in small and large scale companies.
2
votes
2answers
3k views

Where Does Temporary Tables Gets stored in sql server

Where does temporary tables gets stored in database. I want to drop a temporary table if it already exists. I can do this for securable table by querying at information schema but i done know where ...
1
vote
3answers
361 views

how to return an object (from a MySQL temporary table) into a Coldfusion stored procedure?

I'm calling stored procedure in Coldfusion8/MySQL which gets 3 types of min and max prices from products table. I'm having problems returning the temp table back to MySQL. The below code only returns ...
1
vote
0answers
302 views

List of temporary table columns (MySQL)

I need to get list columns of some temporary table (MyISAM) in MySQL in view like 'number column' - 'name column'. I need to know number of column with specific name. In advance, I can't know what is ...
1
vote
1answer
1k views

SELECT-ing data from stored procedures

I have a complicated SELECT query that filters on a time range, and I want this time range (start and end dates) to be specifiable using user-supplied parameters. So I can use a stored procedure to ...
1
vote
3answers
11k views

ORA-14551: cannot perform a DML operation inside a query

I have the following inside a package and it is giving me an error: ORA-14551: cannot perform a DML operation inside a query Code is: DECLARE CURSOR F IS SELECT ROLE_ID FROM ...
1
vote
2answers
195 views

Child sProc cannot reference a Local temp table created in parent sProc

On our production SQL2000 instance, we have a database with hundreds of stored procedures, many of which use a technique of creating a #TEMP table "early" on in the code and then various inner stored ...
0
votes
1answer
914 views

Constructing a temporary table in Oracle SQL

I am trying to make a sub-table that "stores" a decode between two values, because I need to use that decode multiple times. Let's say these are my tables: Table Person Name Number_name Jeremy ...
0
votes
2answers
2k views

trigger and transactions on temporary tables

can we create trigger and transactions on temporary tables? when user will insert data then , if it is committed then the trigger would be fired , and that data would go from the temporary table into ...
0
votes
1answer
289 views

mysql & php: temporary/ virtual ids for query results?

I wonder if it is possible to assign temporary/ virtual IDs for a query result? For instance, I have this as my query, SELECT pg_id AS ID, pg_url AS URL, pg_title AS Title, pg_content_1 AS Content ...
0
votes
3answers
716 views

In SQL Server 2008 ,is it possible to disable auto drop of global temp table

question1 : I am using global temp tables in SQL Server 2008 but once my connection is closed this temp is dropped is there any way to disable auto drop Question2 : If two connections are ...
0
votes
3answers
4k views

Sql server - how to insert single row into temporary table?

I have two temporary table, when i do cycle through one table and i get some values from it, in this cycle I need insert new row into another temporary table. Is this possible. Here is my sql code and ...