473,394 Members | 1,748 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

return IDENTITY after SQL Insert?

I'm using an SQLCommand to insert row using a text command. Is there a way to
return the IDENTITY key value after the insert ?

Thanks much!
Jul 20 '06 #1
4 4649

"Dabbler" <Da*****@discussions.microsoft.comwrote in message
news:89**********************************@microsof t.com...
I'm using an SQLCommand to insert row using a text command. Is there a way
to
return the IDENTITY key value after the insert ?
set SQLCommand =
insert into table values ('string value');select scope_identity()

Jul 20 '06 #2
Naveen Bhardwaj
This can be done by :-

using @@IDENTITY which returns the last-inserted identity value

But the preferable solution is to use IDENT_CURRENT('TableName') which
returns the last identity value generated for a specified table in any
session and any scope.

"Mischa Kroon" <ww*@bloggingabout.netwrote in message
news:6e***************************@news.chello.nl. ..
>
"Dabbler" <Da*****@discussions.microsoft.comwrote in message
news:89**********************************@microsof t.com...
I'm using an SQLCommand to insert row using a text command. Is there a
way
to
return the IDENTITY key value after the insert ?

set SQLCommand =
insert into table values ('string value');select scope_identity()

Jul 20 '06 #3
In case anyone is curious, @@IDENTITY is dangerous 'cuz it returns the last
ID generated from any scope. If you are using triggers, look for this to
really bite you in the ass.

For example, you insert a new customer and select @@IDENTITY to get his/her
customerId...problem is you have a trigger on insert in your custom table
which adds a new audit record. You'll end up getting hte auto-generated
auditId wthout knowing it..

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Naveen" <na*************@in.bosch.comwrote in message
news:e9**********@news4.fe.internet.bosch.com...
Naveen Bhardwaj
This can be done by :-

using @@IDENTITY which returns the last-inserted identity value

But the preferable solution is to use IDENT_CURRENT('TableName') which
returns the last identity value generated for a specified table in any
session and any scope.

"Mischa Kroon" <ww*@bloggingabout.netwrote in message
news:6e***************************@news.chello.nl. ..
>>
"Dabbler" <Da*****@discussions.microsoft.comwrote in message
news:89**********************************@microso ft.com...
I'm using an SQLCommand to insert row using a text command. Is there a
way
to
return the IDENTITY key value after the insert ?

set SQLCommand =
insert into table values ('string value');select scope_identity()


Jul 20 '06 #4
I had a similar issue to what Karl mentioned, was lucky enough to catch
it while still in development. I ended up doing away with using
triggers for auditing purposes and just made the audit table insert at
the end of the stored proc.
Karl Seguin [MVP] wrote:
In case anyone is curious, @@IDENTITY is dangerous 'cuz it returns the last
ID generated from any scope. If you are using triggers, look for this to
really bite you in the ass.

For example, you insert a new customer and select @@IDENTITY to get his/her
customerId...problem is you have a trigger on insert in your custom table
which adds a new audit record. You'll end up getting hte auto-generated
auditId wthout knowing it..

Karl

--
http://www.openmymind.net/
http://www.fuelindustries.com/
"Naveen" <na*************@in.bosch.comwrote in message
news:e9**********@news4.fe.internet.bosch.com...
Naveen Bhardwaj
This can be done by :-

using @@IDENTITY which returns the last-inserted identity value

But the preferable solution is to use IDENT_CURRENT('TableName') which
returns the last identity value generated for a specified table in any
session and any scope.

"Mischa Kroon" <ww*@bloggingabout.netwrote in message
news:6e***************************@news.chello.nl. ..
>
"Dabbler" <Da*****@discussions.microsoft.comwrote in message
news:89**********************************@microsof t.com...
I'm using an SQLCommand to insert row using a text command. Is there a
way
to
return the IDENTITY key value after the insert ?

set SQLCommand =
insert into table values ('string value');select scope_identity()
Jul 20 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Filips Benoit | last post by:
Sorry I'm new in this, Add a record using T-SQL and Connection.Execute How can i insert the identity in a VB-variable Dim objConn As ADODB.Connection Set objConn = New ADODB.Connection...
2
by: Edward | last post by:
SQL 7.0 I have a form in ASP.NET and I want to write the values to the SQL Server tables. The tables are Customer and Address tables. There will be an insert into the Customer table, and I...
3
by: isaacrajan | last post by:
Hello, How do I get SQL server 2000 to continue the sequence of identity column values after I perform an insert into the table with the set identity_insert <table name> on statement? Eg if I...
9
by: eagle | last post by:
How can I return the new id that is created when an insert command is used? for example: qry = "insert into tblClients (lname, fname) values ('smith', 'joe')" Dim xyz as string =...
0
by: shubhangi | last post by:
Hi, I have created a update trigger on a table which has auto incremental field. trigger contains "set identity_insert on" statement. I am facing problem that only logins who have db_owner...
1
by: ddice | last post by:
I need to update and then read a sequence number, but I think its failing when there are many users updating at the same time. Here's what I'm doing update datatable set nextnr = nextnr+1 where...
0
by: BreckCogdill | last post by:
I have a problem with MS SQL Server 2005 - When I do an Import or Export to/from databases, the Identity is lost. I check the Enable Identity Insert box on each table, but it does not work. Is there...
1
JustRun
by: JustRun | last post by:
Hi, I need to know how to return th Id after inserting row, I can do it by many ways, but I need to know why my code doesn't work? This is a way: { product.proId = _proId; ...
5
by: NareshN | last post by:
Hi All, I am inserting data into Employee table using stored procedure.In employee table EmpNo is identity column.Once i insert data into table stored procedure should EmpNo i.e...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.