Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8256335
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T01:50:11+00:00 2026-06-08T01:50:11+00:00

(forgive me – I’m new to both StackOverflow & SQL) Tl;dr – When using

  • 0

(forgive me – I’m new to both StackOverflow & SQL)
Tl;dr – When using @@identity (or any other option such as scope_identity or output variable), is it possible to also use a view? Here is an example of a stored procedure using @@identity:

--SNIP--
DECLARE @AID INT
DECLARE @BID INT


INSERT INTO dbo.A (oct1)
VALUES
(@oct1)

SELECT @AID = @@IDENTITY;

INSERT INTO dbo.B (duo1)
VALUES
(@duo2)

SELECT @BID = @@IDENTITY

INSERT INTO dbo.tblAB (AID, BID)
VALUES
(@AID, @BID)
GO

Longer:

When inserting into a table, you can capture the current value of the identity seed using @@identity. This is useful if you want to insert into table A and B, capture the identity value, then insert into table AB relating A to B. Obviously this is for purposes of data normalization.

Let’s say you were to abstract the DB Schema with a few that performs inner joins on your tables to make the data easier to work with. How would you populate the cross reference tables properly in that case? Can it be done the same way, if so, how?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T01:50:13+00:00Added an answer on June 8, 2026 at 1:50 am

    Avoid using @@IDENTITY or SCOPE_IDENTITY() if your system is using Parallel plans as there is a nasty bug. Please refer –
    http://connect.microsoft.com/SQL/feedback/ViewFeedback.aspx?FeedbackID=328811

    Better way to fetch the inserted Identity ID would be to use OUTPUT clause.

    CREATE TABLE tblTest
    (         
        Sno         INT IDENTITY(1,1) NOT NULL,         
        FirstName   VARCHAR(20) 
    )  
    
    DECLARE @pk TABLE (ID INT)  
    
    INSERT INTO tblTest(FirstName) 
    OUTPUT INSERTED.Sno INTO @pk
    SELECT 'sample' 
    
    SELECT * FROM @pk 
    

    EDIT:

    It would work with Views as well. Please see the sample below. Hope this is what you were looking for.

    CREATE VIEW v1
    AS
    SELECT sno, firstname FROM tbltest
    GO
    
    DECLARE @pk TABLE (ID INT)  
    
    INSERT INTO v1(FirstName) 
    OUTPUT INSERTED.Sno INTO @pk
    SELECT 'sample' 
    
    SELECT ID FROM @pk
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Forgive my naivety, but I am new to using Delphi with databases (which may
Forgive me as I'm relatively new to SQL. But I'm trying to take modified
Forgive me for the upcoming question, lol. (Im terribly new at this) I have
Forgive me, I'm new to Java and have an extremely basic question. I have
Forgive me if this is a repeat question. I've searched StackOverflow and did not
Forgive me for this noob question, but is there such a setting that sets
forgive me i'm new to capistrano we have multiple sites we want to deploy
Forgive me if the title (and my SQL knowledge) seems a bit vague but
Forgive me if I've got my terminology wrong; I am still quite new to
Forgive me if I could have any sort of fundamental error here. I'd imagine

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.