Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: INSERT INTO Syntax: Insert a complete record using a cursor
Hannah
Maybe you could temporarily change the insert trigger to an update trigger
(create or replace trigger before insert or update on...)
and then simply update the table setting some column to itself. This will
will fire the trigger (and will not change any data in the table).
I didn't understand why you want to commit after each row(?), triggers will
fire in any case, but if you need to, you could do the update in PL/SQL.
hth,
Chaim
"Lakhani, Vipul" <LakhaniV_at_uk.tigplc.com>@fatcity.com on 08/01/2002 11:44:16 AM
Please respond to ORACLE-L_at_fatcity.com
Sent by: root_at_fatcity.com
To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com> cc:
cursor
.. or i had a similar problem ... i wrote an update trigger to populate the
backup table ... and i did an update the the master table to update a
record
back to itself ...
update mytab
set acol = acol;
when the update happens use the :old/:new values to populate the backup table
-----Original Message-----
Sent: 01 August 2002 15:18
To: Multiple recipients of list ORACLE-L
Hi,
I am writing a one-time proc to copy all records from one table to another table with a commit level of 1 record. I wrote a proc to do this using a cursor and for loop but was wondering if there was an alternative syntax for the insert using the current cursor?
Ie. Insert into table_A (select current record)
Instead of having to use the VALUES syntax (the table has ALOT of columns)
Pretty much my purpose is to get the the table to re-fire an insert trigger (trigger needed to be disables during the intial load).... so now I am making a backup table and copying the records in one by one , commiting each to get the trigger to complete for each row (the trigge fills other tables etc).
Any suggestions (and yes, I am in the manuals, but they only showing thus far the VALUES syntax).....
Thanks,
Hannah
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: INET: johanna.doran_at_sungard.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-LReceived on Thu Aug 01 2002 - 12:33:56 CDT
(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: Lakhani, Vipul INET: LakhaniV_at_uk.tigplc.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: INET: Chaim.Katz_at_Completions.Bombardier.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).
![]() |
![]() |