Get out data from Oracle to load into to SQL 2K5

  • Hello,

    I have this job:

    I have to get out lots of data from Oracle Db (frequently at day, may be automatically/scheduled) and to load data to SQL Server 2005.

    SSIS is a good tool to do it (fast and good performance).

    Or using Bulk/bcp remain the best one?

    Thank

  • I would like to add that Oracle is on HP-Unix server.

    Thank any help will be very appreciated.

    Thank

  • Link Oracle db to the link servers in SQL 2K2 and use openrowset function.

    select into [tableSQL2k5] from openrowset(ORACLE_DB, select * from

    );

     

     

     

  • Openrowset may be interesting, but because of etherogeneous systems and diffrent tables in not applicable.

    I need to extract data from some tables in ORACLE that are in structure different from SQL 2K5 one.

    So I have to transform them before loaded to SQL 2K5.

    Any help will be very appreciated.

     

    Thank

  • Hello,

    anybody work with Oracle and SQL server 2005 to move data?

    Any experiences to help me?

     

    Thank

Viewing 5 posts - 1 through 4 (of 4 total)

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