Quote:
Originally posted by sengchoon
What is the purpose of "set constraints for "table" enabled you've mentioned. And also what is the purpose "with distributions" means? Actually, I'm still beginner in this term.
|
Hi,
Ok, for example:
create table xxxx
( col1 smallint not null primary key pk_col1 disabled,
col2 integer,
.......
)
This create the table with the primary key but not create the index.
Next you can load data and next enabled the primary key, then now the index is created.
During load of data, none index is used, then load fastest.
Gustavo.