0
votes
3answers
159 views

Meaning of Syntax in Sql Server

What does this particular statement mean, I came across a stored procedure where this condition is validated multiple number of times. Can anyone explain this for me please. Well I understand broadly ...
1
vote
1answer
445 views

sql local (#) temp tables - reading data from other connections

I working with legacy (ancient is more appropriate word) application which use temp tables (#) to pass data between different stored procdures, temp tables are created in batches (not in stored ...
3
votes
2answers
3k views

SQL Server Split And Table Insert

I want to do the following using SQL Server 2005. Create a stored procedure that takes a varchar() comma "," delimited param Split / Explode the varchar() param and insert the values in a temporary ...
0
votes
3answers
521 views

What's the benefit of doing temporary tables (#table) instead of persistent tables (table)?

I can think of two main benefits: Avoiding concurrency problems, if you have many processes creating/dropping tables you can get in trouble as one process tries to create an already existing table. ...
0
votes
2answers
788 views

How to check temp table exists while Union multiple temp tables?

here my query- SELECT final.* into #FinalTemp from ( select * from #temp1 UNION select * from #temp2 UNION select * from #temp3 UNION select * ...
2
votes
5answers
3k views

SQL Server, Problem creating temp table in TSQL

Hi when i execute the following TSQL, i get the error message below. But there is nothing wrong with the SQL syntax is there? create table #tb ([t1] tinyint, [t2] varchar(50)) insert into #tb values ...
2
votes
1answer
473 views

Will SQL Server 2005 Database Engine Tuning Advisor “tune” Temporary Tables?

I'm attempting to use Database Engine Tuning Advisor to tune my database. From the comments it's logging (it's just 40% into the analysis, after running all weekend) it appears that DTA is not ...
0
votes
3answers
3k 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 ...
5
votes
2answers
2k views

Temporary tables using JDBC with null ResultSet

I am executing a stored procedure via standard JDBC Connection using MS SQL Driver version 3.0. I have found that when I create and insert data into a temporary table the stored procedure doesn't ...
0
votes
2answers
714 views

SQL Server Temporary Table from Complex Stored Procedure

I have to create a temp table (#temp) from a variable or stored procedure (i.e) My stored procedure contains ...... set @sql='select ...' set @sql=@sql+'..join..' set @sql=@sql+'....join..' ...
1
vote
2answers
149 views

Can SELECTING FROM one empty temp table in SQL cause the results to be empty?

Here is my problem. I am creating 4 temp tables to count specific types of boxes and an employee's hours. Given a beginning date and ending date we want to know total boxes of each type (1, 2, and 3) ...
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
2answers
203 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 ...
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 ...
0
votes
3answers
2k 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 NULL DROP TABLE ...
3
votes
4answers
1k views

Speeding up temp table joins in SQL Server

I have 2 temp tables #temp1 and #temp. Both have a key and date columns. Both have around 25k rows. And I'm left joining them on the basis of the key and date which are unique on all rows. It's taking ...
0
votes
2answers
229 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 in the system ...
0
votes
3answers
263 views

How to group data from temporary table

I have created one temporary table in which corresponding to one fileid which is primary key, I am having 5 rows. I want to get the count as 5. What query do I have to write to get the count ...
75
votes
5answers
119k views

check if temp table exist and delete if it exists before creating a temp table

I am using the following code to check if the temp table exists and drop the table if it exists before creating again. It works fine as long as I don't change the columns. If I add a column later, it ...
4
votes
5answers
6k views

DBCC CHECKIDENT on a temporary table throwing permissions error for wrong user

I'm logged into a SQL Server 2005 database as a non-sa user, 'bhk', that is a member of the 'public' server role only. The following code tries to execute within a stored procedure called by user ...
1
vote
4answers
4k views

SQL Server 2005 Temporary Tables

In a stored procedure, when is #Temptable created in SQL Server 2005? When creating the query execution plan or when executing the stored procedure? if (@x = 1) begin select 1 as Text ...