如何使用 SEQUENCE PK 列在 SQL 服务器中创建临时 table

How to CREATE a Temp table in SQL Server with a SEQUENCE PK Column

我可以创建带有序列的 table,但是当我尝试将序列用于临时 table 时,出现错误:

Invalid object name '[sequence]'

我不能使用临时序列添加到主键中吗 table?如果我只是将 @tist 更改为 tist 使其成为标准 table 一切正常...问题是我需要使用临时 table... 而不是由于权限,实际 table。

    drop table if exists #tist
    drop table if exists #t_stg 

    drop sequence if exists i_seq
    go

    create sequence i_seq start with 1 increment by 1

    /* Error is this Line */
    create table #tist(id int primary key default (next value for dbo.i_seq), a int, b int)

    create table #t_stg(id int, a int, b int)

    insert into #t_stg(a,b) values (1,2),(3,3),(4,5)

    update #t_stg set id = next value for i_seq

    --select * from #t_stg

    insert into #tist(id,a,b) 
    select * from #t_stg 

    SELECT * FROM #tist

在我简单地用我的序列更新 STAGING table 而不是尝试使用 SEQUENCE 创建我的 TEMP TABLE 之后,我似乎得到了我想要的东西。

DROP TABLE IF exists #t
DROP TABLE IF exists #t_stg 

DROP SEQUENCE IF exists dbo.t_seq

GO

DECLARE @sql NVARCHAR(max);
DECLARE @Count INT = 981518;

CREATE SEQUENCE dbo.t_seq START WITH 1 increment BY 1

SET @sql = N'ALTER SEQUENCE dbo.t_seq RESTART WITH ' + CAST(@Count AS NVARCHAR(20)) + ';';
EXEC SP_EXECUTESQL @sql;
GO

CREATE TABLE #t(id INT, a INT, b INT)

CREATE TABLE #t_stg(id INT, a INT, b INT)

INSERT INTO #t_stg(a,b) VALUES (1,2),(3,3),(4,5)

--SELECT * FROM #t_stg

UPDATE #t_stg SET id = NEXT VALUE FOR t_seq

SELECT * FROM #t_stg

--INSERT INTO #t(id,a,b) 
--SELECT * FROM #t_stg

--SELECT * FROM #t

GO