Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am wondering if there is a way to replicate an oracle table over to a sql server table. Both servers are on the same network. I would like to have this automated perhaps using a stored procedure on the sql instance. Is there any way to do this automatically? Or can anyone point me to a good sql script to connect to an oracle db server and export a table file? thanks in advance!

-Matt

share|improve this question

3 Answers 3

You could use an Oracle linked server on SQL-Server. In this way you would use the Oracle data directly from SQL-server.

Take a look at this tutorial: http://blogs.msdn.com/b/dbrowne/archive/2013/10/02/creating-a-linked-server-for-oracle-in-64bit-sql-server.aspx

share|improve this answer
    
Thanks, I will take a look at that and get back to you about if it does what I need. –  user1700796 Jan 29 at 17:21

You can use the Import Data function located under Tasks when you right click on a database in SQL Server Management Studio. It will walk you through picking the Source, the Destination, and how the columns map to each other.

share|improve this answer

Look at this:

http://www.microsoft.com/en-us/download/details.aspx?id=28766

Maybe it should help you

share|improve this answer
    
Thanks, Ill take a look –  user1700796 Jan 29 at 17:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.