New SQL Server project templates for VS2015 (Create Sequence.sql)
1: CREATE SEQUENCE $SchemaQualifiedObjectName$
2: AS BIGINT
3: START WITH 1
4: INCREMENT BY 1
5: NO MAXVALUE
6: NO CYCLE
7: CACHE 10
Comments (
)
Link to this page:
//www.vb-net.com/VS2015-SQL-Server-Project-Templates/Create-Sequence-sql.htm
|