I am currently migrating data from Sybase to SQL server 2005. I have clustered index
in Sybase. When I migrate data,with this index(migrate schema) below is result in output window in SSMA
-------------------------------------------------------------------------------------------------------
Migrating data...
Analyzing metadata...
Preparing table Prod002.dbo.dummyTable...
Preparing data migration package...
Starting data migration Engine
Starting data migration...
The data migration engine is migrating table 'Prod002.dbo.dummyTable':> NIC.dbo.dummyTable, 234 rows total
Cannot insert duplicate key row in object 'dbo.dummyTable'
with unique index 'dummyIndex'.
Errors: Cannot insert duplicate key row in object 'dbo.dummyTable'
with unique index 'dummyIndex'.
Completing migration of table Prod002.dbo.dummyTable...
Migration complete for table 'Prod002.dbo.dummyTable':> NIC.dbo.dummyTable, 0 rows migrated (Elapsed Time = 00:00:00:00:688).
Data migration operation has finished.
0 table(s) successfully migrated.
0 table(s) partially migrated.
1 table(s) failed to migrate.
-------------------------------------------------------------------------------------------------
If I remove unique index 'dummyIndex',
after migrate data the very first record in my first column in table is duplicating to all others records. How to solve this problem? See below for duplicate data.
Urgent help needed.
Thanks,
ckp