Criando e acessando tabelas em TempDB de procedimentos armazenados nativamente compilados
Não há suporte para criar e acessar tabelas em TempDB de procedimentos armazenados nativamente compilados. Use tipos e variáveis de tabela. Por exemplo:
CREATE TYPE dbo.OrderQuantityByProduct
AS TABLE
(id INT NOT NULL PRIMARY KEY NONCLUSTERED HASH WITH (BUCKET_COUNT=100000),
ProductID INT NOT NULL,
Quantity INT NOT NULL) WITH (MEMORY_OPTIMIZED=ON)
GO
CREATE PROCEDURE dbo.usp_OrderQuantityByProduct
WITH NATIVE_COMPILATION, SCHEMABINDING, EXECUTE AS OWNER
AS BEGIN ATOMIC WITH
(
TRANSACTION ISOLATION LEVEL = SNAPSHOT,
LANGUAGE = 'english'
)
-- declare table variables for the list of orders
DECLARE @Input dbo.OrderQuantityByProduct
-- populate input
INSERT @Input SELECT ProductID, Quantity FROM dbo.[Order Details]
end
Consulte Também
Problemas de migração para procedimentos armazenados compilados nativamente
Construções do Transact-SQL sem suporte pelo OLTP na memória