Oracle SQL Developer - How to remove double quotes in generated DDL -
i using oracle sql developer 3.0. when script out bonuses table under dept schema, example, produces ddl.
create table "dept"."bonuses" ( "new_employee_id" number, "bonus" number default 100 ) ;
i don't want double quotes included. have looked through tools -> preferences , not able find setting turn if "off". possibe suppress quotes , know how this?
thank you, sydney
try this:
right click table , select "edit"
click "ddl"
choose "create"
this different selecting "sql" tag on right panel, no double quotes or schema name added.
i using sql developer 3.2
Comments
Post a Comment