I am trying to convert and migrate an Oracle schema to MSSQL server. At the last step, migrating data, I get the error message:
The table [MYDATABASE].[MYSCHEMA].MYTABLE] doesnot exist in target. You must first convert the table then load it into the database.
This error message appears for each table in my schema.
Can someone explain what is happening and what I need to do to get past this?
Are you tries to migrate the data before doing the ‘synchronize with the database’ operation?
If Yes,
This error message generally occurs when the target table doesn’t exist on SQL server database. After
converting schema
, you need tosynchronize the table with the database before migrating the data
.To do this you
right click
on theSQL Server database
inMetadata explorer
and click“Synchronize with database”
menu.
Note: Table structure will not be created in the SQL server database until you synchronize.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With