Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

SQL Server:incremento automatico che consente le istruzioni UPDATE

Una soluzione a questo problema da "Inside Microsoft SQL Server 2008:T-SQL Querying"

CREATE TABLE dbo.Sequence(
 val int IDENTITY (10000, 1) /*Seed this at whatever your current max value is*/
 )

GO

CREATE PROC dbo.GetSequence
@val AS int OUTPUT
AS
BEGIN TRAN
    SAVE TRAN S1
    INSERT INTO dbo.Sequence DEFAULT VALUES
    SET @val=SCOPE_IDENTITY()
    ROLLBACK TRAN S1 /*Rolls back just as far as the save point to prevent the 
                       sequence table filling up. The id allocated won't be reused*/
COMMIT TRAN

O un'altra alternativa dello stesso libro che alloca gli intervalli più facilmente. (Dovresti considerare se chiamarlo dall'interno o dall'esterno della transazione:l'interno bloccherebbe altre transazioni simultanee fino a quando la prima non si impegna)

CREATE TABLE dbo.Sequence2(
 val int 
 )

GO

INSERT INTO dbo.Sequence2 VALUES(10000);

GO

CREATE PROC dbo.GetSequence2
@val AS int OUTPUT,
@n as int =1
AS
UPDATE dbo.Sequence2 
SET @val = val = val + @n;

SET @val = @val - @n + 1;