You should be able to do multiple command from .net
the SQL command to get the last insert id is
SELECT @@IDENTITY
Main Topics
Browse All TopicsI'm inserting a record in my table2 and i'd like the id to be returned to be upon the insert. I am executing this from an asp.net application so if possible I'd like to limit the number of requests.
I was reading I could issue a SELECT LAST_INSERT_ID(); right after the insertion but I am afraid this could cause serious fatalities if I get several requests at once.
Are there any other options to limit number of commands I have to issue from .net?
table2
id int autoincrement
name varchar
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Select Scope_Identity() is prefered as it selects the last one from the connection doing the calling.
http://davidhayden
It should avoid the concurrency problem you fear.
Business Accounts
Answer for Membership
by: MartinCMSPosted on 2009-09-11 at 11:41:59ID: 25312302
You should be able to do multiple command from .net
the SQL command to get the last insert id is
SELECT @@IDENTITY