执行并行查询,一种在直接在表中设置,一种是在sql中增加hint:
(1) alter table table1 parallel 2;
(2) select /*+ parallel(t,2) */ * from table1 t;
通过select degree from user_tables t where t.table_name = 'TABLE1';可以查看对表设置的并行操作数量;
在有并行操作数量的表上执行完select 语句后,可以通过select * from v$px_process,查看进程池中的进程数,查看具体参与执行的操作系统进程(线程);
上面设置了并行为2,则sql执行完后,在表v$px_process将会有两个进程的记录!