Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> (no subject)
hi,
can i use a database link inside a procedure to refresh data from a AS/400 system into oracle ??
this is the sample of the code that i am using ... and it hangs endlesly...
CREATE OR REPLACE PROCEDURE PRC_TABLE_REFRESH AS BEGIN
execute immediate 'alter session set global_names=false'; execute immediate 'TRUNCATE TABLE x'; execute immediate 'TRUNCATE TABLE yy'; execute immediate 'TRUNCATE TABLE xxx';
--
Please see the official ORACLE-L FAQ: http://www.orafaq.net
--
Author:
INET: Sunil.Kumar.Gompa_at_ercgroup.com
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------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 Thu Feb 13 2003 - 21:28:41 CST