Book a Demo

Author Topic: Oracle - loosing tagged value on element attribute  (Read 3499 times)

Stevo74

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
    • View Profile
Oracle - loosing tagged value on element attribute
« on: March 19, 2010, 10:36:15 pm »
EA Program Version 7.5.849
There is a horrible bug in EA.  with loosing tagged values on element attribute.
When you add tagged vaue on element attribute,
and then you change anything on element attribute (f.e. switch not null),  yor tag will be loost.

With using MSSQL repositary it works OK.

Try this selects on Oracle repositar and on MSSQL repository

--TAGGED VALUE
select ELEMENTID, property, value
from T_ATTRIBUTETAG
order by 1 desc

--ELEMENT ATTRIBUTE
select id, object_id, name
from T_ATTRIBUTE
order by 1 desc
-- I found that change of anything on attribute causes DELETE attribute
-- and INSERT new attribute.

And Enterprise architect can not find tagged value for new element ID

select a.*, b.*
from T_ATTRIBUTETAG a,
T_ATTRIBUTE b
where a.elementid = b.id

After we run project integrity check with result : exists attribute tags for deleted attributes.


Thanks,