Hi ,
We're using Oracle 12c.
We dropped and recreated a Primary Key (PK) Constraint. using the following:
alter table table_name add constraint constraint_name primary key (col1, col2, col3)
enable novalidate;
There was already a PK Index there from the previous PK constraint. It looks like it created an additional PK index.
Was that because we didn't specify "USING INDEX" in the ALTER statement?
So in other words does creating a PK Constraint automatically create a PK Index, even if a PK Index already exists, if you don't specify "USING INDEX" in the ALTER statement?