Simulating Oracle Sequences in Sybase & SQL Server

Programmatic control is lost when identity columns are used in Sybase and SQL Server.  I do not recommend using Identity columns to create surrogate keys during ETL process. There are many more reasons for that. Oracle has the sequence feature which is used extensively by Oracle programmers. I have no clue why other vendors are not providing the same. This custom code has been used  extensively by me and thoroughly tested. I ran multiple processes simultaneously to check if there is deadlock and also made sure that the process returns different sequences to different client process.

Notes: -
1. The table should have ‘ROW LEVEL LOCKING’
2. The sequence generator process is stateless (See more details in Object Oriented Programming)
3. Create one row for each target table in the sequence master table. Do not try to use one sequence for multiple tables. It will work but probably is not a good idea.

Step 1: -Create a table with following structure.
CREATE TABLE sequence_master (
    sequence_nm varchar (55)  NOT NULL ,
    sequence_num integer  NOT NULL
)
GO

Step 2: -Create a stored procedure that will return the next sequence.
CREATE  PROCEDURE p_get_next_sequence 
    @sequence_name varchar(100)
AS
BEGIN
    DECLARE @sequence_num INTEGER
    — Returns an error if sequence row is entered into the table.
    SET @sequence_num = -1

    UPDATE sequence_master
    SET    @sequence_num = sequence_num = sequence_num + 1
    WHERE  Sequence_name = @sequence_name

    RETURN @sequence_num
END
GO

Leave a Reply