Data Migration From Oracle To SQL Server

馋奶兔 提交于 2020-01-06 08:16:10

问题


I have an Oracle database in which there is one or more table. I also have blob data, i.e. images are stored, now I would like to move that data to Sql Server database. What is the best way to do this?

I would like to test it for one table migration which contains image data in the Oracle database and move it into SQL Server table.

How do I test for migrating data from one table from Oracle to SQL Server?

But first thing I would like to confirm is that whether Image data moving from Oracle DB to SQL Server DB is possible, is there anything that has to be taken care of while migrating ?


回答1:


I'd recommend having a look at SQL Server Integration Services (SSIS).

SSIS is a ETL (Extract, Transform and Load) tool built for Data Warehousing, but it's also great for migrating data. It basically replaces the old SQL Server Data Transformation Services (DTS), and is a robust and fast-performing tool allowing you to move data from one system to another (which includes Oracle), while giving you the ability to transform data where necessary.

It also has work-flow capabilities, allowing you to set up an execution path (i.e. load client data prior to loading invoice data).

While building up the individual steps, you can easily have a look at the data coming in and flowing through the different objects you set up.

Best of all is that if you run at least SQL Server Standard Edition, SSIS basically comes with it for free.

Lastly, regarding the question about images, blobs are just blobs. Streams of binary data. I haven't tried migrating images from one to the other, but I see no reason why it would not work.



来源:https://stackoverflow.com/questions/13133378/data-migration-from-oracle-to-sql-server

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!