User-821857111 posted
Sequences apply to the whole database but you can create multiple named sequences. All you need to do is ensure that you use the same one for a specific table and don't use it for any others.
CREATE Sequence OrderTableSeqence
START WTH 1
INCREMENT BY 1;
GO
INSERT INTO Orders
(
OrderId,
CustomerId,
DateCreated,
etc...)
VALUES
(
SELECT NEXT VALUE FOR OrderTableSeqence,
@CustomerId,
GetDate(),
etc....)
See more here: http://technet.microsoft.com/en-us/library/ff878091.aspx