My Table Structure as follow,

CREATE TABLE tbl_Info
(
    [SSEID]         BIGINT              NOT NULL    IDENTITY(1,1),
    [ShortenKey]    AS ConvertToBase([SSEID]),
    [Title]         VARCHAR(500)        NULL,       
)

ConvertToBase Function as Follow,

CREATE FUNCTION ConvertToBase(@Number BIGINT)
RETURNS VARCHAR(15)
AS 
BEGIN
      // implementation
END

I need to get the generated [ShortenKey] value after INSERT query in sp. how to do this ?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Use the OUTPUT clause?

INSERT tbl_Info (Title)
OUTPUT INSERTED.ShortenKey
VALUES ('new title')

Note: may not work with computed columns says MSDN, if I read it correctly.

link|improve this answer
Thanks for the response, but this error..."Column 'inserted.ShortenKey' cannot be referenced in the OUTPUT clause because the column definition contains a subquery or references a function that performs user or system data access. A function is assumed by default to perform data access if it is not schemabound. Consider removing the subquery or function from the column definition or removing the column from the OUTPUT clause. " – Kushan Fernando Jun 15 '11 at 8:23
1  
Add WITH SCHEMABINDING to the fucntion – gbn Jun 15 '11 at 8:35
feedback

Use SCOPE_IDENTITY to get the new identity value. Then query the newly inserted row.

SELECT ShortenKey
FROM dbo.tbl_Info
WHERE SSEID = SCOPE_IDENTITY()
link|improve this answer
@gbn My code sample returns ShortenKey. Am I missing something? – Anthony Faull Jun 15 '11 at 13:27
feedback
SELECT ShortenKey
FROM dbo.tbl_Info
WHERE SSEID = SCOPE_IDENTITY()
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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