In PowerDesigner 16.5, how do I format my generated SQL from a table so I can get from this:
with
(
appendonly = true,
compresslevel = 1,
orientation = column,
compresstype = quicklz,
blocksize = 65536
)
to this:
with ( appendonly=true, compresslevel=1, orientation=column, compresstype=quicklz, blocksize=65536 )
I assume I need to edit the DBMS somewhere, but I don't know where.
Marty