T
tristant
Hi all,
I am designing DB model for Oracle 9i using Visio for enterprise architect ,
when I generate the script, I get this script :
create table ISTRI_P (
SI_PNSNIP CHAR(9) not null,
SI_POSISI CHAR(1) not null,
SI_TGLNIK DATE null, constraint ISTRI_P_PK primary key (SI_PNSNIP,
SI_POSISI) )
;
I have to add manually this additional clause : TABLESPACE APP01;
When I create Index I need to add this code :
LOGGING TABLESPACE IDX01;
When I create Primary key I need to add this clause :
USING INDEX
TABLESPACE IDX01;
How can I make visio automatically generate this additional clause for the
DDL ?
Thank you for your help,
xtanto
I am designing DB model for Oracle 9i using Visio for enterprise architect ,
when I generate the script, I get this script :
create table ISTRI_P (
SI_PNSNIP CHAR(9) not null,
SI_POSISI CHAR(1) not null,
SI_TGLNIK DATE null, constraint ISTRI_P_PK primary key (SI_PNSNIP,
SI_POSISI) )
;
I have to add manually this additional clause : TABLESPACE APP01;
When I create Index I need to add this code :
LOGGING TABLESPACE IDX01;
When I create Primary key I need to add this clause :
USING INDEX
TABLESPACE IDX01;
How can I make visio automatically generate this additional clause for the
DDL ?
Thank you for your help,
xtanto