| Número de ID do Erro |
BUG-000163789 |
| Enviado | December 15, 2023 |
| Última Modificação | June 5, 2024 |
| Aplica-se à | ArcGIS Pro |
| Versão encontrada | 3.1.1 |
| Sistema Operacional | Windows OS |
| Versão do Sistema Operacional | 10.0 64 Bit |
| Status | Non-Reproducible
Esse problema não foi reproduzível quando testado pela equipe de desenvolvimento. Os problemas podem receber esse status quando não podem ser reproduzidos ou não são mais relevantes em uma versão de desenvolvimento do software, mas uma correção específica não foi instalada para resolver o problema. A seção Informações Adicionais do problema pode conter mais explicações.
|
Informações Adicionais
This issue is not reproducible.
Solução Provisória
- 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;
Etapas para Reproduzir