Banco di prova semplice:
USE tempdb;
GO
/*
This DROP TABLE should not be necessary, since the DROP SCHEMA
should drop the table if it is contained within the schema, as
I'd expect it to be.
*/
IF COALESCE(OBJECT_ID('tempdb..#MyTempTable'), 0) <> 0
DROP TABLE #MyTempTable;
IF EXISTS (SELECT 1 FROM sys.schemas s WHERE s.name = 'SomeSchema')
DROP SCHEMA SomeSchema;
GO
CREATE SCHEMA SomeSchema AUTHORIZATION [dbo]
CREATE TABLE SomeSchema.#MyTempTable /* specifying the schema
should not be necesssary since
this statement is executed inside
the context of the CREATE SCHEMA
statement
*/
(
TempTableID INT NOT NULL IDENTITY(1,1)
, SomeData VARCHAR(50) NOT NULL
);
GO
INSERT INTO tempdb.SomeSchema.#MyTempTable (SomeData) VALUES ('This is a test');
SELECT *
FROM tempdb.SomeSchema.#MyTempTable;
GO
SELECT *
FROM sys.objects o
INNER JOIN sys.schemas s ON o.schema_id = s.schema_id
WHERE s.name = 'SomeSchema';
SELECT s.name
, o.name
FROM sys.objects o
INNER JOIN sys.schemas s ON o.schema_id = s.schema_id
WHERE s.name = 'dbo'
AND o.name LIKE '%MyTempTable%';
DROP SCHEMA SomeSchema;
DROP TABLE #MyTempTable;
Quanto sopra dovrebbe creare una tabella temporanea denominata #MyTempTable
nel tempdb sotto lo schema denominato SomeSchema
; tuttavia non lo fa. Invece la tabella viene creata nello dbo
schema.
Questo comportamento è previsto? Mi rendo conto che questo è certamente un caso limite attorno all'uso di tabelle temporanee specifiche dello schema; tuttavia sarebbe utile se il motore fornisse un errore durante il tentativo di creare una tabella temporanea associata allo schema o effettivamente lo associasse allo schema specificato nel DDL.
Inoltre, al momento non ho accesso a SQL Server 2014 o 2016; funziona come previsto su quelle piattaforme?