Tagged Questions

A SQL Server local variable that can store rows.

learn more… | top users | synonyms (1)

9
votes
7answers
9k views

Can I loop through a table variable in T-SQL?

Is there anyway to loop through a table variable in T-SQL? DECLARE @table1 TABLE ( col1 int ) INSERT into @table1 SELECT col1 FROM table2 I use cursors as well, but cursors seem less flexible ...
5
votes
3answers
811 views

Using a table variable inside of a exists statement

I am trying to update a column inside of a table variable based on a condition, the condition being that the ID of the table variable does not exist in a different table: DECLARE @BugRep ...
4
votes
4answers
7k 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?
3
votes
2answers
2k views

How do I drop table variables in SQL-Server? Should I even do this?

I have a table variable in a script (not a stored procedure). Two questions: How do I drop the table variable? Drop Table @varName gives an "Incorrect snytax" error. Should I always do this? I ...
3
votes
4answers
2k 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 @tblTemp(iId_company) ...
2
votes
3answers
103 views

How to check if a table variable is empty in SQL Server?

This is a section of one of my stored procedure: @dataInTable dbo.Table_Variable readonly, .... AND ( ( @dataInTable IS NULL ) OR ( item IN ( SELECT T FROM @dataInTable ) ) ) ...
2
votes
3answers
52 views

Query SQL Server with IN (NULL) not working

When I define a "User-Defined Table Type", as: CREATE TYPE [dbo].[BitType] AS TABLE( [B] [bit] NULL ) I place 0 and null in this table-variable. Then I do this query: SELECT something FROM ...
2
votes
1answer
279 views

In T-SQL, how to reference to table variable in the subquery?

I've declared a table variable '@t', and have correctly performed the 'INSERT-INTO-SELECT'. When I was trying to query the table variable with some additional computation for per-group row numbering, ...
2
votes
1answer
363 views

Exec an SQL-Server 2008 stored-procedure from Access, passing a TABLE variable

I need to pass a table from Access to SQL-server and execute a stored-procedure. I'm using pass-through queries in Access to do this. My pass-through query: DECLARE @MyVar TABLE { ...
2
votes
2answers
740 views

Table variables inside while loop not initializing everytime : SQL Server

I am wondering why the table variables inside while loop does not behave like other variables. Table variables created only once and will be used across through out whole looping. but other variables ...
2
votes
3answers
161 views

Using table variables in stored procedures versus merely selecting from tables or a view?

I'm looking at sprocs right now that seem to follow the behavior demonstrated below DECLARE @tablevar TABLE ( FIELD1 int, FIELD2 int, FIELD3 varchar(50), -- etc ) INSERT INTO ...
2
votes
4answers
319 views

Can queries that read table variables generate parallel exection plans in SQL Server 2008?

First, from BOL: Queries that modify table variables do not generate parallel query execution plans. Performance can be affected when very large table variables, or table variables in complex ...
1
vote
3answers
17 views

SQL Server 2008 - UDF Parameter Types And Return Types

I often stumble at the following while writing UDFs in SQL 2008. Please tell me whether my following assumptions are right or wrong. A UDF can return Data Table. But a UDF can't receive a ...
1
vote
1answer
54 views

How to use a table variable in an “update from select” query?

I have this table variable declaration followed by a query: DECLARE @CurrentItems TABLE ( ItemId uniqueidentifier, ItemUnits int ) UPDATE U SET U.Units = U.Units + [@CurrentItems].ItemUnits ...
1
vote
3answers
2k views

Dynamic query results into a temp table or table variable

I have a stored procedure that uses sp_executesql to generate a result set, the number of columns in the result can vary but will be in the form of Col1 Col2 Col3 etc. I need to get the result into a ...
1
vote
1answer
598 views

ODBC Execute/Fetch of SQL 2005 stored procedure result set cannot use a table @variable

I'm using ODBC and C++ against SQL Server 2005 (native client). I have the following simple test stored procedure that returns two rows of constant values: CREATE PROCEDURE usp_testme AS BEGIN ...
1
vote
2answers
614 views

T-SQL copying a table variable

I'm trying to make a copy of a table variable: DECLARE @lt_Sections TABLE ( teamId SMALLINT NOT NULL ) DECLARE @lt_tempSections TABLE ( teamId SMALLINT NOT NULL ) -- populate some values in ...
0
votes
3answers
66 views

Improve performance of deletes on a table variable

I have seen performance tweaks for delete on normal tables in t-sql. But are there performance tweaks on deletes on table variables to be done? EDIT Here's an example: The plot gets thicker, as ...
0
votes
2answers
133 views

Weird SQL Server lazy loading of table variables?

I came across a misleading error in SQL Server 2008 and I wonder if anyone can explain what's happening to me? I have a stored procedure something like this: declare @cross_reference table ( ...
0
votes
1answer
284 views

In MS SQL Server, inserting Rows into a table variable became painfully slow all the sudden

In MS SQL Server 2008, inserting Rows into a table variable became painfully slow all the sudden. The creation of a table variable and query and insertion rows is done in a sproc and it has become ...
0
votes
3answers
340 views

SQL Server Multi-statement UDF - way to store data temporarily required

I have a relatively complex query, with several self joins, which works on a rather large table. For that query to perform faster, I thus need to only work with a subset of the data. Said subset of ...
0
votes
1answer
330 views

SQL error: String or binary data would be truncated

I got a table variable @RQ, I want it updated using a table-valued function. Now, I think I do the update wrong, because my function works... The function: ALTER FUNCTION ...
0
votes
4answers
1k views

Optimize multiple joins with table functions

I would like to join several times with the same table function for different input variables in the same query. But this turns in my case out to be much slower than using table variables and ...