I recently started getting the following error:
I've made no changes to my data that I can think of and I can't find any reference online to this error. Anyone have some resources to point me towards?
Hi Levi,
We have seen this error before with spatial index corruption.
Try following workflow:
1. In SQL Server Management Studio, run the below query as "dbo" or "sa" user to find the Object_id of the problematic feature class.
select * from sys.indexes where name = ‘S4717_idx’;
2. Then use object_id to identify the feature class:
select * from sys.objects where OBJECT_ID= 'xyz';
3. Rebuild the spatial index for that feature class.
Thanks,
Biraja
i have a smilar problem, How was did you solved this problem?
Angemeldete Mitglieder können Beiträge verfassen, Updates folgen und mehr. Neu hier? Registriere ein kostenloses Konto.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.