Length of asset name in asset listing

I got some assets that have extremely long asset short names.
When they are listed by asset listing their names are cut to 245 chars.

Is there a way to increase that length?

The database schema only allows names and short names to be 255 chars max. You can't change that without changing the DB schema.


If you have asset names longer than 255 chars, you could instead print the name attribute, which has a much larger limit. You'd use the keywords asset_attribute_name to access it directly. Or you can use metadata to store longer descriptions of assets instead of the name/short name fields.

Thanks, Greg.