Book a Demo

Author Topic: Is there an easy way to remove version control?  (Read 2505 times)

masalcedo74

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Is there an easy way to remove version control?
« on: August 12, 2010, 02:35:02 pm »
I know there is an easy way to add version control to a model through the "Add Branch to Version Control" option, but...

Is there an easy way to do the opposite: remove version control from a model? (I have more than 800 packages, and removing version control one by one is too frustrating  :)

Thanks in advance


Geert Bellekens

  • EA Guru
  • *****
  • Posts: 13523
  • Karma: +574/-33
  • Make EA work for YOU!
    • View Profile
    • Enterprise Architect Consultant and Value Added Reseller
Re: Is there an easy way to remove version control
« Reply #1 on: August 12, 2010, 03:11:12 pm »
Look into table t_package columns XMLPath, IsControlled and PackageFlags
A simple update query to those columns should do the trick (just be careful to make sure you don't break anything  ;))

Geert

masalcedo74

  • EA Novice
  • *
  • Posts: 2
  • Karma: +0/-0
    • View Profile
Re: Is there an easy way to remove version control
« Reply #2 on: August 12, 2010, 03:23:13 pm »
Thank you very much. I'll try your proposed solution.