vote up 4 vote down star
1

I have seen various methods used when retrieving the value of a primary key identity field after insert.

declare @t table (
    id int identity primary key,
    somecol datetime default getdate()
)
insert into @t
default values

select SCOPE_IDENTITY() --returns 1
select @@IDENTITY --returns 1

Returning a table of identities following insert:

Create Table #Testing (  
    id int identity,  
    somedate datetime default getdate()  
)  
insert into #Testing  
output inserted.*  
default values

What method is proper or better? Is the OUTPUT method scope-safe?

The second code snippet was borrowed from SQL in the Wild

flag

48% accept rate
Dupe: stackoverflow.com/questions/353526/… – Mehrdad Afshari Jan 26 at 21:21
At least you can't say that the duplicate would appear on the "related quesions" thingy, given the (more correct) title of this question. – Tomalak Jan 26 at 21:24
I will change the title and contents of the question to cover the topic more broadly. – Terrapin Jan 26 at 21:25
That comment was meant to be in your favor. :-) The "related questions" feature does not work too well, I've tried all kinds of permutations of your title without actually getting something useful, let alone the dupe mentioned. – Tomalak Jan 26 at 21:27
1  
Yes - and I tried the search box before answering the question, and I didn't find the dupe. – Terrapin Jan 26 at 21:29
show 3 more comments

7 Answers

vote up 11 vote down

It depends on what you are trying to do...

@@IDENTITY

Returns the last IDENTITY value produced on a connection, regardless of the table that produced the value, and regardless of the scope of the statement that produced the value. @@IDENTITY will return the last identity value entered into a table in your current session. @@IDENTITY is limited to the current session and is not limited to the current scope. For example, if you have a trigger on a table that causes an identity to be created in another table, you will get the identity that was created last, even if it was the trigger that created it.

SCOPE_IDENTITY()

Returns the last IDENTITY value produced on a connection and by a statement in the same scope, regardless of the table that produced the value. SCOPE_IDENTITY() is similar to @@IDENTITY, but it will also limit the value to your current scope. In other words, it will return the last identity value that you explicitly created, rather than any identity that was created by a trigger or a user defined function.

IDENT_CURRENT()

Returns the last IDENTITY value produced in a table, regardless of the connection and scope of the statement that produced the value. IDENT_CURRENT is limited to a specified table, but not by connection or scope.

link|flag
vote up 4 vote down

@@Identity is the old school way. Use SCOPE_IDENTITY() in all instances going forward. See MSDN for the repercussions of using @@IDENTITY (they're bad!).

link|flag
Even SCOPE_IDENTITY() has problems with triggers which do their own INSERTs. (Giving you the identity of the last table any triggers inserte in to) – Dems Jan 27 at 22:14
There's sample code in that link that seems to contradict your statement. Pretty sure that triggers happen in a different scope. – jcollum Jan 28 at 18:20
vote up 3 vote down

A small correction to Godeke's answer:

It's not just triggers you need to worry about. Any kind of nested operation, such as stored procs, that causes identifiers to be created could change the value of @@IDENTITY.

Another vote for scope_identity...

link|flag
vote up 2 vote down

There is another method available in SQL Server 2005 that is outlined in SQL in the Wild.

This will allow you to retrieve multiple identities after insert. Here's the code from the blog post:

Create Table #Testing (  
    id int identity,  
    somedate datetime default getdate()  
)  
insert into #Testing  
output inserted.*  
default values
link|flag
I've seen this before, but assumed it was not scope-safe. Meaning I might see someone else's inserts. I don't know if that's true. – jcollum Jan 26 at 21:25
I am not sure. I will add this to the question. – Terrapin Jan 26 at 21:28
vote up 2 vote down

SCOPE_IDENTITY is sufficient for single rows and is recommended except in cases where you need to see the result of an intermediate TRIGGER for some reason (why?).

For multiple rows, OUTPUT/OUTPUT INTO is your new best friend and alternative to re-finding the rows and inserting into another table.

link|flag
vote up 1 vote down

Note that there is a bug in scope_identity() and @@insert - see connect: https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=328811

A quote (from Microsoft):

"I highly recomend using OUTPUT instead of @@IDENTITY in all cases. It's just the best way there is to read identity and timestamp."

link|flag
I just wanted to mention that the bug above occurs when parallelism is used. But this wouldn't effect cases where a single insert is performed. Heres a quote from Microsoft. "whenever a parallel query plan is generated @@IDENTITY and SCOPE_IDENTITY() are not being updated consistenly and can't be relied upon." – Haydar Oct 2 at 14:19
vote up 0 vote down

Be carreful while using @@IDENTITY ...

http://dotnetgalactics.wordpress.com/2009/10/28/scope-identity-vs-identity/

link|flag

Your Answer

Get an OpenID
or

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