Top "Temp-tables" questions

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

SQL server temporary tables vs cursors

In SQL Server stored procedures when to use temporary tables and when to use cursors. which is the best option …

sql stored-procedures temp-tables
Temporary table record limit in Sql server

Is there any limits for the record in the temporary table.. I have tried with 1.3 million records.. may be i …

sql sql-server sql-server-2008 temp-tables
PostgreSQL equivalent of MySQL memory tables?

Does PostgreSQL have an equivalent of MySQL memory tables? These MySQL memory tables can persist across sessions (i.e., different …

mysql postgresql temp-tables
How to see temp table created by code in sql server?

I create a global temp table (i.e ##TheTable) using C# code. I want to be able to see that …

c# .net sql-server temp-tables global-temp-tables
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 (…

oracle plsql temp-tables
EF can't infer return schema from Stored Procedure selecting from a #temp table

Suppose the following: CREATE PROCEDURE [MySPROC] AS BEGIN CREATE TABLE #tempSubset( [MyPrimaryKey] [bigint] NOT NULL, [OtherColumn] [int] NOT NULL) INSERT …

entity-framework stored-procedures temp-tables
PostgreSQL syntax error when using EXECUTE in Function

I'm trying to create a function which references a temporary table in PostgreSQL 8.4. Based on my research it seems the …

function postgresql syntax-error execute temp-tables
T-SQL: Where xxx IN temporary table

I have a temp table and want to check in a where clause wether a certain id/string is contained …

sql-server where in-operator temp-tables
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 …

sql sql-server temp-tables tempdb