Tagged Questions
1
vote
0answers
31 views
Using a Temporary Table in a Stored Procedure
I am trying to create and then call on a temp table in a stored procedure. What I am trying to accomplish is combining yearly data with quarterly data. For example: I have a field that has data for ...
1
vote
2answers
77 views
Drop set of columns with only null values from a table using SQL Server 2008
Take for example this example as an illustration so you can see what Î'm trying to do.
This is how the final table of the pivoted information looks like.
Create Table [#Comparative]
(
Branch ...
0
votes
1answer
35 views
What does the suffix of a temporary table's name mean?
If you expand the tempdb node and go to Temporary Tables, you will notice the name of the temporary tables have "______XXXXX" appended. Where does that part refer to?Is it the memory place where the ...
0
votes
2answers
484 views
Unable to copy data to temporary table using select statement in sql - server 2008
I am copying the data to temporary table using select statement which produces the result of pivoting.
My procedure is:
alter procedure proc11 AS
create Table #Temp (Software varchar(max), Ver ...
0
votes
1answer
274 views
Storing records to temporary table inside dynamic query when using Pivot.
I am new to sql programming.
I want to store the records returned as result set from the pivot query.
Pivot's columns are selected dynamically.
My query is:
declare @cols nvarchar(max)
set ...
1
vote
1answer
64 views
Turn SQL Server table variable into real table
I have a temporary table created with:
DECLARE @tbl_fk_errors TABLE (
id int Primary Key IDENTITY(1,1)
, tbl_id int
, tbl_name nvarchar(128)
, tbl_record_id int
, tbl_field ...
0
votes
3answers
5k views
Using row count from a temporary table in a while loop SQL Server 2008
I'm trying to create a procedure in SQL Server 2008 that inserts data from a temp table into an already existing table. I think I've pretty much figured it out, I'm just having an issue with a loop. I ...
3
votes
4answers
117 views
Short circuit in IF clause
I have searched and found nothing about it (I believe it is impossible to do it). My problem is that I have to check if a temporary table exists and also if there is some specific data on that ...
0
votes
1answer
909 views
Update column with default values from temporary table
I have stored a result set on a temporary table which has
Column_Name, Data_Type, Default_Value
Col1 varchar abc
Col2 varchar abc
Col3 int 999
Col4 ...
0
votes
2answers
2k views
Work around temporary table in SQL Server 2008 view
I wrote a query in this format..
Select * INTO #xyz FROM ()
which I later want to use to create a view, as...
CREATE VIEW aaa
AS
Select * INTO #xyz FROM ()
but getting the following errors:
...
1
vote
1answer
1k views
Performance difference between Views and Temporary tables [closed]
Is there any major difference in the performance of the Views and Temporary tables. I have situation like to migrate data from one database to the other. I have to extract the source data from views ...
1
vote
5answers
2k views
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 have to deal with billions in the future as the application demands.. Is it possible? If i ...
1
vote
3answers
797 views
SQL Server 2008, can I refer to a temporary table in a select statement within a udf?
I'm trying to run a select query on a temporary table within a udf. I can't find documentation stating this isn't allowed, yet the below stored procedure won't compile when I change ...
1
vote
1answer
454 views
Insert data from stored procedure returning mutiple dataset into a temporary table in SQL Server 2008
My stored procedure returns more than one result set.
I want to get the data returned by the second select statement from the stored procedure and I want to insert that data in a temporary table in ...
4
votes
2answers
471 views
Concurrency problems with temp tables in consequent batches?
I have sometimes a problem when running a script. I have the probelm when using an application (that I didn't write and therefore cannot debug) that launches the scripts. This app isn't returning the ...
0
votes
1answer
912 views
Entity Framework connection not recognizing Temp Table created
I've got a process that takes records from a daily feed in an Access database and adds the records to a sql server.
The load occationally fails, so I'm trying to add via a SQL server Global Temp ...
2
votes
2answers
497 views
C# Insert into temp table
I have a temporary table #PORTAL_PRODUTOS, on sql manager I can insert values into it but when I try to use C# it returns me a error saying there is no #PORTAL_PRODUTOS object.
My code
string ...
1
vote
1answer
4k views
To update XML data type column, repeatedly using a key, prefer approach that avoids the use of cursors
I have a table with an ID (int type) and a blob of XML data (1 XML type column).
I have 10 rows in the table, and I need to update each XML blob/row seperately.
Is there a way to do this:
Instead ...
6
votes
2answers
1k views
Recommed usage of temp table or table variable in Entity Framework 4. Update Performance Entity framework
I need to update a bit field in a table and set this field to true for a specific list of Ids in that table.
The Ids are passed in from an external process.
I guess in pure SQL the most efficient ...
1
vote
2answers
3k views
Use temp table or table variable for stored procedure that returns 100+ rows
Okay basically I am creating a stored procedure that will return data for our coldfusion power search.
I created a view, to hold data from multiple tables, with the same column names returned of ...
0
votes
1answer
788 views
sql server conditional select into temp table
I'm working in SQL Server 2008, and I'm trying to select into a temp table based on a certain condition...for a report, I need up to 18% of the records to be of a certain product type.
if ...
2
votes
1answer
2k views
How to insert into a temp table the info given by RESTORE FILELISTONLY / HEADERONLY / VERIFYONLY
How to insert the resultset given by the commands
RESTORE FILELISTONLY
RESTORE HEADERONLY
RESTORE VERIFYONLY
into an automatically generated temp table ?
I would like to use a technique similar ...
0
votes
1answer
147 views
Why SQL2008 debugger would NOT step into a certain child stored procedure
I'm encountering differences in T-SQL with SQL2008 (vs. SQL2000) that are leading me to dead-ends. I've verified that the technique of sharing #TEMP tables between a caller which CREATES the #TEMP and ...
1
vote
2answers
195 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 ...
0
votes
2answers
2k views
SQL Server 2008 - Update a temporary table
I have stored procedure in which I am trying to retrieve the last ticket completed by each user listed in a comma-delimited string of usernames. The user may not have a ticket associated with them, in ...
0
votes
1answer
848 views
Dropping Sql Temp tables from Vb.Net
I have a vb.net app , and I am creating and dropping temp tables. I just want to know whether the temp tables created programatically from some client app will get dropped automatically with dispose ...
7
votes
4answers
3k 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?
10
votes
5answers
22k views
How to retrieve field names from temporary table (SQL Server 2008)
I'm using SQL Server 2008. Say I create a temporary table like this one:
create table #MyTempTable (col1 int,col2 varchar(10))
How can I retrieve the list of fields dynamically? I would like to see ...
20
votes
7answers
17k views
Which are more performant, CTE or temporary tables?
Which are more performant, CTE or temporary tables?

