Does anyone have a good way of implementing something like a sequence in SQL server?

Sometimes you just don't want to use a GUID, besides the fact that they are ugly as heck. Maybe the sequence you want isn't numeric? Besides, inserting a row and then asking the DB what the number just seems so hackish.

link|improve this question

feedback

11 Answers

up vote 10 down vote accepted

This seems to address your question directly: http://www.sqlteam.com/article/custom-auto-generated-sequences-with-sql-server

(if it doesn't -- I must not be understanding some subtlety of your use case. Please comment)

link|improve this answer
feedback

You could just use plain old tables and use them as sequences. That means your inserts would always be:

BEGIN TRANSACTION  
SELECT number from plain old table..  
UPDATE plain old table, set the number to be the next number  
INSERT your row  
COMMIT  

But don't do this. The locking would be bad...

I started on SQL Server and to me, the Oracle "sequence" scheme looked like a hack. I guess you are coming from the other direction and to you, and scope_identity() looks like a hack.

Get over it. When in Rome, do as the Romans do.

link|improve this answer
you would also need to use SET TRANSACTION ISOLATION LEVEL SERIALIZABLE to guarantee that it works, but like @Corey Trager I also do not recommend that you implement this. – Mitch Wheat Nov 12 '08 at 3:55
What seems hackish in sequences? Just curious, I learned to use sequences first. Like you mention, whatever we learn first tends to feel "right". – Steve K Nov 12 '08 at 4:03
In SQL Server, I just specify the column as IDENTITY and I'm done. In Oracle, I needed to do more (Sorry, I forgot the details. It was 8 years ago...). – Corey Trager Nov 12 '08 at 4:06
Ah, I see what your saying. For Oracle that is correct, and it is a pain. In Postgres, you can have a columns default value be the sequence's nextval, and it is very handy. – Steve K Nov 12 '08 at 4:09
feedback

An Identity column is roughly analogous to a sequence.

link|improve this answer
Roughly yes, but not quite. You need to insert something into the table before you can be sure of the ID. – Nathan Lee Nov 12 '08 at 3:54
perhaps I should have said "very, very roughly" :) – matt b Nov 12 '08 at 14:07
And you can also get gaps in your sequence, if you rollback an insert. – Jonas Lincoln Nov 17 '08 at 20:33
feedback

sequences as implemented by oracle require a call to the database before the insert. identities as implemented by sqlserver require a call to the database after the insert.

one is no more hackish than the other. the net effect is the same - a reliance/dependency on the data store to provide unique artificial key values and (in most cases) two calls to the store.

i'm assuming that your relational model is based on artificial keys, and in this context, i'll offer the following observation:

we should never seek to imbue artificial keys with meaning; their only purpose should be to link related records.

what is your need related to ordering data? can it be handled in the view (presentation) or is it a true attribute of your data which must be persisted?

link|improve this answer
feedback

I totally agree and did this last year on a project.

I just created a table with the name of the sequence, current value, & increment amount.

Then I created a 2 procs to add & delete them. And 2 functions to get next, & get current.

link|improve this answer
feedback

If you want to insert data with a sequential key, but you don't want to have to query the database again to get the just-inserted key, I think your only two choices are:

  1. Perform the insert through a stored procedure which returns the newly-inserted key value
  2. Implement the sequence client-side (so that you know the new key before you insert)

If I'm doing client-side key generation, I love GUIDs. I think they're beautiful as heck.

row["ID"] = Guid.NewGuid();

That line should be laying on the hood of a sportscar somewhere.

link|improve this answer
I hear you. Everything has upsides and downsides. I'm actually a big natural key fan, so I usually only use GUIDs if no natural key is available. So a customer table would probably be PKed by SSN or a compound PK of name and address etc. – MusiGenesis Nov 12 '08 at 14:35
feedback

It's part of the Relational Gospel that tuples are inherently unordered, and Set Logic requires that they be so. (Yes, that's by rote.)

In my experience, it'w always been just as easy to sequence the results in another abstraction layer (e.g. a grid in the UI). Trying to do this in the database is inevitably fraught with Unintended Consequences. The DBMS doesn't need (will trip over) sequencing, so interpose it at the layer that does. All else is problematic coupling.

link|improve this answer
feedback

If you are using SQL Server 2005 you have the option of using Row_Number

link|improve this answer
feedback

Create a stage table with an identifier on it.

Before loading the stage table, truncate and reseed the identifier to start at 1.

Load your table. Each row now has a unique value from 1 to N.

Create a table that holds sequence numbers. This could be several rows, one for each sequence.

Lookup the sequence number from the sequence table you created. Update the seqence number by adding the number of rows in the stage table to the sequence number.

Update the stage table identifier by adding the seqence number you looked up to it. This is an easy one step process. or Load your target table, add the sequence number to the identifier as you load in ETL. This can take advantage of the bulk loader and allow for other transformations.

link|improve this answer
feedback

The other problem with an identity columns is that if you have more than one table where the sequence numbers need to be unique, an identity column doesn't work. And like Corey Trager mentions, a roll-your-own type of sequence implementation might present some locking issues.

The most straightforwardly equivalent solutions seems to be to create a SQL Server table with a single column for the identity, which takes the place of a separate type of "sequence" object. For example if in Oracle you would have two tables from one sequence such as Dogs <-- sequence object --> Cats then in SQL Server you would create three database objects, all tables like Dogs <-- Pets with identity column --> Cats. You would insert a row into the Pets table to get the sequence number where you would normally use NEXTVAL and then insert into the Dogs or Cats table as you normally would once you get the actual type of pet from the user. Any additional common columns could be moved from the Dogs/Cats tables into the Pets supertype table, with some consequences that 1) there would be one row for each sequence number, 2) any columns not able to be populated when getting the sequence number would need to have default values and 3) it would require a join to get all of the columns.

link|improve this answer
feedback

how to implement, managing sequences and performance which is better identity or sequences please use the below link

http://sqljunkieshare.com/2011/12/11/sequences-in-sql-server-2012-implementingmanaging-performance/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.