| Numéro d’ID de bogue |
BUG-000132349 |
| Envoi | July 17, 2020 |
| Dernière modification | January 12, 2026 |
| S’applique à | ArcSDE/Enterprise Geodatabase |
| Version trouvée | 10.7.1 |
| Système d’exploitation | Windows OS |
| Version du système d’exploitation | 10.0 64 Bit |
| Statut | Duplicate
Le problème est le doublon d’un problème existant. Pour plus d’informations, reportez-vous à la section Informations supplémentaires correspondant au problème. Les clients concernés par le doublon du problème sont automatiquement associés au problème ouvert.
|
Informations supplémentaires
Duplicate of BUG-000172096.
Solution de contournement
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>’;
Étapes pour reproduire