并行执行
select /*+ parallel(t1, 1) */ count(* ) from t1;
select /*+ parallel(t1, 2) */ count(* ) from t1;
select /*+ parallel(t1, 3) */ count(* ) from t1;
select /*+ parallel(t1, 4) */ count(* ) from t1;
用到时, 再确认吧
本文共 263 字,大约阅读时间需要 1 分钟。
select /*+ parallel(t1, 1) */ count(* ) from t1;
select /*+ parallel(t1, 2) */ count(* ) from t1;
select /*+ parallel(t1, 3) */ count(* ) from t1;
select /*+ parallel(t1, 4) */ count(* ) from t1;
用到时, 再确认吧
转载于:https://www.cnblogs.com/moveofgod/p/4225519.html