(Came up with this question in the course of trying to answer this other one)

Consider the following MS-SQL table, called GroupTable:

GroupID
-------
1  
2  
3  

where GroupID is the primary key and is an Identity column.

How do you insert a new row into the table (and hence generate a new ID) without using IDENTITY_INSERT ON?

Note that this:

INSERT INTO GroupTable() Values ()

... wont work.

edit: we're talking SQL 2005 or SQL 2008 here.

link|improve this question

feedback

3 Answers

up vote 33 down vote accepted

This should work:

INSERT INTO GroupTable DEFAULT VALUES
link|improve this answer
I can't get this to work with Visual Studio 2008/SQL Express 2005. Any ideas? Same table layout, one column, primary key, identity(1,1). – Thomas Sandberg Aug 31 '09 at 18:27
I'm using SQL 2008 R2, no joy for me either! – TDaver Nov 5 '11 at 14:57
Works for me on SQL Server 2008 Express. – Adrian Lynch Feb 19 at 12:59
feedback

Here you go:

INSERT INTO GroupTable DEFAULT VALUES
link|improve this answer
Does this work in SQL 2005/2008? I dont have it infront of me to check ... – codeulike May 11 '09 at 22:17
It does work, and DJ gave the first correct answer. – Andomar May 11 '09 at 22:20
feedback

Can you try using a Sequence or something similar? Where you select from a Sequence and it will give you the next value in the sequence.

link|improve this answer
-1 What's a sequence? Never heard of it. – Andomar May 11 '09 at 22:22
I think he's talking about Oracle DB – codeulike May 11 '09 at 22:26
I know sequences exist in Oracle and wasn't sure what (if any) comparable thing existed in SQL Server. That is why I suffixed it with "or something similar" and then gave a definistion of a Sequence for reference. – Mike Pone May 12 '09 at 15:48
SQL Server 2012 has SEQUENCEs. – Nick Chammas May 24 at 21:56
feedback

Your Answer

 
or
required, but never shown

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