Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Example of pl/sql
That ersion of truncate will not work because one cannot execute DDL commands (what "TRUNCATE" is) from PL/SQL. Here is a code snippet that you can try which has the "TRUNCATE" in it:
declare
cursor csr is select 'truncate table '||table_name trunc from user_tables;
begin
for c in csr
loop
execute immediate c.trunc;
end loop;
end;
/
This code snippet will truncate all of the tables owned by the user who
executes it
and it will work on 8i only ("EXECUTE IMMEDIATE")
-----Original Message-----
Sent: Monday, April 09, 2001 4:51 PM
To: Multiple recipients of list ORACLE-L
If you don't want to do a truncate,
delete from my_table;
insert into my_table values(1,2,3);
commit;
>>> JayMiller_at_TDWaterhouse.com 04/09/01 04:24PM >>> 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).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: William Beilstein
INET: BeilstWH_at_obg.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).
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 - 17:04:19 CDT
![]() |
![]() |