Those options should work:
.export data file = xxx
.recordmode off
.foldline all
And split the string in two columns:
SELECT
'DROP TABLE DB.' || TABLENAME || ' ;',
CASE WHEN ROW_NUMBER() OVER (ORDER BY TABLENAME) MOD 25 = 0
THEN '.HANG 10;' ELSE ' ' END
FROM DBC.TABLES
Dieter
↧