Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Oracle SQL Developer - How to remove double quotes in generated DDL

I am using Oracle SQL Developer 3.0. When I script out the BONUSES table under the DEPT schema, just as an example, it produces this DDL.

CREATE TABLE "DEPT"."BONUSES" 
(   "NEW_EMPLOYEE_ID" NUMBER, 
    "BONUS" NUMBER DEFAULT 100
) ;

I don't want the double quotes to be included. I have looked through Tools -> Preferences and am not able to find a setting to turn if "off". Is it possibe to suppress the quotes and does anyone know how to do this?

Thank you, Sydney

like image 734
sydney Avatar asked Apr 25 '26 02:04

sydney


1 Answers

Try this:

  1. Right click your table and select "Edit"

  2. Click "DDL"

  3. Choose "Create"

This is different from selecting the "SQL" tag on your right panel, you get no double quotes or schema name added.

I am using SQL Developer 3.2

like image 128
Victor HDC Avatar answered Apr 27 '26 21:04

Victor HDC



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!