| 不具合 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>’;
再現の手順