Moving Data from SQL Server to Oracle Repeatedly

前端 未结 6 1666
滥情空心
滥情空心 2020-12-14 22:19

What are the most reasonable ways to move table data from SQL Server to Oracle (on *nix) on a regular basis?

6条回答
  •  遥遥无期
    2020-12-14 22:55

    Create a database link from Oracle to Sql Server (heterogeneous connectivity). You can use this link to retrieve the data from Sql Server with a simple select statement. If you want to schedule you can use a materialized view or dbms_scheduler.

    An alternative is to put your data in a csv file, you can use an external table or sqlloader to load this data in the Oracle database.

提交回复
热议问题