Centralized repository in DBMS or SVN

前端 未结 4 1902
温柔的废话
温柔的废话 2021-01-13 12:41

I am working on setting up a centralized repository to store enterprise architect (from sparx systems) generated artifacts for the team of 6-8 people to use. Initially thoug

4条回答
  •  隐瞒了意图╮
    2021-01-13 13:36

    I agree, i have the same setup and environment.

    I have in my documents a code-snippet from the i-net. sorry i havent the source. But it's great to find all baselines in a root model or in a project:

    Find all Baselines in the DBMS STRG+F opens Model Search. Options --> Manage Searches --> Create new Search --> Name “Find all Baselines” --> Editor Type SQL-Editor. Paste this:

    SELECT t_package.ea_guid AS CLASSGUID, t_document.ElementType AS CLASSTYPE, t_package.Package_ID as ID, t_package.Name, t_package.Notes as PackageNotes, t_document.Notes as BaselineComments 
    FROM t_document INNER JOIN t_package ON t_document.ElementID = t_package.ea_guid
    

    Now you have a new search named (Find all Baselines), which is very comfortable!

提交回复
热议问题