I have a table created by Surevy 123 that has ended up with a duplicate row in it -- That's a separate issue.
I can go the ArcGIS REST Services Directory for the specific Layer -
I can QUERY the Table and list the Duplicate ROWS with the globalId and ObjectId of each duplicate.
But, if I go then go to the DELETE FEATURES and specify WHERE GLOBALID = {ID FROM QUERY}.
I get back an error indicating invalid QUERY. I also tried specifying both the OBJECT ID and GLOBALID from the QUERY but had the same result. Note I also checked the Table settings and the Delete capability is active.
TIA --
Solved! Go to Solution.
Are you including single quotes around your Global ID? The query should be something like this:
GLOBALID = '00000000-0000-0000-0000-000000000000'
Are you including single quotes around your Global ID? The query should be something like this:
GLOBALID = '00000000-0000-0000-0000-000000000000'
No, I probably wasn't. Will try that on Monday..
Thank you --