I'm trying to move production CRM MSSQL data to another server (server 2). Server 2 already has most of the data after a restore I did from the production data backup a few months ago. The problem is that I don't want the SQL users to be overwritten, since I made changes to them on server 2. I just want the data in the tables. I think this rules out a backup and restore approach.
I was thinking of using the "generate scripts" option for just the tables, but the script seems to fail with a syntax error, or pretty much all of the commands get skipped because of foreign and primary key constraints. I'm executing the script using sqlcmd.
I tried to save the sql users from server 2 using the script generation, but when I import them back into server 2 after restoring production data, they don't seem to work, since the CRM starts giving user-related errors.
CRM Data migration tool crashes the server when I try to export the data, likely because there's too much data for it to handle.
Both servers use SQL2012.
Do you have any suggestions on how to migrate the production data into the sql database on server 2, while keeping the sql users at the destination untouched?
*This post is locked for comments