Tagged Questions
1
vote
2answers
641 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 ...
8
votes
2answers
4k 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 ...
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 ...
0
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?
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)
...
11
votes
3answers
24k 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?