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