I have to move my Enterprise GDB to a new server (both Microsoft SQL).
In the old database, I used traditional versioning and had archiving enabled. In the new database, I switched to branch versioning.
I would like to port my old archives.
I could copy the Database.DataOwner.Table_H tables to the new database, but this way, the old archive and the data would be separated and I would clutter my pristine workspace.
So I want to copy the rows of the old archive tables into the new tables.
As I see it, the field mapping would be
New branch versioned table | Old archive table |
GDB_FROM_DATE | GDB_FROM_DATE |
GDB_IS_DELETE | 1 (the current entries are already there, so only copy rows where GDB_TO_DATE < '9999-12-31') |
GDB_DELETED_AT | GDB_TO_DATE |
GDB_DELETED_BY | last_editor |
GDB_BRANCH_ID | ??? |
My questions are: