Dear All,
Of late, I am having tough time with this one.
I have below query whihc returns locks information.
select table_registry.table_name,
table_locks.sde_id,
table_locks.registration_id,
process_information.owner as ProcessOwner,
process_information.start_time,
process_information.server_id,
table_registry.owner as TableOwner
from sde.table_locks table_locks,
sde.table_registry table_registry,
sde.process_information process_information
where table_locks.registration_id = table_registry.registration_id
and table_locks.sde_id =process_information.sde_id;
With the result from above, I am trying to KILL the process using sdemon as shown below:
sdemon -o kill 42345 -p sde -N
where 42345 is process id,
sde is sde admin password.
But i get below error:
'Invalid DBA password!'
i have also tried giving that account 'alter symbol' privileges. But same error.
Please help!!.
Regards
Muzammil