Export DDL from a Caché class
I need to generate a DDL file from a .cls class that already exists, the idea is to create a mirror table in SQL. Is it possible to do this export or do I need to do the CREATE TABLE manually?
Product version: Ensemble 2018.1
Will an undocumented command suit you?
Yes
See the sources of method %SYSTEM.SQL:Export() for a description of the parameters.
Only instead of 0, use 1, for example:
I managed to export with the command. Thank you very much!