DB세션이 병렬(parallel)로 수행 확인하는 쿼리
select decode(a.qcserial#, null, 'PARENT', 'CHILD') stmt_level, a.sid, a.serial#, b.username, b.osuser, b.sql_hash_value, b.sql_address, a.degree, a.req_degree from v$px_session a, v$session b where a.sid = b.sid order by a.qcsid, stmt_level desc; v$px_session 테이블을 통해 병렬(parallel) 수행되는것을 알수있습니다. (단, 다른 세션에서 수행해야함) 세션모니터링을 하여도 되나 너무 빨리 수행완료되어 확인이 어려웠던경우 활용하면 좋습니다. > select * /*+ FULL(dba_objects)..