Data migration from sql to oracle

  • I have transferred one table from sql server 2008 r2 to oracle 11g. using import export wizard.

    all permissions in oracle are set proper. while exporting it shows me records are transferred.

    then I connected to oracle & search my transfer table using select * from tab;

    It shows me table is there but when I want to see data using select * from mytable_name;

    then it gives me an error that "table or view doesnot exist".

    I tried to build an SSIS package & transferred table but same thing happen.

    DBA permission is assigned to oracle user.

    Please help me why I can't see table in oracle, if SQL shows "rows are transferred".

  • Can you see the table from a linked server within SSMS?

    Joie Andrew
    "Since 1982"

  • This was removed by the editor as SPAM

  • Yes, I can see the table through linked server , but while accessing it gives me an error.

    Error:- The OLE DB provider "MSDAORA" for linked server "oracle" does not contain the table ""ggs_owner"."vd"". The table either does not exist or the current user does not have permissions on that table.

  • Check the version og Oracle you are using in both systems - that is whether it is 32-bit oracle client and a 32-bit SQL server or both systems are 64-bit.

    I believe the MSDAORA provider is for 32-bit systems. Good luck!:hehe:

  • I believe the MSDAORA provider is for 32-bit systems

    Speaking of MSDAORA, isn't that provider no longer supported? I thought it was meant only for Oracle 8i systems and below. It may be better to use the Oracle OLE DB provider.

    If you connect to the Oracle database with SQLPlus and run the following, what do you get:

    describe

    Joie Andrew
    "Since 1982"

  • as i remember it, MSDAORA is 32 bit, no longer supported, adn only works correctly on oracle 9 and below;

    10,11 and above changed the way they handle BLOB/CLOBS, and you get errors if you use that driver on tables containing that datatype.

    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!

Viewing 7 posts - 1 through 6 (of 6 total)

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