0
votes
2answers
132 views

Update from Temp Table

Query: SELECT ID, T.c.value('@Address', 'nvarchar(20)' ) as Address INTO #TMP FROM TABLE1 CROSS APPLY XMLData.nodes('/Document') AS T(c) UPDATE TABLE1 SET HomeAddress = (SELECT TOP 1 t.Address ...
0
votes
1answer
197 views

Connection scoped temp tables across stored procedures

I'm working on a data virtualization solution. The user is able to write his own SQL queries as filters for a query i make. I would like not having to run this filter query every time i select ...
2
votes
1answer
181 views

SQL Server 2008 - #tmp table throws error when run within an exec command [duplicate]

Possible Duplicate: TSQL Writing into a Temporary Table from Dynamic SQL ALTER PROCEDURE [dbo].[usp_ServicesStats1](@PERIOD VARCHAR(30) ) AS BEGIN -- SET NOCOUNT ON added to prevent ...
-1
votes
3answers
2k views

Couldn't create temp table from select query if result empty

I want to crate a temp table from select query (My table has many columns, therefore I don't want to create the temp table manually) I use the following query: SELECT * INTO #TempTable FROM MyTable ...
0
votes
3answers
264 views

How do I execute a sql statement through a variable (dynamic sql) that tries to do an insert into a variable table? [duplicate]

Possible Duplicate: How to use table variable in a dynamic sql statement? If I do what I wanna do with a TEMPORARY TABLE, it works fine: DECLARE @CTRFR VARCHAR(MAX) SET @CTRFR = 'select ...
1
vote
3answers
1k views

Access SQL Server temporary tables created in different scope

I am writing a stored procedure for SQL Server 2008 in which I need to extract information from a set of tables. I do not know ahead of time the structure of those tables. There is another table in ...
0
votes
2answers
2k views

Checking if column exists in temporary table always returns false in SQL Server

I have the following Execution statement which creates a table (using data from another procedure), inserts the values into a temporary table, adds an image column (because they cannot be included in ...
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 ...
1
vote
2answers
1k views

SQL Insert to Temp Table Without Specifying Values?

I have a stored procedure that currently uses one CTE. This one works like so: WITH MY_CTE AS ( // Logic here uses SELECT * from a single table. ) SELECT * INTO #Tasks FROM MY_CTE; I now have a ...
3
votes
2answers
588 views

What's the scoping rule for temporary tables within exec within stored procedures?

Compare the following stored procedures: CREATE PROCEDURE testProc1 AS SELECT * INTO #temp FROM information_schema.tables SELECT * FROM #temp GO CREATE PROCEDURE testProc2 AS ...
1
vote
2answers
431 views

Print vs select output order in Visual Studio (was: Temporary SQL table changes on it's own???)

Please tell me I'm dreaming or something. I'm doing oldschool tsql tree traversal without CTE. Here's my vanilla stack table. CREATE TABLE #stack (DepartmentId int, level int) Later in the loop ...
0
votes
1answer
795 views

TSQL - Optimizing Full Text Search query with temp table

To make it short I have a full text search query that does a company search on a single table. Once the search is complete I pull extra stats from the result such as Top 5 titles, top 5 locations ...
2
votes
2answers
405 views

How to design usage of Global temp table for a multi-user environment? (or alternatives)

I need to create a temporary table in one of my stored procedures. The data to be inserted into the temp table is derived from a dynamic pivot query - hence I am tied to dynamic sql. So it becomes ...
4
votes
1answer
757 views

select null as testdate into #temp_table

Is there a way to insert/update a datetime value (getdate()) into a temp table created like the following: select id, null as testdate into #temp_table and then later statement: update #temp_table ...
0
votes
3answers
4k views

T-SQL Dynamic SQL and Temp Tables

It looks like #temptables created using dynamic SQL via the EXECUTE string method have a different scope and can't be referenced by "fixed" SQLs in the same stored procedure. However, I can reference ...
0
votes
2answers
1k views

TSQL - How to join 1..* from multiple tables in one resultset?

A location table record has two address id's - mailing and business addressID that refer to an address table. Thus, the address table will contain up to two records for a given addressID. Given a ...
0
votes
2answers
1k views

using a temporary table with NHibernate

I'm trying to make what seems to be an advanced use of NHibernate with sql server functions. I'm using NHibernate's ICriteria interface to supply paging, sorting and filtering for my listviews. one of ...
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?
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 ...
2
votes
4answers
3k views

How to save a single result set to a temp table from a SQL stored procedure returning multiple sets?

I need to store the result set of a stored procedure in a temporary table (using SQL Server 2000). From what I've read, this (poorly constructed example) should work: create table #tempTable (TempId ...
0
votes
1answer
593 views

Stored procedure and .NET: SELECT INTO on temporary table: suppress result

I'm accessing a stored procedure from ADO.NET. The stored procedure should eventually returns a single result set. To compute this result, a temporary table is filled with a SELECT INTO statement. ...
6
votes
4answers
3k views

Temporary tables in Linq — Anyone see a problem with this?

In trying to solve: Linq .Contains with large set causes TDS error I think I've stumbled across a solution, and I'd like to see if it's a kosher way of approaching the problem. (short summary) I'd ...
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?
3
votes
1answer
852 views

How do I get the C# Query component to recognise columns returned data from a temporary table in a sql stored procedure

I've created a stored procedure similar to the one below (I'm using this cut down version to try and figure our the problem). CREATE PROCEDURE bsp_testStoredProc AS BEGIN CREATE TABLE #tmpFiles ( ...
0
votes
2answers
4k views

Testing for the existence of a temporary table in a multi tempdb environment?

Is there any way of determining whether or not a specific temp table has been created in a session without referencing the tempdb database that it was created on? Users are allocated to a specific ...
9
votes
3answers
15k views

Best use of indices on temporary tables in T-SQL

If you're creating a temporary table within a stored procedure and want to add an index or two on it, to improve the performance of any additional statements made against it, what is the best ...