I was also wracking my brain, and figured out I had a dbf file attached to my mxd. Once I removed that the error went away. Hope it helps someone!
We found the error to be related to a file (tif) that had a file attribute of AT. The problem was the T portion, which refers to "Temporary." To remove the temporary portion we ran a PowerShell script:
PS C:\> Get-childitem \Data -recurse | ForEach-Object -process {if (($_.attributes -band 0x100) -eq 0x100) {$_.attributes = ($_.attributes -band 0xFEFF)}}
This script removes the temporary from all files in the folder. Here is the link to the PowerShell solution:
Attrib - Edit file attributes | Windows CMD | SS64.com
I had the same error when attempting to publish from a shapefile data source that had # symbols in the attribute names. Just changing the field aliases didn't help - I had to move all the attributes to new fields without # symbols in the name and delete the old fields and then it worked.
Just today i found out that the use of a 9.3 personal database gives the same error. Converting your database to the newest version in catalog solves the problem.
I hope this helps some of you.
I saved my MXD, closed it, reopened, and then it published...not sure what the issue is either.
Did you ever find out what caused it in your case? I am stuck on this for weeks now...
Same situation here. Left the map open overnight, came in the next day to publish and error. Saved the map, closed it, immediately reopen and published without error. Had to be a network hiccup or something.
Thanks Frank for the tip... I had the same issue as Inga! And as soon as they were removed it uploaded!
I got this error as well and scrolled through this thread looking for a resolution. It seemed that I had renamed a feature classes attachments and relationship class and it was not happy with me. After blowing it away and re-enabling attachments, I was able to publish with no errors. Also, I was publishing as a hosted feature service on ArcGIS Portal, not ArcGIS Online.
Thanks for the wisdom Frank. A colleague had built a map and wanted it published. I had no idea a dbf file was there until I read your post. Thanks-a-ton.
Do you know how I could do this on ArcPro? Still new to navigating around in there. Thanks!
That's what worked for me as well, thanks Will Schulte.
Thank you for posting, or I would have never figured out my issue.
Přihlášení členové mohou přispívat, sledovat aktualizace a další. Jste tu noví? Zaregistrujte si bezplatný účet.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.