Moving Data from SQL Server to Oracle Repeatedly

前端 未结 6 1663
滥情空心
滥情空心 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条回答
  •  -上瘾入骨i
    2020-12-14 22:53

    Using SQL Server Integration Services (SSIS) is likely your best bet. If you're not familiar with SSIS, the best way to try something out is to use the SQL Server Export Wizard and have it create an SSIS package for you. For example, if you go into SQL Server Management Studio and right-click on your database, then select Tasks->Export Data. From there click next until you get to the "Choose a Destination" step. Select the "Microsoft OLE DB Provider for Oracle" and click Properties to define your database connection. When you click through the wizard, on the Save and Execute page, make sure you check the checkbox labelled "Save SSIS Package", on the next screen specify where to save the SSIS package. Once you finish the Export Wizard, your data will have been exported and you will have an SSIS package that you can use as is, or go in and tweak it to do more specific things. Once you have your SSIS package, you can schedule it by creating a SQL Server Agent Job.

提交回复
热议问题