| Bug ID Number |
BUG-000163789 |
| Submitted | December 15, 2023 |
| Last Modified | June 5, 2024 |
| Applies to | ArcGIS Pro |
| Version found | 3.1.1 |
| Operating System | Windows OS |
| Operating System Version | 10.0 64 Bit |
| Status | Non-Reproducible
This issue was not reproducible when tested by the development team. Issues may be given this status when they cannot be reproduced or are no longer relevant in a development version of the software, but a specific fix was not installed to address the issue. The issue's Additional Information section may contain further explanation.
|
Additional Information
This issue is not reproducible.
Workaround
- 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;
Steps to Reproduce