快速创建主键

来源:互联网 发布:淘宝客数据采集工具 编辑:程序博客网 时间:2024/06/16 09:17

create unique index test_idx on test (col1,col2 ) nologging parallel(degree 8);


alter index test_idx noparallel logging;


alter table test   add constraint test_constraint primary key (col1, col2)   using index;

原创粉丝点击