Option #1Run DBTOOL against the database to fix up the SQL widths in order to avoid the max length / precision error. DBTOOL will fix up VARCHAR and VARBINARY columns.
Option #2Query one of the the built-in system Views via SQL to obtain table information, e.g.
SELECT * FROM sysprogress.systablesThe following Views are available and provide data from _File:
| View | Description |
|---|
| SYSPROGRESS.SYSTABLES | Contains one row for each table in the database. |
| SYSPROGRESS.SYSTABLES_FULL | A superset of information in the SYSTABLES core system table. |