1
Automation Interface, Add-Ins and Tools / Re: How to "Apply / Release User Lock" ?
« on: February 26, 2008, 01:46:32 am »
Hello Geert Bellekens,
the API don't support these desired features.
I solved the problem using folowing update and insert statements on our oracle database repository:
the API don't support these desired features.
I solved the problem using folowing update and insert statements on our oracle database repository:
Code: [Select]
UPDATE t_seclocks s SET s.USERID = '<USERGUID>', s.TIMESTAMP = to_date('<DATETIME>','DD.MM.YYYY HH24:MI:SS') WHERE s.ENTITYID = '<EA_GUID>';
INSERT INTO t_seclocks l (l.USERID, l.ENTITYID, l.ENTITYTYPE, l.TIMESTAMP) VALUES ('<USERGUID>', '<EA_GUID>', 'Element', to_date('<DATETIME>', 'DD.MM..YYYY HH24:MI:SS'));