MSCEWI3037

Using Index constraint state removed from the constraint.

triangle-exclamation

Severity

Low

Description

USING INDEX statement is removed from the CONSTRAINT declaration.

Example Code

Input Code:

CREATE TABLE "MyDb"."MyTable"
(
    "COL1" NUMBER,
    CONSTRAINT "ConstraintMyTable" PRIMARY KEY ("COL1")
        USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
        STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
        PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1) ENABLE
);

Output Code:

Recommendations

Last updated