19 lines
272 B
SQL
19 lines
272 B
SQL
SPOOL alter_rules.lst
|
|
|
|
alter table RULES
|
|
add constraint RULE_NAME_UK unique (RULE_NAME)
|
|
using index
|
|
tablespace USERS
|
|
pctfree 10
|
|
initrans 2
|
|
maxtrans 255
|
|
storage
|
|
(
|
|
initial 64K
|
|
minextents 1
|
|
maxextents unlimited
|
|
)
|
|
/
|
|
|
|
SPOOL OFF
|