2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

8
vdh/test_pxq_hint.sql Normal file
View File

@@ -0,0 +1,8 @@
-- this should cause queueing, but the hinted statements in test_pxq_hint2.sql should jump the queue
alter system set "_parallel_statement_queuing"=true;
alter system set parallel_force_local=true;
alter system set parallel_servers_target=32;
!ss.sh test_pxq_hint1.sql 10 kso/kso
!ss.sh test_pxq_hint2.sql 2 kso/kso
-- select /*+ parallel (a 16) */ avg(pk_col) from kso.skew a where col1 > 0;
-- select /*+ NO_STMT_QUEUING parallel (a 16) */ avg(pk_col) from kso.skew a where col1 > 0;