Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Scope_Identity
Message
From
08/03/2010 13:35:39
 
 
To
All
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Title:
Scope_Identity
Environment versions
SQL Server:
SQL Server 2005
Application:
Desktop
Miscellaneous
Thread ID:
01453233
Message ID:
01453233
Views:
108
Hi

I want to use Scope_Identity to return the newly created record ID in my table. My code, thus far, looks something like:

ALTER procedure [dbo].[Candidate_Insert_Blank]
@CreatedByID int, @CandidateID int output

as
begin
set nocount on;
insert into Candidate (CreatedByID)
values (@CreatedByID)
set @CandidateID = cast(scope_identity() as int)
end

CandidateID is a field within Candidate and it's automatically incremented using Indentify Increment. In reality, I want the stored procedure to return the value of field Candidate.CandidateID.

Regards
Next
Reply
Map
View

Click here to load this message in the networking platform