Tagged Questions
The temp-table tag has no wiki summary.
2
votes
2answers
59 views
Use a temp table in a Table-valued Functions
I'm trying to use a temp table in a table-valued function, but it seems I can not. Is there any other way I can use a temp table in a table-valued function?
CURRENT CODE:
CREATE FUNCTION ...
2
votes
1answer
264 views
Dealing with MySQL Temp Table algorithm for views
It would be nice if the Temp Table algorithm would be renamed to Unscalable algorithm. Perhaps then it would provide more of a warning to developers when seeing this in a view definition - similarly ...
2
votes
1answer
512 views
Recordset manipulation in SSIS
In my SSIS job, I have a need to accumulate a set of rows and commit them all transitionally when processing has completed successfully. If this was pure SQL, I would use a temp table inside a ...
2
votes
7answers
7k views
Creating a Primary Key on a temp table - When?
I have a stored procedure that is working with a large amount of data. I have that data being inserted in to a temp table. The overall flow of events is something like
CREATE #TempTable (
Col1 ...
2
votes
5answers
5k views
Is it safe to put an index on an Oracle Temporary Table?
I have read that one should not analyze a temp table, as it screws up the table statistics for others. What about an index? If I put an index on the table for the duration of my program, can other ...
1
vote
2answers
79 views
Output multiple identity columns from temp table
I'm using SQL Server 2K8 and have a table used solely to generate ids so that the primary key is unique across multiple tables -- the uniqueness across multiple tables is for an element hiearchy tree ...
1
vote
2answers
572 views
How to access dataset in current scope generated by a call to a stored procedure in TSQL?
Problem Background
Generating and accessing data of a fixed column layout is easy. You can create local temp tables up-front, and populate them by calling stored procedures.
On the other hand, if ...
1
vote
3answers
555 views
SQL Insert Into Temp Table in both If and Else Blocks
I'm trying to populate a temp table based on the result of a condition in SQL 2005. The temp table will have the same structure either way, but will be populated using a different query depending on ...
1
vote
4answers
1k views
There is already an object named '##Temp' in the database
I have a stored procedure on SQL Server 2000. It contains:
select ... into ##Temp ...
...
drop table ##Temp
When I run the stored procedure with ADO a second time, it prompts:
There is already an ...
1
vote
1answer
276 views
Insert into temp table from stored procedure generating distributed transaction error in SQL 2000
Similar to Insert into a temp table from a stored procedure on Sql Server 2000 from last year, but now with a strange error.
I'm using Microsoft SQL Server 2000 to dump results from one stored ...
1
vote
4answers
1k views
recommend a good temp table tutorial in SQL Server
I searched but cannot find a good temp table usage tutorial for a newbie in SQL Server 2005/2008. I want to learn pros and cons of temp table compared with normal table, its life time and how temp ...
1
vote
9answers
2k views
Can a return statement prevent a using statement from closing a connection to a database?
When I'm creating temp tables I get an error message telling me that the temp table already exists. The temp table is unique to the session so it seems my connection isn't closing properly and I think ...
1
vote
2answers
2k views
Datasource returned from Informix Stored Proc
I have an Informix stored procedure that returns two columns and multiple rows. I can use "EXECUTE FUNCTION curr_sess(2009,'SP')" fine, but how do I get the results into a temp table.
EDIT: We are on ...
0
votes
3answers
53 views
PHP / Mysql - ORDER BY When Using Temp Tables
I've been trying to get this to work using ORDER BY and LIMIT, but it will output everything that was put in. The ORDER BY and LIMIT does not seem to work:
$lat1 = 37.349418;
$lon1 = -121.896286;
...
0
votes
1answer
38 views
Can't select from a successfully created #temp table
DECLARE @tmp_tab VARCHAR(20)
SELECT @TMP_TAB = '#TMP_TAB_BANK' + CAST(USER_ID(USER) AS NVARCHAR)
+ CAST(@@SPID AS NVARCHAR)
EXEC('CREATE TABLE ' + @TMP_TAB + (ID ...
0
votes
2answers
64 views
Creating temp table on logon in SQL Server
Is it possible to have SQL Server create a temp table inside a particular database upon a user connecting to the database in such a way that the connecting user is the only one with access to the ...
0
votes
5answers
278 views
What does 'select to a temp table' mean?
This answer had me slightly confused. What is a 'select to a temp table' and can someone show me a simple example of it?
0
votes
0answers
62 views
Looking for an efficient way to pass a collection parameter to a SQL Stored Procedure
I need to pass a collection of objects as a parameter to a stored procedure.
Initially, I thought of serializing this collection and passing it to the procedure as a xml string. Then, inside the ...
-1
votes
2answers
94 views
SQL Server: Delete by selecting value from temp table
Forget about the question first,
I think i should made much more clear about my question by providing some example of my query inside my stored prod
assume I have a destination table TBLA and a ...
-1
votes
1answer
761 views
What are the concerns of having Temp/variable tables inside a view?
a friend of me is asking if i know any reasons why he should not included Temporal or variables tables inside a View in SQL-Server 2000. i could only think that a new table will be created everytime ...