0
votes
4answers
73 views
Should you use temporary tables to pass data between stored procedures?
I have a number of search functions (stored procedures) which need to return results with exactly the same columns.
This is the approach that was taken:
Each stored procedure h …
2
votes
4answers
130 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 @tblTe …
3
votes
3answers
107 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?
0
votes
3answers
45 views
Global Temporary table delete operation
How to check if the global Temporary table exists in SQL server, if yes then delete that global temporary table?
I am trying to execute this:
IF OBJECT_ID('##Table', 'U') IS NOT …
2
votes
5answers
228 views
How to save a single result set to a temp table from a SQL stored procedure returning multiple sets?
I need to store the result set of a stored procedure in a temporary table (using SQL Server
2000). From what I've read, this (poorly constructed example) should work:
create tabl …
1
vote
4answers
872 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?
0
votes
2answers
67 views
MySql: Problem when using a temporary table
Hi, I'm trying to use a temporary tables to store some values I need for a query. The reason of using a temporary table is that I don't want to store the data permanently so differ …
1
vote
1answer
103 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 fullte …
1
vote
0answers
156 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.
…
1
vote
1answer
126 views
MySQL connection pooling and creating temporary table.
I already set up MySQL connection pool in Glassfish using JNDI. I only execute one query at a time but use the same sql instance. Everything seems to work fine except creating temp …
1
vote
2answers
167 views
SQL Oracle statement optimized with temporary table
Hello there,
I have optimized a complex Oracle statement using temporary table like this :
original :
SELECT data FROM table WHERE ..complex statement..;
optimized (I can't u …
2
votes
4answers
974 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 …
0
votes
1answer
190 views
Stored procedure and .NET: SELECT INTO on temporary table: suppress result
I'm accessing a stored procedure from ADO.NET.
The stored procedure should eventually returns a single result set.
To compute this result, a temporary table is filled with a SELE …
0
votes
2answers
62 views
How to tell what temporary tables are currently in scope in SQL Server?
I often get the errors:
Msg 208, Level 16, State 0, Line 1
Invalid object name '#foo'.
Msg 3701, Level 11, State 5, Line 1
Cannot drop the table '#foo', because it does not exist …
1
vote
3answers
1k 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-threa …
