How To Convert Oracle Database to SQL Server Database

  • Hi Folks

    does anyone have a white paper, instructions, ideas, or blogs on where to start on converting an entire Oracle database to an Sql Server database, or even just particular database tables(s) ?

    Thanks

    Jim

  • Micrsofot has a couple of Migration Assistant tools to help you migrate Oracle to SQL Server (and another one for MYSQL to SQL Server)

    http://www.microsoft.com/sqlserver/2005/en/us/migration-oracle.aspx

    another alternative, if it is just a few tables, is to create a linked server. once the linked server is up and running, you can query the table, and do something as simple as SELECT *

    INTO MyNewSQLTable from MyLinkedOracle..OwnerName.TableName

    Lowell


    --help us help you! If you post a question, make sure you include a CREATE TABLE... statement and INSERT INTO... statement into that table to give the volunteers here representative data. with your description of the problem, we can provide a tested, verifiable solution to your question! asking the question the right way gets you a tested answer the fastest way possible!

  • Thanks Very Much Lowell

    I wil check it out

    Jim

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply