English Version Neste post escrevo sobre gestao manual do do DOP ( Degree of Parallelism). A gestao do paralelismo pode ser feita manualmente de 3 formas : 1 - Paralelismo ao nivel da Sessao ALTER SESSION ENABLE | DISABLE | FORCE Parallel QUERY | DML | DDL 2 - Paralelismo ao nivel do Objecto create table my_tab(i number) parallel 5 ; alter table my_tab p arallel 10 ; select table_name, degree from dba_tables where table_name = 'INDX_P_5'; -- tabelas particionadas - -- aplica- se ano nivel da tabelas nao das particoes -- Table IOT create table my_iot_tab( i parallel key ) organization index parallel; -- index create index indx_p_5 on Tabela (i) Parallel 5 ; alter index indx_p_5 Parallel 10 ; select index_name, degree from dba_indexes where index_name = 'INDX_P_5'; 3 - Paralelismo Hints * tem precedencia sobre todos as outras opcoes (MANUAL ou AUTO) ...