| Bug ID Number |
BUG-000132349 |
| Submitted | July 17, 2020 |
| Last Modified | January 12, 2026 |
| Applies to | ArcSDE/Enterprise Geodatabase |
| Version found | 10.7.1 |
| Operating System | Windows OS |
| Operating System Version | 10.0 64 Bit |
| Status | Duplicate
The issue is a duplicate of an existing issue. See the issue's Additional Information section for details. Customers associated with the duplicate issue are automatically attached to the open issue.
|
Additional Information
Duplicate of BUG-000172096.
Workaround
The pg_terminate_backend command should kill the connections automatically. However, to manually remove the connections and the locks from sde, use the following:
- Query the sde_process_information table: select * from sde_process_information.
- Note the orphaned connection “sde_id” value.
- Run the following queries:
- Remove the connection from SDE: delete from sde_process_information where sde_id = ‘<sde_id>’
- Remove any orphaned state locks: delete from SDE_state_locks where sde_id = ‘<sde_id>';
- Remove any orphaned table locks: delete from SDE_table_locks where sde_id = '<sde_id>';
- Remove any orphaned object locks: delete from SDE_object_locks where sde_id = '<sde_id>';
- Remove any orphaned layer locks: delete from SDE_layer_locks where sde_id = ‘<sde_id>’;
Steps to Reproduce