Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Mailing Lists -> Oracle-L -> (no subject)

(no subject)

From: <Sunil.Kumar.Gompa_at_ercgroup.com>
Date: Thu, 13 Feb 2003 19:28:41 -0800
Message-ID: <F001.0054D2F2.20030213192841@fatcity.com>


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 user_at_dblink.world; COMMIT;
INSERT INTO xxx SELECT * FROM user_at_dblink.world; COMMIT;
end;

--

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

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US