Ive got Following code:
CONSTRAINT PK_I_TBOWXXX PRIMARY KEY(I_RID) USING INDEX TABLESPACE Index_Data,
CONSTRAINT UK_I_TBOWXXX UNIQUE(I_CID, ID) USING INDEX TABLESPACE Index_Data
and i want it to fomat like this:
CONSTRAINT PK_I_TBOWXXX PRIMARY KEY (I_RID) USING INDEX TABLESPACE Index_Data,
CONSTRAINT UK_I_TBOWXXX UNIQUE (I_CID, ID) USING INDEX TABLESPACE Index_Data
can I use tabs for this without worrying about errors?
Or should i use spaces / should i just keep it like that?
It should work on 10g and 11g!
