| 漏洞 ID 编号 |
BUG-000132349 |
| 已提交 | July 17, 2020 |
| 上次修改时间 | January 12, 2026 |
| 适用范围 | ArcSDE/Enterprise Geodatabase |
| 找到的版本 | 10.7.1 |
| 操作系统 | Windows OS |
| 操作系统版本 | 10.0 64 Bit |
| 状态 | Duplicate
此问题与现有问题重复。 有关详细信息,请参阅问题的“其他信息”部分。 与重复问题关联的客户将自动附加到未解决的问题。
|
附加信息
Duplicate of BUG-000172096.
解决办法
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>’;
重现步骤