Top "Temp-tables" questions

Temporary tables are a feature of RDBMS's as a means of storing intermediate results.

Find the column names of Temp table

I need to find the column names of temp table. If it is a physical table then we can either …

sql sql-server tsql temp-tables
life span of temp table

I have the following procedure: CREATE PROCEDURE foo () SELECT * FROM fooBar INTO TEMP tempTable; -- do something with tempTable here …

sql database informix temp-tables
Using openrowset to read an Excel file into a temp table; how do I reference that table?

I'm trying to write a stored procedure that will read an Excel file into a temp table, then massage some …

sql-server temp-tables openrowset
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 …

mysql concurrency temp-tables
MySQL user created temporary table is full

I have a created a temporary table using the memory engine as followed: CREATE TEMPORARY TABLE IF NOT EXISTS some_…

mysql memory temp-tables
Select Into Explanation / Temporary Tables

Based on the tutorial on SQL Temporary Tables, it should be OK to create a temp table by using SELECT * …

c# sql temp-tables select-into
MYSQL Temporary Tables - How to view active ones

We have a simple "crm-like" software in our company. There are some complex queries that were taking some time, daily-use …

mysql mysql-management temp-tables
How to copy structure and contents of a table, but with separate sequence?

I'm trying to setup temporary tables for unit-testing purposes. So far I managed to create a temporary table which copies …

sql postgresql temp-tables create-table
Use temp table with SQLAlchemy

I am trying to use use a temp table with SQLAlchemy and join it against an existing table. This is …

python sql-server pandas sqlalchemy temp-tables
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 …

sql sql-server tsql temp-tables