I'm working with 26 GPKG files, each containing around 200 columns. These column names are often lengthy and include special characters like parentheses or slashes. I selected the GPKG format because it can handle long column names, but when I try to host these layers, portions of the column names are truncated after a certain character limit.
Additionally, I'm encountering error 000260 when trying to host GPKG files with parentheses or slashes. A workaround I found was to number the columns instead of using descriptive names, but this isn't ideal. I also tried manually renaming columns with the special characters and that worked, but manually renaming 5,000 columns is impractical.
Is there a way to host these files without losing the column names?
As a last resort, I could potentially modify my Python ETL script to rename the columns after hosting the web map?