Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: RETURNING clause
I never used 'RETURNING' clause with pseudo-column like ROWID.
Usually I'm using it to return a value of the sequence, used to insert the
row:
INSERT INTO TABLE_NAME (col1,col2,..) VALUES(col1_SEQ.NEXTVAL,val2,..)
RETURNING col1
INTO col1_var.
Igor Neyman, OCP DBA
ineyman_at_perceptron.com
> Hi list,
> I am firing foll query from oracle forms
> INSERT INTO TABLE_NAME (col1,col2,..) VALUES(val1,val2,..) RETURNING ROWID
> INTO var_rowid.
>
> it displays me follwoing error.
>
> "ORA-00439:feature not enabled:RETURNING clause
> from this client type"
>
> Is there any way to enable this feature from client ?
>
> (i know that in Forms ,there is a property of
> BLOCK 'DML returning value :YES/NO' but my table is not attached to the
> block )
>
> (same query works fine from sqlplus)
> (Forms 6i, Orcale 8.1.6)
>
> Any help is appreciated
> Thx
> Sameer
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Ghadge,Sameer
> INET: Sameer_Ghadge_at_Syntelinc.com
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Igor Neyman INET: ineyman_at_perceptron.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Wed Feb 27 2002 - 07:38:20 CST
![]() |
![]() |