Hi all,
Maybe a stupid question but is it possible to format Toad for Oracle 13 to have comma at beginning of the line in the Schema Browser, the Script Code?
Now I have like this:
CREATE TABLE ABC
(
COL_A NUMBER,
COL_B NUMBER,
COL_C DATE
)
I would like to have it like this:
CREATE TABLE ABC
(
COL_A NUMBER
,COL_B NUMBER
,COL_C DATE
)