AlterAliasName (arcpy)
Summary
Updates the alias name for a table or feature class.
Syntax
AlterAliasName (table, alias)
| Parameter | Explanation | Data Type | 
| table | Input table or feature class. | String | 
| alias | The new alias name. | String | 
Code Sample
AlterAliasName example
Updates the alias name for a newly created table.
import arcpy
arcpy.CreateTable_management('c:/city/Boston.gdb', 'SnowReport')
arcpy.AlterAliasName('c:/city/Boston.gdb/SnowReport', 'Snow Report')
3/3/2014