Scope of temporary tables in SQL Server

SqlSql ServerTsqlSql Server-2012

Sql Problem Overview


I wrote a stored procedure to import and transform data from one database to another. Each import would take a single company ID and import all data related to this company.

To help with the transformation step I use temporary tables. As part of script review, I was told to use table variables rather than temporary tables. The reviewer claims that if we run two different imports at the same time, the temporary table would be shared and corrupt the import.


Questions:

  • Is it true that the temporary table would be shared if we run two different imports at the same time?
  • Does each call to EXEC create a new scope?

Here is a contrived example of the script.

CREATE PROC [dbo].[ImportCompany]
(
	@CompanyId AS INTEGER
)
AS
EXEC [dbo].[ImportAddress] @CompanyId = @CompanyId 
--Import other data

CREATE PROC [dbo].[ImportAddress]
(
	@CompanyId AS INTEGER
)
AS
	CREATE TABLE #Companies (OldAddress NVARCHAR(128), NewAddress NVARCHAR(128))
	INSERT INTO #Companies(OldAddress, NewAddress)
	SELECT
		Address as OldAddress,
		'Transformed ' + Address as NewAddress
	FROM
		[OldDb].[dbo].[Addresses]
	WHERE
		CompanyId = @CompanyId

    --Do stuff with the transformed data

	DROP TABLE #Companies

EXEC [dbo].[ImportCompany] @CompanyId = 12345

Sql Solutions


Solution 1 - Sql

From CREATE TABLE:

> Local temporary tables are visible only in the current session

and (more importantly):

> If a local temporary table is created in a stored procedure or application that can be executed at the same time by several users, the Database Engine must be able to distinguish the tables created by the different users [sic - almost certainly this should say sessions not users]. The Database Engine does this by internally appending a numeric suffix to each local temporary table name.

Which exactly rebuts the point of whoever said that they would be shared.


Also, there's no need to DROP TABLE at the end of your procedure (from same link again):

> A local temporary table created in a stored procedure is dropped automatically when the stored procedure is finished

Solution 2 - Sql

## is used for global temporary tables - will be available to the different imports.

# is used for local temporary tables and only available in the current/inner scope.

Solution 3 - Sql

One session cannot see another session's temporary tables. So different imports will not affect each other, regardless of whether you use temporary tables or table variables.

The exception is global temporary tables, which start with ##. Those are visible to all connections.

Solution 4 - Sql

I just spent a few hours struggling to find out why a temporary table used in a trigger behaved strangely. Then I realised that the temporary table had the same name as a temporary table in the stored procedure used to insert the data that fired the trigger. I am now aware that this should have been obvious to me straight away, but it was a typical case of overlooking the most obvious cause when trying to find out why something did not make sense.

So it is important to remember that when a stored proc calls another stored proc or fires a trigger, then temp table names have to be unique across these in order to prevent undesired side-effects.

Furthermore - even when executing the following code in the inner stored proc, it will not function as expected. Since the outer stored proc seems to lock the temp table name.

IF OBJECT_ID('tempdb..#TempTable') IS NOT NULL
    DROP TABLE #TempTable

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionCogslaveView Question on Stackoverflow
Solution 1 - SqlDamien_The_UnbelieverView Answer on Stackoverflow
Solution 2 - SqlDarrenView Answer on Stackoverflow
Solution 3 - SqlAndomarView Answer on Stackoverflow
Solution 4 - SqlNel PrinslooView Answer on Stackoverflow