| Numéro d’ID de bogue |
BUG-000163789 |
| Envoi | December 15, 2023 |
| Dernière modification | June 5, 2024 |
| S’applique à | ArcGIS Pro |
| Version trouvée | 3.1.1 |
| Système d’exploitation | Windows OS |
| Version du système d’exploitation | 10.0 64 Bit |
| Statut | Non-Reproducible
Ce problème n’a pas pu être reproduit au cours des tests réalisés par l’équipe de développement. Ce statut peut être attribué aux problèmes qui sont impossibles à reproduire ou qui ne sont plus d’actualité dans une version de développement du logiciel, alors qu’aucun correctif spécifique n’a été installé pour résoudre le problème. Pour d’autres explications, reportez-vous à la section Informations supplémentaires correspondant au problème.
|
Informations supplémentaires
This issue is not reproducible.
Solution de contournement
- Check if the base id in i7 is equal to an existing ObjectID under the GDB_ITEMRELATIONSHIPS table.
- Set the base id in the i7 table to have a value larger than the maximum existing ObjectID in the GDB_ITEMRELATIONSHIPS table by using the following query :
BEGIN TRANSACTION;
UPDATE i7 SET base_id = (SELECT MAX(ObjectID) + 1 FROM GDB_ITEMRELATIONSHIPS);
UPDATE i7 SET last_id = base_id - 1;
END TRANSACTION;
Étapes pour reproduire