データベースリンク OracleサーバーからMySQLサーバーへ。
データベースリンクが確立されると、標準のinsert into.. select from
を使用できます。 構文
insert into my_oracle_table
select * from [email protected]
where date > sysdate - 7;
これをスケジュールに基づいて実行する場合は、ジョブスケジューラ を使用します。 転送をスケジュールします。
データベースリンク OracleサーバーからMySQLサーバーへ。
データベースリンクが確立されると、標準のinsert into.. select from
を使用できます。 構文
insert into my_oracle_table
select * from [email protected]
where date > sysdate - 7;
これをスケジュールに基づいて実行する場合は、ジョブスケジューラ を使用します。 転送をスケジュールします。