Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Example of pl/sql
Actually, TRUNCATE is DDL so you can't just issue it in PL/SQL. You'd need to use dbms_sql to issue the truncate.
-----Original Message-----
Sent: Friday, April 06, 2001 7:46 AM
To: Multiple recipients of list ORACLE-L
If you are asking about a code,
Probably
Begin
TRUNCATE ...
INSERT INTO ....
COMMIT
END
In practical this is used for temporary tables I don't know if there is any
other use.
HTH! Aleem
-----Original Message-----
Sent: Friday, April 06, 2001 2:10 PM
To: Multiple recipients of list ORACLE-L Subject: Example of pl/sql
Anyone who has a good example on a procedure that first deletes all the
records in a table and then
does an insert?
Roland S
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author:
INET: Roland.Skoldblom_at_ica.se
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).
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).
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 Mon Apr 09 2001 - 14:19:04 CDT
![]() |
![]() |