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'; INSERT INTO x SELECT * FROM [EMAIL PROTECTED]; COMMIT; INSERT INTO xxx SELECT * FROM [EMAIL PROTECTED]; COMMIT; end; -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: INET: [EMAIL PROTECTED] 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: [EMAIL PROTECTED] (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).
