A SQL Server local variable that can store rows.

learn more… | top users | synonyms (1)

0
votes
1answer
123 views

Storing table column value into variable (SQL Server)

I have been stuck on this problem for some time: I am trying to save a value from a column in a table (database), under a certain condition. In the code below I am trying to compare the input of a ...
0
votes
0answers
34 views

SQL Profiler shows unlogic reads count when using table-types

Wanted to Analyse the reads of one of our procedures which uses a user-defined table type as the procedure Argument. While separating the individual queries, the SQL Profile showed me strange Reads ...
0
votes
0answers
61 views

Is it possible to iterate through a table variable using a cursor?

In SQL Server 2005, is it possible to iterate through a table variable using a cursor?
2
votes
1answer
291 views

Get definitive names for columns from table variable

I can declare a table variable as such: DECLARE @tv_source TABLE(c1 int, providerName varchar(50), providerSMS varchar(50)) If I then execute the following, I see the table name similar to: ...
0
votes
2answers
1k views

Inserting multiple rows into a SQL Server table using a table variable

I am currently using SQL Server 2008, and I am trying to create a statement using a table variable to insert multiple rows into the table. As it stands right now, I have to insert the information ...
1
vote
3answers
55 views

Returning or outputting a @tableVariable in SQL

Is it possible to return or output a @tableVariable in SQL Server? For example for the following stored procedure, how do I return the @TSV table variable? ALTER PROCEDURE MyStoredProdecure ...
1
vote
3answers
117 views

SELECT statement that executes instantly, takes forever to insert into table variable

I have the following SQL code below. It is taking forever to complete but if I run just the SELECT DISTINCT ID, ParentID FROM Y WHERE ID IN (3,4), it completes instantly. DECLARE @table TABLE ( ID ...
1
vote
2answers
243 views

Common Table Expressions slow when using a table variable

I have been experimenting with the following (simplified) CTE. When using a table variable () the query runs for minutes before I cancel it. Any of the other commented out methods return in less than ...
0
votes
1answer
73 views

How to add subset of fields from stored procedure to table variable?

Declare @tempTableVariable Table( email varchar(50) ) Insert INTO @tempTableVariable EXEC GetData select email from @tempTableVariable I get the following error: "Column name or number of ...
0
votes
2answers
123 views

sql server update many columns with a select from a join of a table variable and a db table

I have the classical person -> person attributes scheme. So, like this: person(PK) <- person_attribute(FK) What I need is a query to get one row where a person is joined with her attributes. For ...
2
votes
2answers
573 views

delete from table variable MS SQL

I'm trying to delete rows from a table variable one by one every loop in my stored procedure but there are times that it keeps looping and cannot delete the record. The record is there even when I ...
0
votes
1answer
177 views

table variable self reference in SQL server 2008

I found a very strange thing in SQL server. I am not sure it is normal. insert @table select ID, Lastname from tableB where ID NOT IN ( select ID from @Table) It always says 0 row inserted. If I ...
0
votes
2answers
166 views

system stored procedures and table parameters

I'm accustomed to doing this: use MyDb go create type table_list as table (name sysname) go create proc rebuild_indexes @ls table_list readonly as [...] but now I want to create the proc in ...
1
vote
4answers
942 views

TSQL table variable initialization

I have the following TSQL table variable: declare @NumDaysMonth table ( month_id smallint, num_days smallint ) I just want a quick look-up for the number of days in each month. How can I ...
0
votes
1answer
221 views

Table Valued Parameter: sending data in small chunks

I am reading from a csv file and sending data as table variable to a stored procedure. From what i have tested so far , I am able to process 300k records in 3 mins 30 seconds . The file may contain ...
1
vote
2answers
630 views

Scope of table variable within SQL cursor

If I run the below in MS SQL 2008 R2 I get an unexpected result. create table #DataTable (someID varchar(5)) insert into #DataTable values ('ID1'),('ID2'),('ID3'),('ID4'),('ID5') declare @data ...
0
votes
2answers
626 views

T-SQL Table variable with case sensitive columns - collate SQL_Latin1_General_CP1_CS_AS

Is it possible to have collate SQL_Latin1_General_CP1_CS_AS in table variable columns' definitions? The reason I want to do this is because I have case sensitive information in my source table but ...
0
votes
3answers
329 views

TSQL set the column value of a table variable

I am trying to set individual columns of a table variable iteratively as follows: declare @reg_data table ( I int NOT NULL PRIMARY KEY IDENTITY, Y float ) declare @counter int, @numRows int ...
8
votes
2answers
3k views

When should I use a table variable vs temporary table in sql server?

I'm learning more details in table variable.It says that temp tables are always on disk,and table variables are in memory,that is to say, the performance of table variable is better than temp table ...
1
vote
1answer
277 views

subquery X temp table X dynamic sql X table valued function

I have a view that summarizes a lot of info for my items. Let's call it v_item_details. This view is defined via recursive cte's, and can become very slow if the right filtering is not applied. ...
1
vote
1answer
378 views

Viewing contents of table variable when debugging in sql server 2012

In the watch window whilst debugging in Sql Server 2012, we get to see the values of regular variables, we can look at xml in a special window and same with sql strings, but for a table variable it ...
2
votes
1answer
706 views

Why does using an INSERT - EXEC [stored procedure] statement in a UDF throw a side-effecting error?

I am working on a function that needs to call a stored procedure that returns N rows and then inserts the result into a temporary table as part of its processing. Calling the EXEC on the stored ...
2
votes
2answers
2k views

Postgresql table variable

Is there anything like table variables in T-SQL? In Sql Server it looks like this: DECLARE @ProductTotals TABLE ( ProductID int, Revenue money ) Then in procedure I can INSERT INTO ...
4
votes
1answer
3k views

“Must declare the scalar variable” error when referencing table variable

I can't figure out why (or maybe you just can't do this) I get the out of scope error "Must declare the scalar variable "@CompanyGroupSites_Master." So is it that you just can't access my Table ...
1
vote
1answer
46 views

Variable amount of sets as SQL database tables

More of a question concerning the database model for a specific problem. The problem is as follows: I have a number of objects that make up the rows in a fixed table, they are all distinct (of ...
5
votes
1answer
16k views

Creating table variable in SQL server 2008 R2

what is table variable? And how to create a table variable (virtual in-memory table) with columns that match the existing Stored procedure resultset. I executed the procedure and after executing it, ...
3
votes
1answer
2k views

Is using Table variables faster than temp tables

Am I safe to assume that where I have stored procedures using the tempdb to write a temporary table, I'd be better off switching these to table variables to get better performance?
2
votes
3answers
191 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 ...
3
votes
3answers
4k 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
484 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 ...
1
vote
1answer
291 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 ...
0
votes
3answers
406 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
294 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 ( ...
2
votes
3answers
10k 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 ...
14
votes
2answers
15k 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 ...
-1
votes
2answers
4k views

CTE (Common Table Expression) vs Temp tables or Table variables, which is faster?

CTE (Common Table Expression) vs Temp tables or Table variables, which is faster?
1
vote
1answer
759 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 ...
2
votes
1answer
1k 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
628 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
2k 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
2answers
407 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 ...
1
vote
3answers
641 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
825 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 ...
1
vote
1answer
1k 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
1k 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 ...
3
votes
4answers
719 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 ...
5
votes
4answers
4k 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) ...
14
votes
7answers
25k 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 ...
7
votes
3answers
2k 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 ...
0
votes
4answers
2k 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 ...

1 2