Skip to main content

How do I add alias names to a table. I have a lookup csv file and a table with over 180 columns so don't want to add them in manually. I just don't know how to get the alias names into my table

I think you want to add aliases to columns in an existing ESRI featureclass? The best way to go is probably using Python. See ESRI's documentation.

import arcpy
 
arcpy.AlterAliasName('c:/city/Boston.gdb/SnowReport', 'Snow Report')

If you want to add aliases to a new featureclass you can use this FME article.

 


Reply