Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Field sizes do not appear in DDL

1979289Jan 31 2014 — edited Feb 2 2014

Despite using this to generate SQL Server data models, when I use domain fields whereby I have specified VARCHAR2(100 CHAR) for example, when I run Export DDL the script is generated with the field sizes missing for Oracle databases (11g). This makes it almost useless.

CREATE TABLE MDWH.PARTITION_KEY

  (

    PARTITION_KEY VARCHAR2 NOT NULL ,

    REPORTING_DATE DATE

  ) ;

CREATE UNIQUE INDEX MUSI_MDWH.PK_PARTITION_KEY ON MUSI_MDWH.PARTITION_KEY

  (

    PARTITION_KEY ASC

  )

  ;

  ALTER TABLE MUSI_MDWH.PARTITION_KEY ADD CONSTRAINT PARTITION_KEY_PK PRIMARY KEY ( PARTITION_KEY ) ;

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 2 2014
Added on Jan 31 2014
3 comments
1,631 views