Author Topic: Office repo sync  (Read 2068 times)

amitbajaj

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Office repo sync
« on: February 27, 2020, 04:36:08 pm »
what is the best way to sync a repository hosted on a central SQL Server database with a local EAPX file without deleting the entire target copy (basically looking for a merge option where changes done in a local EAPX (which was created as full export from SQL Server using Project Transfer option) can be merged on the central database without deleting it completely)

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8083
  • Karma: +118/-20
    • View Profile
Re: Office repo sync
« Reply #1 on: February 27, 2020, 05:15:09 pm »
The best way is to avoid it in the first place.

If that's not possible, baseline the package when it's imported to the EAPX before any changes are made (See Merge Package with XMI Using Merge File)

If that's still not possible, export the EAPX model as XMI 1.1 (or baseline it) then do a manual compare and merge to the export on the SQL Server model. See Manage Baselines in Model

amitbajaj

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: Office repo sync
« Reply #2 on: February 27, 2020, 08:02:25 pm »
Thank you Eve.