-
retriving data from an insert....
hi!
i'm doing an insert into a table which has an identity column but i need
in an output parameter that new identity number to do an insert in another
table with it, Could anybody help me please?. Thanks
-
Re: retriving data from an insert....
if you create a stored proc for the 1st insert, you could return the
identity
INSERT table (...)
VALUES (...)
-- do not return NULL value
-- SQL Server will return a negative error code if insert failed
IF @@IDENTITY IS NOT NULL
RETURN @@IDENTITY
--
HTH,
David Satz
Principal Software Engineer
Hyperion Solutions
->Using SQL Server 7.0 SP3/6.5 SP5a/Cold Fusion 4.5.1 SP2/VSS
(Please reply to group only - emails answered rarely)
-----------------------------------------------------------------
"Guillermo" <polonskyg@yahoo.com> wrote in message
news:3b03e264$1@news.devx.com...
>
> hi!
> i'm doing an insert into a table which has an identity column but i need
> in an output parameter that new identity number to do an insert in another
> table with it, Could anybody help me please?. Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks