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:

  1. right click table , select "edit"

  2. click "ddl"

  3. choose "create"

this different selecting "sql" tag on right panel, no double quotes or schema name added.

i using sql developer 3.2


Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -