/
How to retrieve all table configurations using SQL
How to retrieve all table configurations using SQL
During a support session we needed to retrieve all field configurations in one go. So we use SQL to extract the data directly from the database
SQL for MySQL
SELECT customfield.id, customfield.cfname, f.id, f.fieldid, g.datakey, g.xmlvalue
FROM customfield
JOIN fieldconfiguration f ON f.fieldid = concat('customfield_',customfield.id)
join genericconfiguration g on g.datakey = f.id
where g.xmlvalue like '%gd.columns%'
, multiple selections available,
Related content
Driving Tables - configuration
Driving Tables - configuration
More like this
Migrating grids from the old gd.table property to the new gd.tablename property
Migrating grids from the old gd.table property to the new gd.tablename property
More like this
Table Grid Migration
Table Grid Migration
More like this
Multiple configuration contexts support
Multiple configuration contexts support
More like this
Datasource Specifications
Datasource Specifications
More like this
TGE Property Index
TGE Property Index
More like this