11

What are the rules for naming valid feature classes and tables in ArcGIS Desktop, and is there any supporting document which can explain all the dataset naming limitations?

PolyGeo
  • 65,136
  • 29
  • 109
  • 338
iRfAn
  • 1,914
  • 13
  • 18

3 Answers3

20

It's in the documentation: Defining feature class properties

Specifically:

Names must begin with a letter, not a number or special character such as an asterisk (*) or percent sign (%). Names can't have any characters other than alphanumeric characters and underscores.

Derek Swingley
  • 14,462
  • 2
  • 44
  • 63
7

This question has been answered by Swingley above... But, in terms of automating this procedure, you could write a script that implements the IFieldChecker.ValidateTableName method. If i remember correctly it returns a corrected name with invalid characters replaced with underscores.

Jakub Sisak GeoGraphics
  • 20,294
  • 20
  • 104
  • 180
  • I am aware of validateTableName but here is my situation, i have shape files "1-Digit postcode.shp, 2-digit postcode.shp" and when i use validateTableName on these two shape file i will get result for both "_Digit_postcode.shp". I think i need to write my own function for this table name validation. – iRfAn Mar 03 '11 at 08:18
  • it's been a whole so correct me if i am wrong but if you use the workspace parameter, you should in fact get "_Digit_postcode.shp" and "_Digit_postcode_1.shp" – Jakub Sisak GeoGraphics Mar 04 '11 at 13:04
0

Since ArcGIS 10.3, there is an arcpy function ValidateTableName:

Takes a table name and a workspace path and returns a valid table name for the workspace. An underscore "_" will replace any invalid character found in the table name and will honor the name restrictions for the workspace. The table name restrictions depend on the specific RDBMS used.

Alex Tereshenkov
  • 29,912
  • 4
  • 54
  • 119