0% found this document useful (0 votes)
73 views624 pages

Block Size Comparison1

The document contains performance test results for running queries against a database table. The first query retrieves distinct owner, object name and subobject name values from the T1 table using an index. This took 85.74 seconds to complete, returning 9454 rows. The second query selects all rows from the T1 table where the status is 'NONE', completing in 71.84 seconds and returning no rows. The results include statistics on disk reads, consistent gets and elapsed times.

Uploaded by

gustavolopresti
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
73 views624 pages

Block Size Comparison1

The document contains performance test results for running queries against a database table. The first query retrieves distinct owner, object name and subobject name values from the T1 table using an index. This took 85.74 seconds to complete, returning 9454 rows. The second query selects all rows from the T1 table where the status is 'NONE', completing in 71.84 seconds and returning no rows. The results include statistics on disk reads, consistent gets and elapsed times.

Uploaded by

gustavolopresti
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 624

16KB ORIGINAL

#TEST RUN 1 16KB


COUNT(*)
----------
11073

Elapsed: 00:00:00.68

Execution Plan...

Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
19328 consistent gets
190 physical reads
0 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

Table created.

Elapsed: 00:01:48.15

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:04.50

System altered.

Elapsed: 00:00:00.03

Index created.

Elapsed: 00:10:30.96

Table created.

Elapsed: 00:00:01.50
Index created.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:01.62

System altered.

Elapsed: 00:00:00.03

1000000 rows created.

Elapsed: 00:02:08.28

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

----------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%
----------------------------------------------------------
| 0 | INSERT STATEMENT | | 751K| 101M| 122K
|* 1 | TABLE ACCESS FULL| T1 | 751K| 101M| 122K
----------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("RN"<=100)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
6531 recursive calls
2490348 db block gets
352150 consistent gets
321601 physical reads
444972176 redo size
681 bytes sent via SQL*Net to client
583 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
1000000 rows processed

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:10.60

System altered.

Elapsed: 00:00:00.00

Session altered.

Elapsed: 00:00:00.06

no rows selected

Elapsed: 00:01:12.87

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

----------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%
----------------------------------------------------------
| 0 | SELECT STATEMENT | | 3544 | 487K| 122K
|* 1 | TABLE ACCESS FULL| T1 | 3544 | 487K| 122K
----------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("STATUS"='NONE')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
321695 consistent gets
321569 physical reads
0 redo size
1047 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

COUNT(*)
----------
1000000

Elapsed: 00:00:02.37

Execution Plan
----------------------------------------------------------
Plan hash value: 1385691034

----------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%C
----------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 1230
| 1 | SORT AGGREGATE | | 1 |
| 2 | INDEX FAST FULL SCAN| T2_IND1 | 968K| 1230
----------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
32 recursive calls
3 db block gets
6812 consistent gets
4294 physical reads
242044 redo size
411 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

OWNER OBJECT_NAME
------------------------------ ---------------------------
SUBOBJECT_NAME
------------------------------

9454 rows selected.

Elapsed: 00:01:28.62

Execution Plan
----------------------------------------------------------
Plan hash value: 1118578911

----------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cos
----------------------------------------------------------
| 0 | SELECT STATEMENT | | 54M| 2666M| 5
| 1 | SORT UNIQUE NOSORT| | 54M| 2666M| 5
| 2 | INDEX FULL SCAN | T1_IND1 | 54M| 2666M| 1
----------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
135802 consistent gets
135073 physical reads
0 redo size
299135 bytes sent via SQL*Net to client
7311 bytes received via SQL*Net from client
632 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
9454 rows processed

Session altered.

Elapsed: 00:00:00.00
#TEST RUN 2 16KB
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1;

----------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A
----------------------------------------------------------
| 1 | SORT UNIQUE NOSORT| | 1 | 54M|
| 2 | INDEX FULL SCAN | T1_IND1 | 1 | 54M|
----------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

#TEST RUN 3 16KB


PL/SQL procedure successfully completed.

Elapsed: 00:02:30.67

PL/SQL procedure successfully completed.

Elapsed: 00:02:30.07

System altered.

Elapsed: 00:00:00.04

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.01

no rows selected

Elapsed: 00:01:15.48

Execution Plan
----------------------------------------------------------
Plan hash value: 2134347679

----------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (
----------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 32 | 122K
| 1 | HASH UNIQUE | | 1 | 32 | 122K
|* 2 | TABLE ACCESS FULL| T1 | 1 | 32 | 122K
----------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("STATUS"='NONE')

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
321597 consistent gets
321569 physical reads
0 redo size
399 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

Session altered.

Elapsed: 00:00:00.00

TABLE_NAME NUM_ROWS BLOCKS AVG_R


------------------------------ ---------- ---------- -----
T1 50050157 322128
T2

INDEX_NAME BLEVEL LEAF_BLOCKS DIST


------------------------------ ---------- ----------- ----
T1_IND1 2 138623
T2_IND1
----------------------------------------------------
Test 1 16KB:
**********************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query


------- ------ -------- ---------- ---------- ----------
Parse 1 0.00 0.02 1 2
Execute 1 0.00 0.00 0 0
Fetch 632 30.57 85.72 135072 135703
------- ------ -------- ---------- ---------- ----------
total 634 30.57 85.74 135073 135705

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- -------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=135703 pr=135072 pw=0 time
50000000 INDEX FULL SCAN T1_IND1 (cr=135703 pr=135072 pw

Elapsed times include waiting on following events:


Event waited on Times Max.
---------------------------------------- Waited -----
SQL*Net message to client 632
db file sequential read 135072
SQL*Net message from client 632
**********************************************************

Test 1 16KB:
**********************************************************
SELECT
*
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query


------- ------ -------- ---------- ---------- ----------
Parse 1 0.00 0.02 1 1
Execute 1 0.00 0.00 0 0
Fetch 1 10.56 71.82 320429 321597
------- ------ -------- ---------- ---------- ----------
total 3 10.56 71.84 320430 321598

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- -------------------------------------------------
0 TABLE ACCESS FULL T1 (cr=321597 pr=320429 pw=0 ti

Elapsed times include waiting on following events:


Event waited on Times Max.
---------------------------------------- Waited -----
db file sequential read 1
SQL*Net message to client 1
db file scattered read 5085
SQL*Net message from client 1

10046 Trace file:


PARSE #14:c=109375,e=1035690,p=1140,cr=98,cu=0,mis=1,r=0,d
EXEC #14:c=0,e=28,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=2
WAIT #14: nam='SQL*Net message to client' ela= 3 driver id
WAIT #14: nam='db file scattered read' ela= 22393 file#=4
WAIT #14: nam='db file scattered read' ela= 1186 file#=4 b
WAIT #14: nam='db file scattered read' ela= 2310 file#=4 b
WAIT #14: nam='db file scattered read' ela= 6560 file#=4 b
WAIT #14: nam='db file scattered read' ela= 594 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 11402 file#=4
WAIT #14: nam='db file scattered read' ela= 599 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 17327 file#=4
WAIT #14: nam='db file scattered read' ela= 585 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 640 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 585 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 604 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 613 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 665 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 574 file#=4 bl
WAIT #14: nam='db file scattered read' ela= 26634 file#=4
WAIT #14: nam='db file scattered read' ela= 20449 file#=4
WAIT #14: nam='db file scattered read' ela= 26011 file#=4
WAIT #14: nam='db file scattered read' ela= 28744 file#=4
WAIT #14: nam='db file scattered read' ela= 26001 file#=4
WAIT #14: nam='db file scattered read' ela= 30236 file#=4
...
WAIT #14: nam='db file scattered read' ela= 13668 file#=4
WAIT #14: nam='db file scattered read' ela= 10157 file#=4
WAIT #14: nam='db file scattered read' ela= 10221 file#=4
WAIT #14: nam='db file scattered read' ela= 11175 file#=4
WAIT #14: nam='db file scattered read' ela= 10204 file#=4
WAIT #14: nam='db file scattered read' ela= 10203 file#=4
WAIT #14: nam='db file scattered read' ela= 1341 file#=4 b
FETCH #14:c=10562500,e=71828658,p=320429,cr=321597,cu=0,mi
WAIT #14: nam='SQL*Net message from client' ela= 634 drive
STAT #14 id=1 cnt=0 pid=0 pos=1 obj=11766 op='TABLE ACCESS
**********************************************************

Test 1 16KB:
**********************************************************
SELECT
COUNT(*)
FROM
T2

call count cpu elapsed disk query


------- ------ -------- ---------- ---------- ----------
Parse 1 0.00 0.03 2 2
Execute 1 0.00 0.00 0 0
Fetch 2 0.25 1.53 3325 6652
------- ------ -------- ---------- ---------- ----------
total 4 0.25 1.56 3327 6654

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- -------------------------------------------------
1 SORT AGGREGATE (cr=6652 pr=3325 pw=0 time=1535095
1000000 INDEX FAST FULL SCAN T2_IND1 (cr=6652 pr=3325 pw

Elapsed times include waiting on following events:


Event waited on Times Max.
---------------------------------------- Waited -----
SQL*Net message to client 2
db file sequential read 4
db file parallel read 1
db file scattered read 67
SQL*Net message from client 2
**********************************************************

Test 1 16KB:
**********************************************************
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call count cpu elapsed disk query


------- ------ -------- ---------- ---------- ----------
Parse 16 0.00 0.09 5 10
Execute 17 0.00 0.11 14 136
Fetch 642 41.40 159.09 458826 463952
------- ------ -------- ---------- ---------- ----------
total 675 41.40 159.30 458845 464098

Misses in library cache during parse: 9


Misses in library cache during execute: 3

Elapsed times include waiting on following events:


Event waited on Times Max.
---------------------------------------- Waited -----
SQL*Net message to client 668
SQL*Net message from client 668
db file sequential read 135098
db file scattered read 5152
db file parallel read 1
**********************************************************

Test 2 16KB:
**********************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query


------- ------ -------- ---------- ---------- ----------
Parse 1 0.06 0.15 0 2
Execute 1 0.00 0.00 0 0
Fetch 95 78.84 139.14 135069 135166
------- ------ -------- ---------- ---------- ----------
total 97 78.90 139.29 135069 135168

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- -------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=135166 pr=135069 pw=0 time
50000000 INDEX FULL SCAN T1_IND1 (cr=135166 pr=135069 pw

Elapsed times include waiting on following events:


Event waited on Times Max.
---------------------------------------- Waited -----
SQL*Net message to client 95
db file sequential read 135069
SQL*Net more data to client 84
SQL*Net message from client 95
**********************************************************

Test 3 16KB:
**********************************************************
SELECT DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query cur


------- ------ -------- ---------- ---------- ---------- ------
Parse 1 0.00 0.01 0 0
Execute 1 0.00 0.00 0 0
Fetch 1 9.75 75.28 321569 321597
------- ------ -------- ---------- ---------- ---------- ------
total 3 9.75 75.30 321569 321597

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 HASH UNIQUE (cr=321597 pr=321569 pw=0 time=75282593 us)
0 TABLE ACCESS FULL T1 (cr=321597 pr=321569 pw=0 time=75
Elapsed times include waiting on following events:
Event waited on Times Max. Wait
---------------------------------------- Waited ----------
SQL*Net message to client 1 0.00
db file sequential read 1 0.01
db file scattered read 5048 0.06
SQL*Net message from client 1 0.03
****************************************************************
8KB ORIGINAL
#TEST RUN 4 8KB
COUNT(*)
----------
11073

Elapsed: 00:00:00.62

Execution Plan...

Statistics
----------------------------------------------------------
641 recursive calls
0 db block gets
19570 consistent gets
380 physical reads
116 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
25 sorts (memory)
0 sorts (disk)
1 rows processed

Table created.

Elapsed: 00:01:41.48

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:02.31

System altered.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:08:28.31

Table created.

Elapsed: 00:00:01.01
Index created.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:00.81

System altered.

Elapsed: 00:00:00.01

1000000 rows created.

Elapsed: 00:01:53.59

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

-----------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| T
-----------------------------------------------------------------
| 0 | INSERT STATEMENT | | 776K| 104M| 178K (2)| 0
|* 1 | TABLE ACCESS FULL| T1 | 776K| 104M| 178K (2)| 0
-----------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("RN"<=100)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
7290 recursive calls
2854734 db block gets
712468 consistent gets
651602 physical reads
469393664 redo size
681 bytes sent via SQL*Net to client
583 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
6 sorts (memory)
0 sorts (disk)
1000000 rows processed

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:17.45

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.03

no rows selected

Elapsed: 00:01:01.21

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

-----------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| T
-----------------------------------------------------------------
| 0 | SELECT STATEMENT | | 7180 | 988K| 178K (1)| 0
|* 1 | TABLE ACCESS FULL| T1 | 7180 | 988K| 178K (1)| 0
-----------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("STATUS"='NONE')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
651592 consistent gets
651470 physical reads
0 redo size
1047 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

COUNT(*)
----------
1000000

Elapsed: 00:00:02.57

Execution Plan
----------------------------------------------------------
Plan hash value: 1385691034

-----------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Ti
-----------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 1863 (1)| 00
| 1 | SORT AGGREGATE | | 1 | |
| 2 | INDEX FAST FULL SCAN| T2_IND1 | 796K| 1863 (1)| 00
-----------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
32 recursive calls
3 db block gets
14148 consistent gets
7745 physical reads
505960 redo size
411 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

OWNER OBJECT_NAME
------------------------------ ------------------------------
SUBOBJECT_NAME
------------------------------ ...

9454 rows selected.

Elapsed: 00:01:43.59

Execution Plan
----------------------------------------------------------
Plan hash value: 1118578911

-----------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU
-----------------------------------------------------------------
| 0 | SELECT STATEMENT | | 50M| 2459M| 921K (1
| 1 | SORT UNIQUE NOSORT| | 50M| 2459M| 921K (1
| 2 | INDEX FULL SCAN | T1_IND1 | 50M| 2459M| 276K (1
-----------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
274741 consistent gets
274363 physical reads
0 redo size
299090 bytes sent via SQL*Net to client
7311 bytes received via SQL*Net from client
632 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
9454 rows processed

Session altered.

Elapsed: 00:00:00.00
#TEST RUN 5 8KB

-----------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A-Rows |
-----------------------------------------------------------------
| 1 | SORT UNIQUE NOSORT| | 1 | 50M| 9454 |
| 2 | INDEX FULL SCAN | T1_IND1 | 1 | 50M| 50M|
-----------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

#TEST RUN 6 8KB


PL/SQL procedure successfully completed.

Elapsed: 00:02:12.53

PL/SQL procedure successfully completed.

Elapsed: 00:02:01.07

System altered.

Elapsed: 00:00:00.06

System altered.

Elapsed: 00:00:00.03

Session altered.

Elapsed: 00:00:00.04

no rows selected

Elapsed: 00:01:00.17

Execution Plan
----------------------------------------------------------
Plan hash value: 2134347679

-----------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)|
-----------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 33 | 178K (1)|
| 1 | HASH UNIQUE | | 1 | 33 | 178K (1)|
|* 2 | TABLE ACCESS FULL| T1 | 1 | 33 | 178K (1)|
-----------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("STATUS"='NONE')

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
651498 consistent gets
651470 physical reads
0 redo size
399 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

Session altered.

Elapsed: 00:00:00.00

TABLE_NAME NUM_ROWS BLOCKS AVG_ROW_LEN


------------------------------ ---------- ---------- -----------
T1 50017435 652594 88
T2

INDEX_NAME BLEVEL LEAF_BLOCKS DISTINCT_KE


------------------------------ ---------- ----------- -----------
T1_IND1 3 288099 501083
T2_IND1
----------------------------------------------------
Test 4 8KB:
*****************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query curr


------- ------ -------- ---------- ---------- ---------- -------
Parse 1 0.00 0.02 1 2
Execute 1 0.00 0.00 0 0
Fetch 632 34.12 100.63 274233 274646
------- ------ -------- ---------- ---------- ---------- -------
total 634 34.12 100.65 274234 274648

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=274646 pr=274233 pw=0 time=111328
50000000 INDEX FULL SCAN T1_IND1 (cr=274646 pr=274233 pw=0 time

Elapsed times include waiting on following events:


Event waited on Times Max. Wait
---------------------------------------- Waited ----------
SQL*Net message to client 632 0.00
db file scattered read 6952 0.02
db file sequential read 225942 0.03
SQL*Net message from client 632 0.02
*****************************************************************

Test 4 8KB:
*****************************************************************
SELECT
*
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query curr


------- ------ -------- ---------- ---------- ---------- -------
Parse 1 0.00 0.01 1 1
Execute 1 0.00 0.00 0 0
Fetch 1 12.28 60.24 648725 651498
------- ------ -------- ---------- ---------- ---------- -------
total 3 12.28 60.26 648726 651499

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 TABLE ACCESS FULL T1 (cr=651498 pr=648725 pw=0 time=6024

Elapsed times include waiting on following events:


Event waited on Times Max. Wait
---------------------------------------- Waited ----------
db file sequential read 2 0.01
SQL*Net message to client 1 0.00
db file scattered read 5140 0.05
SQL*Net message from client 1 0.01

10046 Trace file:


PARSE #13:c=62500,e=960065,p=2745,cr=94,cu=0,mis=1,r=0,dep=0,og=1
EXEC #13:c=0,e=28,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=99934622
WAIT #13: nam='SQL*Net message to client' ela= 2 driver id=141369
WAIT #13: nam='db file scattered read' ela= 14292 file#=4 block#=
WAIT #13: nam='db file scattered read' ela= 910 file#=4 block#=17
WAIT #13: nam='db file scattered read' ela= 18546 file#=4 block#=
WAIT #13: nam='db file scattered read' ela= 935 file#=4 block#=33
WAIT #13: nam='db file scattered read' ela= 554 file#=4 block#=42
WAIT #13: nam='db file scattered read' ela= 623 file#=4 block#=49
WAIT #13: nam='db file scattered read' ela= 644 file#=4 block#=58
WAIT #13: nam='db file scattered read' ela= 680 file#=4 block#=65
WAIT #13: nam='db file scattered read' ela= 553 file#=4 block#=74
WAIT #13: nam='db file scattered read' ela= 626 file#=4 block#=81
WAIT #13: nam='db file scattered read' ela= 569 file#=4 block#=90
WAIT #13: nam='db file scattered read' ela= 677 file#=4 block#=97
WAIT #13: nam='db file scattered read' ela= 587 file#=4 block#=10
WAIT #13: nam='db file scattered read' ela= 634 file#=4 block#=11
WAIT #13: nam='db file scattered read' ela= 651 file#=4 block#=12
WAIT #13: nam='db file scattered read' ela= 696 file#=4 block#=12
WAIT #13: nam='db file scattered read' ela= 13029 file#=4 block#=
WAIT #13: nam='db file scattered read' ela= 27025 file#=4 block#=
...
WAIT #13: nam='db file scattered read' ela= 9012 file#=4 block#=6
WAIT #13: nam='db file scattered read' ela= 8046 file#=4 block#=6
WAIT #13: nam='db file scattered read' ela= 10406 file#=4 block#=
WAIT #13: nam='db file scattered read' ela= 2113 file#=4 block#=6
FETCH #13:c=12281250,e=60248822,p=648725,cr=651498,cu=0,mis=0,r=0
WAIT #13: nam='SQL*Net message from client' ela= 11442 driver id=
*** SESSION ID:(215.5) 2008-06-06 20:30:27.109
STAT #13 id=1 cnt=0 pid=0 pos=1 obj=11766 op='TABLE ACCESS FULL T
*****************************************************************

Test 4 8KB:
*****************************************************************
SELECT
COUNT(*)
FROM
T2

call count cpu elapsed disk query curr


------- ------ -------- ---------- ---------- ---------- -------
Parse 1 0.00 0.01 2 2
Execute 1 0.00 0.00 0 0
Fetch 2 0.34 1.66 6972 13931
------- ------ -------- ---------- ---------- ---------- -------
total 4 0.34 1.68 6974 13933

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=13931 pr=6972 pw=0 time=1669507 us)
1000000 INDEX FAST FULL SCAN T2_IND1 (cr=13931 pr=6972 pw=0 tim

Elapsed times include waiting on following events:


Event waited on Times Max. Wait
---------------------------------------- Waited ----------
SQL*Net message to client 2 0.00
db file sequential read 8 0.01
db file parallel read 1 0.31
db file scattered read 124 0.03
SQL*Net message from client 2 0.00
*****************************************************************

Test 4 8KB:
*****************************************************************
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call count cpu elapsed disk query curr


------- ------ -------- ---------- ---------- ---------- -------
Parse 16 0.00 0.06 5 10
Execute 17 0.01 0.11 18 142
Fetch 642 46.75 162.55 929930 940075
------- ------ -------- ---------- ---------- ---------- -------
total 675 46.76 162.73 929953 940227

Misses in library cache during parse: 9


Misses in library cache during execute: 3

Elapsed times include waiting on following events:


Event waited on Times Max. Wait
---------------------------------------- Waited ----------
SQL*Net message to client 668 0.00
SQL*Net message from client 668 0.02
db file sequential read 225979 0.03
db file scattered read 12216 0.05
db file parallel read 1 0.31
*****************************************************************

Test 5 8KB:
*****************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query curr


------- ------ -------- ---------- ---------- ---------- -------
Parse 1 0.06 0.19 2 2
Execute 1 0.00 0.00 0 0
Fetch 95 84.10 158.06 274016 274110
------- ------ -------- ---------- ---------- ---------- -------
total 97 84.17 158.25 274018 274112

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=274110 pr=274016 pw=0 time=158024
50000000 INDEX FULL SCAN T1_IND1 (cr=274110 pr=274016 pw=0 time

Elapsed times include waiting on following events:


Event waited on Times Max. Wait
---------------------------------------- Waited ----------
SQL*Net message to client 95 0.00
db file sequential read 274016 0.03
SQL*Net more data to client 84 0.00
SQL*Net message from client 95 0.68
*****************************************************************

Test 6 8KB:
*****************************************************************
SELECT DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query curr


------- ------ -------- ---------- ---------- ---------- -------
Parse 1 0.00 0.02 0 0
Execute 1 0.00 0.00 0 0
Fetch 1 11.29 59.91 651470 651498
------- ------ -------- ---------- ---------- ---------- -------
total 3 11.29 59.94 651470 651498

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 HASH UNIQUE (cr=651498 pr=651470 pw=0 time=59918740 us)
0 TABLE ACCESS FULL T1 (cr=651498 pr=651470 pw=0 time=599
Elapsed times include waiting on following events:
Event waited on Times Max. Wait
---------------------------------------- Waited ----------
SQL*Net message to client 1 0.00
db file sequential read 1 0.01
db file scattered read 5114 0.05
SQL*Net message from client 1 0.02
*****************************************************************
8KB 2ND
#TEST RUN 7 8KB:
COUNT(*)
----------
11073

Elapsed: 00:00:00.65

Execution Plan...

Statistics
----------------------------------------------------------
641 recursive calls
0 db block gets
19569 consistent gets
378 physical reads
72 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
25 sorts (memory)
0 sorts (disk)
1 rows processed

Table created.

Elapsed: 00:01:53.48

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:02.51

System altered.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:08:56.64

Table created.

Elapsed: 00:00:01.01
Index created.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:00.86

System altered.

Elapsed: 00:00:00.01

1000000 rows created.

Elapsed: 00:02:08.21

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

--------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)
--------------------------------------------------------------
| 0 | INSERT STATEMENT | | 776K| 104M| 178K (2)
|* 1 | TABLE ACCESS FULL| T1 | 776K| 104M| 178K (2)
--------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("RN"<=100)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
8295 recursive calls
2855691 db block gets
713243 consistent gets
651602 physical reads
470340500 redo size
681 bytes sent via SQL*Net to client
583 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
6 sorts (memory)
0 sorts (disk)
1000000 rows processed

Commit complete.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:18.18

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.04

no rows selected

Elapsed: 00:01:12.59

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

--------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)
--------------------------------------------------------------
| 0 | SELECT STATEMENT | | 7180 | 988K| 178K (2)
|* 1 | TABLE ACCESS FULL| T1 | 7180 | 988K| 178K (2)
--------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("STATUS"='NONE')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
651592 consistent gets
651470 physical reads
0 redo size
1047 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

COUNT(*)
----------
1000000

Elapsed: 00:00:02.45

Execution Plan
----------------------------------------------------------
Plan hash value: 1385691034

--------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)|
--------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 1863 (1)|
| 1 | SORT AGGREGATE | | 1 | |
| 2 | INDEX FAST FULL SCAN| T2_IND1 | 798K| 1863 (1)|
--------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
32 recursive calls
3 db block gets
14159 consistent gets
7746 physical reads
506724 redo size
411 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

OWNER OBJECT_NAME
------------------------------ ------------------------------
SUBOBJECT_NAME
------------------------------

9454 rows selected.

Elapsed: 00:01:42.18

Execution Plan
----------------------------------------------------------
Plan hash value: 1118578911

--------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%
--------------------------------------------------------------
| 0 | SELECT STATEMENT | | 50M| 2458M| 921K
| 1 | SORT UNIQUE NOSORT| | 50M| 2458M| 921K
| 2 | INDEX FULL SCAN | T1_IND1 | 50M| 2458M| 276K
--------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
274740 consistent gets
274369 physical reads
0 redo size
299162 bytes sent via SQL*Net to client
7311 bytes received via SQL*Net from client
632 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
9454 rows processed

Session altered.

Elapsed: 00:00:00.00
#TEST RUN 7 8KB:
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1;

--------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A-Row
--------------------------------------------------------------
| 1 | SORT UNIQUE NOSORT| | 1 | 50M| 945
| 2 | INDEX FULL SCAN | T1_IND1 | 1 | 50M| 5
--------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

#TEST RUN 9 8KB:


PL/SQL procedure successfully completed.

Elapsed: 00:02:36.67

PL/SQL procedure successfully completed.

Elapsed: 00:02:23.29

System altered.

Elapsed: 00:00:00.06

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.03

no rows selected

Elapsed: 00:01:11.59

Execution Plan
----------------------------------------------------------
Plan hash value: 2134347679

--------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU
--------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 32 | 178K (2
| 1 | HASH UNIQUE | | 1 | 32 | 178K (2
|* 2 | TABLE ACCESS FULL| T1 | 1 | 32 | 178K (2
--------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("STATUS"='NONE')

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
651498 consistent gets
651470 physical reads
0 redo size
399 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

Session altered.

Elapsed: 00:00:00.00

TABLE_NAME NUM_ROWS BLOCKS AVG_ROW_L


------------------------------ ---------- ---------- ---------
T1 50072042 652594
T2

INDEX_NAME BLEVEL LEAF_BLOCKS DISTINCT


------------------------------ ---------- ----------- --------
T1_IND1 3 267918 457
T2_IND1
----------------------------------------------------
Test 7 8KB:
**************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query c


------- ------ -------- ---------- ---------- ---------- ----
Parse 1 0.00 0.01 1 2
Execute 1 0.00 0.00 0 0
Fetch 632 33.71 99.25 274239 274645
------- ------ -------- ---------- ---------- ---------- ----
total 634 33.71 99.27 274240 274647

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=274645 pr=274239 pw=0 time=100
50000000 INDEX FULL SCAN T1_IND1 (cr=274645 pr=274239 pw=0 t

Elapsed times include waiting on following events:


Event waited on Times Max. Wai
---------------------------------------- Waited ---------
SQL*Net message to client 632 0.0
db file scattered read 6922 0.0
db file sequential read 226153 0.0
SQL*Net message from client 632 0.0
**************************************************************

Test 7 8KB:
**************************************************************
SELECT
*
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query c


------- ------ -------- ---------- ---------- ---------- ----
Parse 1 0.00 0.02 1 1
Execute 1 0.00 0.00 0 0
Fetch 1 11.92 71.41 648732 651498
------- ------ -------- ---------- ---------- ---------- ----
total 3 11.92 71.43 648733 651499

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 TABLE ACCESS FULL T1 (cr=651498 pr=648732 pw=0 time=7

Elapsed times include waiting on following events:


Event waited on Times Max. Wai
---------------------------------------- Waited ---------
db file sequential read 2 0.0
SQL*Net message to client 1 0.0
db file scattered read 5140 0.0
SQL*Net message from client 1 0.0

10046 Trace file:


PARSE #8:c=46875,e=1167603,p=2738,cr=94,cu=0,mis=1,r=0,dep=0,o
EXEC #8:c=0,e=27,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=945576
WAIT #8: nam='SQL*Net message to client' ela= 3 driver id=1413
WAIT #8: nam='db file scattered read' ela= 10258 file#=4 block
WAIT #8: nam='db file scattered read' ela= 15539 file#=4 block
WAIT #8: nam='db file scattered read' ela= 1230 file#=4 block#
WAIT #8: nam='db file scattered read' ela= 556 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 576 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 551 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 662 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 556 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 576 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 741 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 1259 file#=4 block#
WAIT #8: nam='db file scattered read' ela= 560 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 538 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 553 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 667 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 541 file#=4 block#=
WAIT #8: nam='db file scattered read' ela= 11162 file#=4 block
WAIT #8: nam='db file scattered read' ela= 11637 file#=4 block
WAIT #8: nam='db file scattered read' ela= 9859 file#=4 block#
WAIT #8: nam='db file scattered read' ela= 10744 file#=4 block
WAIT #8: nam='db file scattered read' ela= 9828 file#=4 block#
...
WAIT #8: nam='db file scattered read' ela= 9841 file#=4 block#
WAIT #8: nam='db file scattered read' ela= 9825 file#=4 block#
WAIT #8: nam='db file scattered read' ela= 10742 file#=4 block
WAIT #8: nam='db file scattered read' ela= 12264 file#=4 block
WAIT #8: nam='db file scattered read' ela= 9726 file#=4 block#
WAIT #8: nam='db file scattered read' ela= 10801 file#=4 block
WAIT #8: nam='db file scattered read' ela= 1990 file#=4 block#
FETCH #8:c=11921875,e=71414674,p=648732,cr=651498,cu=0,mis=0,r
WAIT #8: nam='SQL*Net message from client' ela= 15789 driver i
STAT #8 id=1 cnt=0 pid=0 pos=1 obj=11756 op='TABLE ACCESS FULL
**************************************************************

Test 7 8KB:
**************************************************************
SELECT
COUNT(*)
FROM
T2

call count cpu elapsed disk query c


------- ------ -------- ---------- ---------- ---------- ----
Parse 1 0.00 0.02 2 2
Execute 1 0.00 0.00 0 0
Fetch 2 0.26 1.69 6966 13942
------- ------ -------- ---------- ---------- ---------- ----
total 4 0.26 1.71 6968 13944

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=13942 pr=6966 pw=0 time=1690194 us
1000000 INDEX FAST FULL SCAN T2_IND1 (cr=13942 pr=6966 pw=0

Elapsed times include waiting on following events:


Event waited on Times Max. Wai
---------------------------------------- Waited ---------
SQL*Net message to client 2 0.0
db file sequential read 2 0.0
db file parallel read 1 0.2
db file scattered read 124 0.0
SQL*Net message from client 2 0.0
**************************************************************

Test 7 8KB:
**************************************************************
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call count cpu elapsed disk query c


------- ------ -------- ---------- ---------- ---------- ----
Parse 16 0.00 0.07 5 10
Execute 17 0.01 0.10 17 142
Fetch 642 45.93 172.36 929937 940085
------- ------ -------- ---------- ---------- ---------- ----
total 675 45.95 172.55 929959 940237

Misses in library cache during parse: 9


Misses in library cache during execute: 3

Elapsed times include waiting on following events:


Event waited on Times Max. Wai
---------------------------------------- Waited ---------
SQL*Net message to client 668 0.0
SQL*Net message from client 668 0.0
db file sequential read 226183 0.0
db file scattered read 12186 0.0
db file parallel read 1 0.2
**************************************************************

Test 8 8KB:
**************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query c


------- ------ -------- ---------- ---------- ---------- ----
Parse 1 0.06 0.16 0 2
Execute 1 0.00 0.00 0 0
Fetch 95 83.29 157.70 274019 274113
------- ------ -------- ---------- ---------- ---------- ----
total 97 83.35 157.87 274019 274115

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=274113 pr=274019 pw=0 time=157
50000000 INDEX FULL SCAN T1_IND1 (cr=274113 pr=274019 pw=0 t

Elapsed times include waiting on following events:


Event waited on Times Max. Wai
---------------------------------------- Waited ---------
SQL*Net message to client 95 0.0
db file sequential read 274019 0.0
SQL*Net more data to client 85 0.0
SQL*Net message from client 95 0.7
**************************************************************

Test 9 8KB:
**************************************************************
SELECT DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query c


------- ------ -------- ---------- ---------- ---------- ----
Parse 1 0.00 0.02 0 0
Execute 1 0.00 0.00 0 0
Fetch 1 11.75 71.40 651470 651498
------- ------ -------- ---------- ---------- ---------- ----
total 3 11.75 71.42 651470 651498

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 HASH UNIQUE (cr=651498 pr=651470 pw=0 time=71409334 u
0 TABLE ACCESS FULL T1 (cr=651498 pr=651470 pw=0 time=
Elapsed times include waiting on following events:
Event waited on Times Max. Wai
---------------------------------------- Waited ---------
SQL*Net message to client 1 0.0
db file sequential read 1 0.0
db file scattered read 5114 0.0
SQL*Net message from client 1 0.0
**************************************************************
16KB 2ND
#TEST RUN 10 16KB:
COUNT(*)
----------
11073

Elapsed: 00:00:00.62

Execution Plan...

Statistics
----------------------------------------------------------
641 recursive calls
0 db block gets
19499 consistent gets
209 physical reads
0 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
25 sorts (memory)
0 sorts (disk)
1 rows processed

Table created.

Elapsed: 00:01:51.54

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:02.21

System altered.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:08:40.39

Table created.

Elapsed: 00:00:01.09
Index created.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:00.71

System altered.

Elapsed: 00:00:00.01

1000000 rows created.

Elapsed: 00:01:42.42

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 751K| 101M| 122K (2)| 00:28:38 |
|* 1 | TABLE ACCESS FULL| T1 | 751K| 101M| 122K (2)| 00:28:38 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("RN"<=100)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
7253 recursive calls
2491314 db block gets
352577 consistent gets
321650 physical reads
445453548 redo size
681 bytes sent via SQL*Net to client
583 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
4 sorts (memory)
0 sorts (disk)
1000000 rows processed

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:14.45

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.03

no rows selected

Elapsed: 00:01:08.78

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 3544 | 487K| 122K (2)| 00:28:34 |
|* 1 | TABLE ACCESS FULL| T1 | 3544 | 487K| 122K (2)| 00:28:34 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("STATUS"='NONE')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
321695 consistent gets
321569 physical reads
0 redo size
1047 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

COUNT(*)
----------
1000000

Elapsed: 00:00:02.62

Execution Plan
----------------------------------------------------------
Plan hash value: 1385691034

-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
-------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 1230 (1)| 00:00:18 |
| 1 | SORT AGGREGATE | | 1 | | |
| 2 | INDEX FAST FULL SCAN| T2_IND1 | 974K| 1230 (1)| 00:00:18 |
-------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
32 recursive calls
3 db block gets
6812 consistent gets
4298 physical reads
242000 redo size
411 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

OWNER OBJECT_NAME
------------------------------ ------------------------------
SUBOBJECT_NAME
------------------------------

9454 rows selected.

Elapsed: 00:01:19.85

Execution Plan
----------------------------------------------------------
Plan hash value: 1118578911

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 54M| 2666M| 574K (1)| 02:14:01 |
| 1 | SORT UNIQUE NOSORT| | 54M| 2666M| 574K (1)| 02:14:01 |
| 2 | INDEX FULL SCAN | T1_IND1 | 54M| 2666M| 136K (1)| 00:31:51 |
------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
135802 consistent gets
135129 physical reads
0 redo size
299135 bytes sent via SQL*Net to client
7311 bytes received via SQL*Net from client
632 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
9454 rows processed

Session altered.

Elapsed: 00:00:00.00
#TEST RUN 11 16KB:
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1;

--------------------------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A-Rows | A-Time | B
--------------------------------------------------------------------------------
| 1 | SORT UNIQUE NOSORT| | 1 | 54M| 9454 |00:02:10.37 |
| 2 | INDEX FULL SCAN | T1_IND1 | 1 | 54M| 50M|00:01:40.04 |
--------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

#TEST RUN 12 16KB:


PL/SQL procedure successfully completed.

Elapsed: 00:02:30.61

PL/SQL procedure successfully completed.

Elapsed: 00:02:29.34

System altered.

Elapsed: 00:00:00.03

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.03

no rows selected

Elapsed: 00:01:11.26

Execution Plan
----------------------------------------------------------
Plan hash value: 2134347679

---------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 33 | 122K (2)| 00:28:32 |
| 1 | HASH UNIQUE | | 1 | 33 | 122K (2)| 00:28:32 |
|* 2 | TABLE ACCESS FULL| T1 | 1 | 33 | 122K (2)| 00:28:32 |
---------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("STATUS"='NONE')

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
321597 consistent gets
321569 physical reads
0 redo size
399 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

Session altered.

Elapsed: 00:00:00.00

TABLE_NAME NUM_ROWS BLOCKS AVG_ROW_LEN


------------------------------ ---------- ---------- -----------
T1 50275095 322128 88
T2

INDEX_NAME BLEVEL LEAF_BLOCKS DISTINCT_KEYS AVG_LEAF_BLO


------------------------------ ---------- ----------- ------------- ------------
T1_IND1 2 138977 48810943
T2_IND1
----------------------------------------------------
Test 10 16KB:
********************************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 1 2 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 632 29.46 76.99 135128 135703 0 9454
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 634 29.48 77.00 135129 135705 0 9454

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=135703 pr=135128 pw=0 time=76572511 us)
50000000 INDEX FULL SCAN T1_IND1 (cr=135703 pr=135128 pw=0 time=50022973 us)(o

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 632 0.00 0.00
db file sequential read 113857 0.06 44.23
db file scattered read 7115 0.04 5.58
SQL*Net message from client 632 0.01 2.76
********************************************************************************

Test 10 16KB:
********************************************************************************
SELECT
*
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.02 1 1 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 1 9.76 67.69 320423 321597 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 9.76 67.71 320424 321598 0 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 TABLE ACCESS FULL T1 (cr=321597 pr=320423 pw=0 time=67692842 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file sequential read 1 0.01 0.01
SQL*Net message to client 1 0.00 0.00
db file scattered read 5085 0.05 58.16
SQL*Net message from client 1 0.02 0.02

10046 Trace File:


PARSE #14:c=93750,e=1064918,p=1146,cr=98,cu=0,mis=1,r=0,dep=0,og=1,tim=952554189
EXEC #14:c=0,e=28,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=952554367
WAIT #14: nam='SQL*Net message to client' ela= 2 driver id=1413697536 #bytes=1 p
WAIT #14: nam='db file scattered read' ela= 12323 file#=4 block#=8 blocks=5 obj#
WAIT #14: nam='db file scattered read' ela= 1193 file#=4 block#=13 blocks=4 obj#
WAIT #14: nam='db file scattered read' ela= 575 file#=4 block#=17 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 641 file#=4 block#=22 blocks=3 obj#=
WAIT #14: nam='db file scattered read' ela= 568 file#=4 block#=25 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 828 file#=4 block#=29 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 574 file#=4 block#=33 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 596 file#=4 block#=38 blocks=3 obj#=
WAIT #14: nam='db file scattered read' ela= 676 file#=4 block#=41 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 1159 file#=4 block#=45 blocks=4 obj#
WAIT #14: nam='db file scattered read' ela= 572 file#=4 block#=49 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 515 file#=4 block#=54 blocks=3 obj#=
WAIT #14: nam='db file scattered read' ela= 567 file#=4 block#=57 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 750 file#=4 block#=61 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 577 file#=4 block#=65 blocks=4 obj#=
WAIT #14: nam='db file scattered read' ela= 19168 file#=4 block#=70 blocks=63 ob
WAIT #14: nam='db file scattered read' ela= 28313 file#=4 block#=134 blocks=63 o
WAIT #14: nam='db file scattered read' ela= 35142 file#=4 block#=198 blocks=63 o
WAIT #14: nam='db file scattered read' ela= 35259 file#=4 block#=262 blocks=63 o
WAIT #14: nam='db file scattered read' ela= 36198 file#=4 block#=326 blocks=63 o
WAIT #14: nam='db file scattered read' ela= 35145 file#=4 block#=390 blocks=63 o
...
WAIT #14: nam='db file scattered read' ela= 13637 file#=4 block#=321737 blocks=6
WAIT #14: nam='db file scattered read' ela= 10208 file#=4 block#=321801 blocks=6
WAIT #14: nam='db file scattered read' ela= 10237 file#=4 block#=321865 blocks=6
WAIT #14: nam='db file scattered read' ela= 11186 file#=4 block#=321929 blocks=6
WAIT #14: nam='db file scattered read' ela= 10174 file#=4 block#=321993 blocks=6
WAIT #14: nam='db file scattered read' ela= 10169 file#=4 block#=322057 blocks=6
WAIT #14: nam='db file scattered read' ela= 1357 file#=4 block#=322121 blocks=12
FETCH #14:c=9765625,e=67692846,p=320423,cr=321597,cu=0,mis=0,r=0,dep=0,og=1,tim=
WAIT #14: nam='SQL*Net message from client' ela= 27653 driver id=1413697536 #byt
STAT #14 id=1 cnt=0 pid=0 pos=1 obj=11766 op='TABLE ACCESS FULL T1 (cr=321597 pr
********************************************************************************

Test 10 16KB:
********************************************************************************
SELECT
COUNT(*)
FROM
T2

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.02 2 2 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.23 1.70 3325 6652 2 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.23 1.73 3327 6654 2 1

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=6652 pr=3325 pw=0 time=1705485 us)
1000000 INDEX FAST FULL SCAN T2_IND1 (cr=6652 pr=3325 pw=0 time=3326572 us)(ob

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 4 0.02 0.05
db file parallel read 1 0.26 0.26
db file scattered read 67 0.04 1.13
SQL*Net message from client 2 0.00 0.00
********************************************************************************

Test 10 16KB:
********************************************************************************
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 16 0.03 0.06 5 10 0 0
Execute 17 0.00 0.10 17 136 8 8
Fetch 642 39.46 146.40 458876 463952 2 9498
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 675 39.50 146.56 458898 464098 10 9506

Misses in library cache during parse: 9


Misses in library cache during execute: 3

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 668 0.00 0.00
SQL*Net message from client 668 0.02 2.80
db file sequential read 113888 0.06 44.43
db file scattered read 12267 0.05 64.88
db file parallel read 1 0.26 0.26
********************************************************************************

Test 11 16KB:
********************************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.06 0.15 0 2 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 95 75.93 130.40 135072 135166 0 9454
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 97 76.00 130.55 135072 135168 0 9454

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=135166 pr=135072 pw=0 time=130371766 us)
50000000 INDEX FULL SCAN T1_IND1 (cr=135166 pr=135072 pw=0 time=100040110 us)(

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 95 0.00 0.00
db file sequential read 135072 0.03 54.73
SQL*Net more data to client 84 0.00 0.00
SQL*Net message from client 95 0.69 0.73
********************************************************************************

Test 12 16KB:
********************************************************************************
SELECT DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.01 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 1 10.10 71.07 321569 321597 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 10.10 71.09 321569 321597 0 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 HASH UNIQUE (cr=321597 pr=321569 pw=0 time=71077823 us)
0 TABLE ACCESS FULL T1 (cr=321597 pr=321569 pw=0 time=71077749 us)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
db file sequential read 1 0.02 0.02
db file scattered read 5048 0.05 61.69
SQL*Net message from client 1 0.03 0.03
********************************************************************************
[b]8KB UNIFORM 1MB[/b]
[b]#TEST RUN 13 8KB UNIFORM 1MB[/b]
COUNT(*)
----------
11073

Elapsed: 00:00:00.70

Execution Plan...

Statistics
----------------------------------------------------------
641 recursive calls
0 db block gets
19569 consistent gets
377 physical reads
72 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
25 sorts (memory)
0 sorts (disk)
1 rows processed

Table created.

Elapsed: 00:02:02.09

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:05.25

System altered.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:09:04.06

Table created.

Elapsed: 00:00:00.71
Index created.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:01.70

System altered.

Elapsed: 00:00:00.01

1000000 rows created.

Elapsed: 00:02:00.79

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time
-------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 7179 | 988K| 178K (1)| 00:35:43
|* 1 | TABLE ACCESS FULL| T1 | 7179 | 988K| 178K (1)| 00:35:43
-------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("RN"<=100)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
8382 recursive calls
2855795 db block gets
713983 consistent gets
651640 physical reads
470276500 redo size
682 bytes sent via SQL*Net to client
583 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
6 sorts (memory)
0 sorts (disk)
1000000 rows processed

Commit complete.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:15.53

System altered.

Elapsed: 00:00:00.03

Session altered.

Elapsed: 00:00:00.01

no rows selected

Elapsed: 00:01:09.56

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time
-------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 7179 | 988K| 178K (1)| 00:35:40
|* 1 | TABLE ACCESS FULL| T1 | 7179 | 988K| 178K (1)| 00:35:40
-------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("STATUS"='NONE')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
6 recursive calls
0 db block gets
652567 consistent gets
651480 physical reads
0 redo size
1047 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

COUNT(*)
----------
1000000

Elapsed: 00:00:02.50

Execution Plan
----------------------------------------------------------
Plan hash value: 1385691034

-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
-------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 1864 (1)| 00:00:23 |
| 1 | SORT AGGREGATE | | 1 | | |
| 2 | INDEX FAST FULL SCAN| T2_IND1 | 857K| 1864 (1)| 00:00:23 |
-------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
32 recursive calls
3 db block gets
14179 consistent gets
8036 physical reads
507292 redo size
411 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

OWNER OBJECT_NAME
------------------------------ ------------------------------
SUBOBJECT_NAME
------------------------------

9454 rows selected.

Elapsed: 00:01:46.12

Execution Plan
----------------------------------------------------------
Plan hash value: 1118578911

-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time
-------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 41M| 2030M| 808K (1)| 02:41
| 1 | SORT UNIQUE NOSORT| | 41M| 2030M| 808K (1)| 02:41
| 2 | INDEX FULL SCAN | T1_IND1 | 41M| 2030M| 276K (1)| 00:55
-------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
6 recursive calls
0 db block gets
275219 consistent gets
274154 physical reads
0 redo size
299156 bytes sent via SQL*Net to client
7311 bytes received via SQL*Net from client
632 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
9454 rows processed

Session altered.

Elapsed: 00:00:00.00
[b]#TEST RUN 14 8KB UNIFORM 1MB[/b]
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1;

-------------------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A-Rows | A-Tim
-------------------------------------------------------------------------
| 1 | SORT UNIQUE NOSORT| | 1 | 41M| 9454 |00:02:36
| 2 | INDEX FULL SCAN | T1_IND1 | 1 | 41M| 50M|00:01:40
-------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

[b]#TEST RUN 15 8KB UNIFORM 1MB[/b]


PL/SQL procedure successfully completed.

Elapsed: 00:02:30.14

PL/SQL procedure successfully completed.

Elapsed: 00:02:11.53

System altered.

Elapsed: 00:00:00.06

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.03

no rows selected

Elapsed: 00:01:11.37

Execution Plan
----------------------------------------------------------
Plan hash value: 2134347679

-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time
-------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 32 | 178K (1)| 00:35:42
| 1 | HASH UNIQUE | | 1 | 32 | 178K (1)| 00:35:42
|* 2 | TABLE ACCESS FULL| T1 | 1 | 32 | 178K (1)| 00:35:42
-------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("STATUS"='NONE')

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
651991 consistent gets
651480 physical reads
0 redo size
399 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

Session altered.

Elapsed: 00:00:00.00

TABLE_NAME NUM_ROWS BLOCKS AVG_ROW_LEN


------------------------------ ---------- ---------- -----------
T1 49640731 652598 88
T2

INDEX_NAME BLEVEL LEAF_BLOCKS DISTINCT_KEYS AVG_L


------------------------------ ---------- ----------- ------------- -----
T1_IND1 3 273198 46842892
T2_IND1
----------------------------------------------------
[b]Test 13 8KB UNIFORM 1MB:[/b]
*************************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ---
Parse 1 0.00 0.02 1 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 632 35.40 103.21 274152 274642 0
------- ------ -------- ---------- ---------- ---------- ---------- ---
total 634 35.40 103.24 274153 274644 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=274642 pr=274152 pw=0 time=105558079 us)
50000000 INDEX FULL SCAN T1_IND1 (cr=274642 pr=274152 pw=0 time=1000218

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Wa
---------------------------------------- Waited ---------- --------
SQL*Net message to client 632 0.00
db file scattered read 897 0.03
db file sequential read 246668 0.03 6
SQL*Net message from client 632 0.01
*************************************************************************

[b]Test 13 8KB UNIFORM 1MB:[/b]


*************************************************************************
SELECT
*
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ---
Parse 1 0.01 0.02 1 1 0
Execute 1 0.00 0.00 0 0 0
Fetch 1 11.90 68.78 651354 651991 0
------- ------ -------- ---------- ---------- ---------- ---------- ---
total 3 11.92 68.80 651355 651992 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 TABLE ACCESS FULL T1 (cr=651991 pr=651354 pw=0 time=68787056 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Wa
---------------------------------------- Waited ---------- --------
db file sequential read 1 0.01
SQL*Net message to client 1 0.00
db file scattered read 5149 0.05 5
SQL*Net message from client 1 0.01

10046 Trace File:


PARSE #8:c=62500,e=756691,p=126,cr=576,cu=0,mis=1,r=0,dep=0,og=1,tim=1013
EXEC #8:c=0,e=30,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=1013390547
WAIT #8: nam='SQL*Net message to client' ela= 3 driver id=1413697536 #byt
WAIT #8: nam='db file scattered read' ela= 22563 file#=4 block#=13 blocks
WAIT #8: nam='db file scattered read' ela= 10851 file#=4 block#=139 block
WAIT #8: nam='db file scattered read' ela= 17966 file#=4 block#=267 block
WAIT #8: nam='db file scattered read' ela= 9833 file#=4 block#=395 blocks
WAIT #8: nam='db file scattered read' ela= 9822 file#=4 block#=523 blocks
WAIT #8: nam='db file scattered read' ela= 10823 file#=4 block#=651 block
WAIT #8: nam='db file scattered read' ela= 9809 file#=4 block#=779 blocks
WAIT #8: nam='db file scattered read' ela= 9864 file#=4 block#=907 blocks
WAIT #8: nam='db file scattered read' ela= 10431 file#=4 block#=1035 bloc
WAIT #8: nam='db file scattered read' ela= 12268 file#=4 block#=1163 bloc
WAIT #8: nam='db file scattered read' ela= 9776 file#=4 block#=1291 block
WAIT #8: nam='db file scattered read' ela= 10788 file#=4 block#=1419 bloc
WAIT #8: nam='db file scattered read' ela= 9850 file#=4 block#=1547 block
WAIT #8: nam='db file scattered read' ela= 9841 file#=4 block#=1675 block
WAIT #8: nam='db file scattered read' ela= 10831 file#=4 block#=1803 bloc
WAIT #8: nam='db file scattered read' ela= 9838 file#=4 block#=1931 block
WAIT #8: nam='db file scattered read' ela= 9846 file#=4 block#=2059 block
WAIT #8: nam='db file scattered read' ela= 10833 file#=4 block#=2187 bloc
WAIT #8: nam='db file scattered read' ela= 9777 file#=4 block#=2315 block
WAIT #8: nam='db file scattered read' ela= 9846 file#=4 block#=2443 block
WAIT #8: nam='db file scattered read' ela= 10803 file#=4 block#=2571 bloc
...
WAIT #8: nam='db file scattered read' ela= 9792 file#=4 block#=651785 blo
WAIT #8: nam='db file scattered read' ela= 9850 file#=4 block#=651913 blo
WAIT #8: nam='db file scattered read' ela= 10765 file#=4 block#=652041 bl
WAIT #8: nam='db file scattered read' ela= 12196 file#=4 block#=652170 bl
WAIT #8: nam='db file scattered read' ela= 9846 file#=4 block#=652297 blo
WAIT #8: nam='db file scattered read' ela= 10775 file#=4 block#=652425 bl
WAIT #8: nam='db file scattered read' ela= 2512 file#=4 block#=652553 blo
FETCH #8:c=11906250,e=68787060,p=651354,cr=651991,cu=0,mis=0,r=0,dep=0,og
WAIT #8: nam='SQL*Net message from client' ela= 16292 driver id=141369753
STAT #8 id=1 cnt=0 pid=0 pos=1 obj=11756 op='TABLE ACCESS FULL T1 (cr=651
*************************************************************************

[b]Test 13 8KB UNIFORM 1MB:[/b]


*************************************************************************
SELECT
COUNT(*)
FROM
T2

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ---
Parse 1 0.01 0.01 2 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 2 0.28 1.64 6979 13950 2
------- ------ -------- ---------- ---------- ---------- ---------- ---
total 4 0.29 1.66 6981 13952 2

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=13950 pr=6979 pw=0 time=1647916 us)
1000000 INDEX FAST FULL SCAN T2_IND1 (cr=13950 pr=6979 pw=0 time=321071

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Wa
---------------------------------------- Waited ---------- --------
SQL*Net message to client 2 0.00
db file sequential read 7 0.01
db file parallel read 1 0.28
db file scattered read 110 0.03
SQL*Net message from client 2 0.00
*************************************************************************

[b]Test 13 8KB UNIFORM 1MB:[/b]


*************************************************************************
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ---
Parse 16 0.03 0.08 5 10 0
Execute 17 0.01 0.09 18 142 8
Fetch 642 47.59 173.65 932485 940583 2
------- ------ -------- ---------- ---------- ---------- ---------- ---
total 675 47.64 173.83 932508 940735 10

Misses in library cache during parse: 9


Misses in library cache during execute: 3

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Wa
---------------------------------------- Waited ---------- --------
SQL*Net message to client 668 0.00
SQL*Net message from client 668 0.01
db file sequential read 246703 0.03 6
db file scattered read 6156 0.05 6
db file parallel read 1 0.28
*************************************************************************

[b]Test 14 8KB UNIFORM 1MB:[/b]


*************************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ---
Parse 1 0.01 0.16 0 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 95 83.32 156.69 274014 274108 0
------- ------ -------- ---------- ---------- ---------- ---------- ---
total 97 83.34 156.86 274014 274110 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=274108 pr=274014 pw=0 time=156655409 us)
50000000 INDEX FULL SCAN T1_IND1 (cr=274108 pr=274014 pw=0 time=1000472

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Wa
---------------------------------------- Waited ---------- --------
SQL*Net message to client 95 0.00
db file sequential read 274014 0.02 7
SQL*Net more data to client 85 0.00
SQL*Net message from client 95 0.68
*************************************************************************

[b]Test 15 8KB UNIFORM 1MB:[/b]


*************************************************************************
SELECT DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ---
Parse 1 0.00 0.02 0 0 0
Execute 1 0.00 0.00 0 0 0
Fetch 1 12.14 71.07 651480 651991 0
------- ------ -------- ---------- ---------- ---------- ---------- ---
total 3 12.14 71.09 651480 651991 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 HASH UNIQUE (cr=651991 pr=651480 pw=0 time=71073190 us)
0 TABLE ACCESS FULL T1 (cr=651991 pr=651480 pw=0 time=71073083 us
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Wa
---------------------------------------- Waited ---------- --------
SQL*Net message to client 1 0.00
db file sequential read 11 0.01
db file scattered read 5099 0.05 5
SQL*Net message from client 1 0.01
*************************************************************************
[b]8KB UNIFORM 1MB NO HYPER-THREADING[/b]
[b]#TEST RUN 16 8KB UNIFORM 1MB NO HT[/b]
COUNT(*)
----------
11073

Elapsed: 00:00:00.68

Execution Plan...

Statistics
----------------------------------------------------------
1022 recursive calls
0 db block gets
19639 consistent gets
382 physical reads
116 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
38 sorts (memory)
0 sorts (disk)
1 rows processed

Table created.

Elapsed: 00:02:00.46

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:04.85

System altered.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:09:12.43

Table created.

Elapsed: 00:00:00.67
Index created.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:01.73

System altered.

Elapsed: 00:00:00.01

1000000 rows created.

Elapsed: 00:02:04.07

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 7179 | 988K| 178K (1)| 00:35:37 |
|* 1 | TABLE ACCESS FULL| T1 | 7179 | 988K| 178K (1)| 00:35:37 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("RN"<=100)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
8426 recursive calls
2856404 db block gets
713868 consistent gets
651640 physical reads
470073780 redo size
682 bytes sent via SQL*Net to client
583 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
6 sorts (memory)
0 sorts (disk)
1000000 rows processed

Commit complete.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:16.01

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.03

no rows selected

Elapsed: 00:01:15.50

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 7179 | 988K| 177K (1)| 00:35:35 |
|* 1 | TABLE ACCESS FULL| T1 | 7179 | 988K| 177K (1)| 00:35:35 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("STATUS"='NONE')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
652567 consistent gets
651480 physical reads
0 redo size
1047 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

COUNT(*)
----------
1000000

Elapsed: 00:00:02.40

Execution Plan
----------------------------------------------------------
Plan hash value: 1385691034

-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
-------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 1863 (1)| 00:00:23 |
| 1 | SORT AGGREGATE | | 1 | | |
| 2 | INDEX FAST FULL SCAN| T2_IND1 | 858K| 1863 (1)| 00:00:23 |
-------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
32 recursive calls
3 db block gets
14163 consistent gets
7907 physical reads
506172 redo size
411 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

OWNER OBJECT_NAME
------------------------------ ------------------------------
SUBOBJECT_NAME
------------------------------

9454 rows selected.

Elapsed: 00:01:42.03

Execution Plan
----------------------------------------------------------
Plan hash value: 1118578911

----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time
----------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 41M| 2026M| 806K (1)| 02:41:22
| 1 | SORT UNIQUE NOSORT| | 41M| 2026M| 806K (1)| 02:41:22
| 2 | INDEX FULL SCAN | T1_IND1 | 41M| 2026M| 276K (1)| 00:55:21
----------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
275255 consistent gets
274185 physical reads
0 redo size
299135 bytes sent via SQL*Net to client
7311 bytes received via SQL*Net from client
632 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
9454 rows processed

Session altered.

Elapsed: 00:00:00.00
[b]#TEST RUN 17 8KB UNIFORM 1MB NO HT[/b]
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1;

----------------------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A-Rows | A-Time
----------------------------------------------------------------------------
| 1 | SORT UNIQUE NOSORT| | 1 | 41M| 9454 |00:02:34.71
| 2 | INDEX FULL SCAN | T1_IND1 | 1 | 41M| 50M|00:01:40.05
----------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

[b]#TEST RUN 18 8KB UNIFORM 1MB NO HT[/b]


PL/SQL procedure successfully completed.

Elapsed: 00:02:07.73

PL/SQL procedure successfully completed.

Elapsed: 00:02:10.93

System altered.

Elapsed: 00:00:00.06

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.01

no rows selected

Elapsed: 00:01:08.59

Execution Plan
----------------------------------------------------------
Plan hash value: 2134347679

---------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 31 | 178K (1)| 00:35:37 |
| 1 | HASH UNIQUE | | 1 | 31 | 178K (1)| 00:35:37 |
|* 2 | TABLE ACCESS FULL| T1 | 1 | 31 | 178K (1)| 00:35:37 |
---------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("STATUS"='NONE')

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
651991 consistent gets
651480 physical reads
0 redo size
399 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

Session altered.

Elapsed: 00:00:00.01

TABLE_NAME NUM_ROWS BLOCKS AVG_ROW_LEN


------------------------------ ---------- ---------- -----------
T1 50086655 652598 88
T2

INDEX_NAME BLEVEL LEAF_BLOCKS DISTINCT_KEYS AVG_LEAF


------------------------------ ---------- ----------- ------------- --------
T1_IND1 3 273232 47204490
T2_IND1
----------------------------------------------------
[b]Test 16 8KB UNIFORM 1MB NO HYPER-THREADING:[/b]
****************************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ------
Parse 1 0.00 0.01 1 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 632 33.75 99.50 274183 274678 0
------- ------ -------- ---------- ---------- ---------- ---------- ------
total 634 33.75 99.52 274184 274680 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=274678 pr=274183 pw=0 time=96086174 us)
50000000 INDEX FULL SCAN T1_IND1 (cr=274678 pr=274183 pw=0 time=100021870

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waite
---------------------------------------- Waited ---------- -----------
SQL*Net message to client 632 0.00 0.0
db file scattered read 877 0.04 2.6
db file sequential read 247316 0.03 66.0
SQL*Net message from client 632 0.01 2.3
****************************************************************************

[b]Test 16 8KB UNIFORM 1MB NO HYPER-THREADING:[/b]


****************************************************************************
SELECT
*
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ------
Parse 1 0.00 0.01 1 1 0
Execute 1 0.00 0.00 0 0 0
Fetch 1 12.37 74.71 651354 651991 0
------- ------ -------- ---------- ---------- ---------- ---------- ------
total 3 12.37 74.73 651355 651992 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 TABLE ACCESS FULL T1 (cr=651991 pr=651354 pw=0 time=74716184 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waite
---------------------------------------- Waited ---------- -----------
db file sequential read 1 0.01 0.0
SQL*Net message to client 1 0.00 0.0
db file scattered read 5149 0.05 63.0
SQL*Net message from client 1 0.00 0.0

10046 Trace File:


PARSE #8:c=78125,e=777584,p=126,cr=576,cu=0,mis=1,r=0,dep=0,og=1,tim=1025708
EXEC #8:c=0,e=29,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=1025708796
WAIT #8: nam='SQL*Net message to client' ela= 3 driver id=1413697536 #bytes=
WAIT #8: nam='db file scattered read' ela= 23747 file#=4 block#=13 blocks=12
WAIT #8: nam='db file scattered read' ela= 29340 file#=4 block#=139 blocks=1
WAIT #8: nam='db file scattered read' ela= 24745 file#=4 block#=267 blocks=1
WAIT #8: nam='db file scattered read' ela= 28987 file#=4 block#=395 blocks=1
WAIT #8: nam='db file scattered read' ela= 24659 file#=4 block#=523 blocks=1
WAIT #8: nam='db file scattered read' ela= 29358 file#=4 block#=651 blocks=1
WAIT #8: nam='db file scattered read' ela= 26131 file#=4 block#=779 blocks=1
WAIT #8: nam='db file scattered read' ela= 26882 file#=4 block#=907 blocks=1
WAIT #8: nam='db file scattered read' ela= 27170 file#=4 block#=1035 blocks=
WAIT #8: nam='db file scattered read' ela= 20914 file#=4 block#=1163 blocks=
WAIT #8: nam='db file scattered read' ela= 24740 file#=4 block#=1291 blocks=
WAIT #8: nam='db file scattered read' ela= 12552 file#=4 block#=1419 blocks=
WAIT #8: nam='db file scattered read' ela= 32144 file#=4 block#=1547 blocks=
WAIT #8: nam='db file scattered read' ela= 12595 file#=4 block#=1675 blocks=
WAIT #8: nam='db file scattered read' ela= 49819 file#=4 block#=1803 blocks=
WAIT #8: nam='db file scattered read' ela= 12483 file#=4 block#=1931 blocks=
WAIT #8: nam='db file scattered read' ela= 16472 file#=4 block#=2059 blocks=
WAIT #8: nam='db file scattered read' ela= 12557 file#=4 block#=2187 blocks=
WAIT #8: nam='db file scattered read' ela= 17805 file#=4 block#=2315 blocks=
WAIT #8: nam='db file scattered read' ela= 26915 file#=4 block#=2443 blocks=
WAIT #8: nam='db file scattered read' ela= 10767 file#=4 block#=2571 blocks=
...
WAIT #8: nam='db file scattered read' ela= 9812 file#=4 block#=651913 blocks
WAIT #8: nam='db file scattered read' ela= 10792 file#=4 block#=652041 block
WAIT #8: nam='db file scattered read' ela= 12267 file#=4 block#=652170 block
WAIT #8: nam='db file scattered read' ela= 9792 file#=4 block#=652297 blocks
WAIT #8: nam='db file scattered read' ela= 10790 file#=4 block#=652425 block
WAIT #8: nam='db file scattered read' ela= 2647 file#=4 block#=652553 blocks
FETCH #8:c=12375000,e=74716188,p=651354,cr=651991,cu=0,mis=0,r=0,dep=0,og=1,
WAIT #8: nam='SQL*Net message from client' ela= 611 driver id=1413697536 #by
*** SESSION ID:(215.3) 2008-06-08 19:19:17.562
STAT #8 id=1 cnt=0 pid=0 pos=1 obj=11756 op='TABLE ACCESS FULL T1 (cr=651991
****************************************************************************

[b]Test 16 8KB UNIFORM 1MB NO HYPER-THREADING:[/b]


****************************************************************************
SELECT
COUNT(*)
FROM
T2

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ------
Parse 1 0.00 0.01 2 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 2 0.26 1.57 6974 13934 2
------- ------ -------- ---------- ---------- ---------- ---------- ------
total 4 0.26 1.59 6976 13936 2

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=13934 pr=6974 pw=0 time=1572482 us)
1000000 INDEX FAST FULL SCAN T2_IND1 (cr=13934 pr=6974 pw=0 time=2245925 u

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waite
---------------------------------------- Waited ---------- -----------
SQL*Net message to client 2 0.00 0.0
db file sequential read 2 0.01 0.0
db file parallel read 1 0.20 0.2
db file scattered read 110 0.03 1.0
SQL*Net message from client 2 0.00 0.0
****************************************************************************

[b]Test 16 8KB UNIFORM 1MB NO HYPER-THREADING:[/b]


****************************************************************************
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ------
Parse 16 0.00 0.08 5 10 0
Execute 17 0.03 0.09 19 142 8
Fetch 642 46.39 175.80 932511 940603 2
------- ------ -------- ---------- ---------- ---------- ---------- ------
total 675 46.42 175.97 932535 940755 10

Misses in library cache during parse: 9


Misses in library cache during execute: 3

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waite
---------------------------------------- Waited ---------- -----------
SQL*Net message to client 668 0.00 0.0
SQL*Net message from client 668 0.01 2.4
db file sequential read 247344 0.03 66.1
db file scattered read 6137 0.05 66.7
db file parallel read 1 0.20 0.2
****************************************************************************

[b]Test 17 8KB UNIFORM 1MB NO HYPER-THREADING:[/b]


****************************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ------
Parse 1 0.06 0.16 0 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 95 84.09 154.75 274048 274142 0
------- ------ -------- ---------- ---------- ---------- ---------- ------
total 97 84.15 154.91 274048 274144 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=274142 pr=274048 pw=0 time=154707761 us)
50000000 INDEX FULL SCAN T1_IND1 (cr=274142 pr=274048 pw=0 time=100051703

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waite
---------------------------------------- Waited ---------- -----------
SQL*Net message to client 95 0.00 0.0
db file sequential read 274048 0.03 74.9
SQL*Net more data to client 84 0.00 0.0
SQL*Net message from client 95 0.68 0.7
****************************************************************************

[b]Test 18 8KB UNIFORM 1MB NO HYPER-THREADING:[/b]


****************************************************************************
SELECT DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query current


------- ------ -------- ---------- ---------- ---------- ---------- ------
Parse 1 0.00 0.02 0 0 0
Execute 1 0.00 0.00 0 0 0
Fetch 1 11.68 68.24 651480 651991 0
------- ------ -------- ---------- ---------- ---------- ---------- ------
total 3 11.68 68.26 651480 651991 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 HASH UNIQUE (cr=651991 pr=651480 pw=0 time=68245800 us)
0 TABLE ACCESS FULL T1 (cr=651991 pr=651480 pw=0 time=68245706 us)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waite
---------------------------------------- Waited ---------- -----------
SQL*Net message to client 1 0.00 0.0
db file sequential read 11 0.01 0.0
db file scattered read 5099 0.05 56.7
SQL*Net message from client 1 0.02 0.0
****************************************************************************
[b]16KB UNIFORM 1MB[/b]
[b]#TEST RUN 19 16KB BLOCK SIZE UNIFORM 1MB[/b]
COUNT(*)
----------
11073

Elapsed: 00:00:00.67

Execution Plan...

Statistics
----------------------------------------------------------
641 recursive calls
0 db block gets
19499 consistent gets
209 physical reads
0 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
25 sorts (memory)
0 sorts (disk)
1 rows processed

Table created.

Elapsed: 00:01:53.65

Commit complete.

Elapsed: 00:00:00.00

System altered.

Elapsed: 00:00:03.00

System altered.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:08:41.06

Table created.

Elapsed: 00:00:00.85
Index created.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:01.17

System altered.

Elapsed: 00:00:00.01

1000000 rows created.

Elapsed: 00:01:40.81

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 751K| 101M| 122K (2)| 00:28:38 |
|* 1 | TABLE ACCESS FULL| T1 | 751K| 101M| 122K (2)| 00:28:38 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("RN"<=100)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
8029 recursive calls
2492121 db block gets
353899 consistent gets
321655 physical reads
446333292 redo size
681 bytes sent via SQL*Net to client
583 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
6 sorts (memory)
0 sorts (disk)
1000000 rows processed

Commit complete.

Elapsed: 00:00:00.01

System altered.

Elapsed: 00:00:14.76

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.03

no rows selected

Elapsed: 00:01:08.53

Execution Plan
----------------------------------------------------------
Plan hash value: 3617692013

--------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 3544 | 487K| 122K (2)| 00:28:34 |
|* 1 | TABLE ACCESS FULL| T1 | 3544 | 487K| 122K (2)| 00:28:34 |
--------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

1 - filter("STATUS"='NONE')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
322659 consistent gets
321574 physical reads
0 redo size
1047 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

COUNT(*)
----------
1000000

Elapsed: 00:00:02.57

Execution Plan
----------------------------------------------------------
Plan hash value: 1385691034

-------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
-------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 1232 (1)| 00:00:18 |
| 1 | SORT AGGREGATE | | 1 | | |
| 2 | INDEX FAST FULL SCAN| T2_IND1 | 909K| 1232 (1)| 00:00:18 |
-------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
32 recursive calls
3 db block gets
6815 consistent gets
4034 physical reads
242216 redo size
411 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

OWNER OBJECT_NAME
------------------------------ ------------------------------
SUBOBJECT_NAME
------------------------------

9454 rows selected.

Elapsed: 00:01:18.92

Execution Plan
----------------------------------------------------------
Plan hash value: 1118578911

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 54M| 2666M| 574K (1)| 02:14:01 |
| 1 | SORT UNIQUE NOSORT| | 54M| 2666M| 574K (1)| 02:14:01 |
| 2 | INDEX FULL SCAN | T1_IND1 | 54M| 2666M| 136K (1)| 00:31:51 |
------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
5 recursive calls
0 db block gets
136284 consistent gets
135107 physical reads
0 redo size
299135 bytes sent via SQL*Net to client
7311 bytes received via SQL*Net from client
632 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
9454 rows processed

Session altered.

Elapsed: 00:00:00.00
[b]#TEST RUN 20 16KB BLOCK SIZE UNIFORM 1MB[/b]
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1;

-------------------------------------------------------------------------------
| Id | Operation | Name | Starts | E-Rows | A-Rows | A-Time |
-------------------------------------------------------------------------------
| 1 | SORT UNIQUE NOSORT| | 1 | 54M| 9454 |00:02:10.55 |
| 2 | INDEX FULL SCAN | T1_IND1 | 1 | 54M| 50M|00:01:40.04 |
-------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

[b]#TEST RUN 21 16KB BLOCK SIZE UNIFORM 1MB[/b]


PL/SQL procedure successfully completed.

Elapsed: 00:02:10.01

PL/SQL procedure successfully completed.

Elapsed: 00:02:21.18

System altered.

Elapsed: 00:00:00.07

System altered.

Elapsed: 00:00:00.00

Session altered.

Elapsed: 00:00:00.03

no rows selected

Elapsed: 00:01:07.40

Execution Plan
----------------------------------------------------------
Plan hash value: 2134347679

---------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 33 | 122K (2)| 00:28:32 |
| 1 | HASH UNIQUE | | 1 | 33 | 122K (2)| 00:28:32 |
|* 2 | TABLE ACCESS FULL| T1 | 1 | 33 | 122K (2)| 00:28:32 |
---------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("STATUS"='NONE')

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
322079 consistent gets
321574 physical reads
0 redo size
399 bytes sent via SQL*Net to client
370 bytes received via SQL*Net from client
1 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
0 rows processed

Session altered.

Elapsed: 00:00:00.00

TABLE_NAME NUM_ROWS BLOCKS AVG_ROW_LEN


------------------------------ ---------- ---------- -----------
T1 50113013 322129 88
T2

INDEX_NAME BLEVEL LEAF_BLOCKS DISTINCT_KEYS AVG_LEAF_BL


------------------------------ ---------- ----------- ------------- -----------
T1_IND1 2 139800 48861273
T2_IND1
----------------------------------------------------
[b]Test 19 16KB UNIFORM 1MB:[/b]
*******************************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query current row


------- ------ -------- ---------- ---------- ---------- ---------- ---------
Parse 1 0.00 0.02 1 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 632 29.09 76.03 135106 135703 0 945
------- ------ -------- ---------- ---------- ---------- ---------- ---------
total 634 29.09 76.05 135107 135705 0 945

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=135703 pr=135106 pw=0 time=79117626 us)
50000000 INDEX FULL SCAN T1_IND1 (cr=135703 pr=135106 pw=0 time=100030548 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 632 0.00 0.00
db file scattered read 902 0.02 2.68
db file sequential read 121747 0.04 46.01
SQL*Net message from client 632 0.01 2.76
*******************************************************************************

[b]Test 19 16KB UNIFORM 1MB:[/b]


*******************************************************************************
SELECT
*
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query current row


------- ------ -------- ---------- ---------- ---------- ---------- ---------
Parse 1 0.00 0.01 1 1 0
Execute 1 0.00 0.00 0 0 0
Fetch 1 9.68 67.68 321440 322079 0
------- ------ -------- ---------- ---------- ---------- ---------- ---------
total 3 9.68 67.70 321441 322080 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 TABLE ACCESS FULL T1 (cr=322079 pr=321440 pw=0 time=67682309 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file sequential read 2 0.01 0.01
SQL*Net message to client 1 0.00 0.00
db file scattered read 5098 0.05 58.14
SQL*Net message from client 1 0.02 0.02

10046 Trace File:


PARSE #13:c=125000,e=807591,p=134,cr=580,cu=0,mis=1,r=0,dep=0,og=1,tim=99472865
EXEC #13:c=0,e=27,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,tim=994728829
WAIT #13: nam='SQL*Net message to client' ela= 2 driver id=1413697536 #bytes=1
WAIT #13: nam='db file scattered read' ela= 21658 file#=4 block#=8 blocks=61 ob
WAIT #13: nam='db file scattered read' ela= 10290 file#=4 block#=70 blocks=63 o
WAIT #13: nam='db file scattered read' ela= 34258 file#=4 block#=134 blocks=63
WAIT #13: nam='db file scattered read' ela= 10220 file#=4 block#=198 blocks=63
WAIT #13: nam='db file scattered read' ela= 20595 file#=4 block#=262 blocks=63
WAIT #13: nam='db file scattered read' ela= 11211 file#=4 block#=326 blocks=63
WAIT #13: nam='db file scattered read' ela= 10120 file#=4 block#=390 blocks=63
WAIT #13: nam='db file scattered read' ela= 10254 file#=4 block#=454 blocks=63
WAIT #13: nam='db file scattered read' ela= 11203 file#=4 block#=518 blocks=63
WAIT #13: nam='db file scattered read' ela= 12652 file#=4 block#=582 blocks=63
WAIT #13: nam='db file scattered read' ela= 10240 file#=4 block#=646 blocks=63
WAIT #13: nam='db file scattered read' ela= 11216 file#=4 block#=710 blocks=63
WAIT #13: nam='db file scattered read' ela= 10218 file#=4 block#=774 blocks=63
WAIT #13: nam='db file scattered read' ela= 10141 file#=4 block#=838 blocks=63
WAIT #13: nam='db file scattered read' ela= 11218 file#=4 block#=902 blocks=63
WAIT #13: nam='db file scattered read' ela= 10191 file#=4 block#=966 blocks=63
WAIT #13: nam='db file scattered read' ela= 10250 file#=4 block#=1030 blocks=63
WAIT #13: nam='db file scattered read' ela= 11238 file#=4 block#=1094 blocks=63
WAIT #13: nam='db file scattered read' ela= 10231 file#=4 block#=1158 blocks=63
WAIT #13: nam='db file scattered read' ela= 10230 file#=4 block#=1222 blocks=63
WAIT #13: nam='db file scattered read' ela= 11236 file#=4 block#=1286 blocks=63
...
WAIT #13: nam='db file scattered read' ela= 10944 file#=4 block#=321733 blocks=64 obj#=11766 tim=106
WAIT #13: nam='db file scattered read' ela= 10198 file#=4 block#=321797 blocks=64 obj#=11766 tim=106
WAIT #13: nam='db file scattered read' ela= 10165 file#=4 block#=321861 blocks=64 obj#=11766 tim=106
WAIT #13: nam='db file scattered read' ela= 11204 file#=4 block#=321925 blocks=64 obj#=11766 tim=106
WAIT #13: nam='db file scattered read' ela= 10189 file#=4 block#=321989 blocks=64 obj#=11766 tim=106
WAIT #13: nam='db file scattered read' ela= 10217 file#=4 block#=322053 blocks=64 obj#=11766 tim=106
WAIT #13: nam='db file scattered read' ela= 2336 file#=4 block#=322117 blocks=17 obj#=11766 tim=1062
FETCH #13:c=9687500,e=67682313,p=321440,cr=322079,cu=0,mis=0,r=0,dep=0,og=1,tim=1062411223
WAIT #13: nam='SQL*Net message from client' ela= 28025 driver id=1413697536 #bytes=1 p3=0 obj#=1
STAT #13 id=1 cnt=0 pid=0 pos=1 obj=11766 op='TABLE ACCESS FULL T1 (cr=322079 pr=321440 pw=0
*******************************************************************************

[b]Test 19 16KB UNIFORM 1MB:[/b]


*******************************************************************************
SELECT
COUNT(*)
FROM
T2

call count cpu elapsed disk query current row


------- ------ -------- ---------- ---------- ---------- ---------- ---------
Parse 1 0.00 0.02 2 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 2 0.21 1.72 3332 6655 2
------- ------ -------- ---------- ---------- ---------- ---------- ---------
total 4 0.21 1.74 3334 6657 2

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=6655 pr=3332 pw=0 time=1723813 us)
1000000 INDEX FAST FULL SCAN T2_IND1 (cr=6655 pr=3332 pw=0 time=211293 us)(ob

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 7 0.02 0.06
db file parallel read 1 0.16 0.16
db file scattered read 53 0.03 1.23
SQL*Net message from client 2 0.00 0.00
*******************************************************************************

[b]Test 19 16KB UNIFORM 1MB:[/b]


*******************************************************************************
OVERALL TOTALS FOR ALL NON-RECURSIVE STATEMENTS

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 16 0.00 0.08 5 10 0
Execute 17 0.00 0.07 15 136 8
Fetch 642 39.00 145.44 459878 464437 2 949
------- ------ -------- ---------- ---------- ---------- ---------- ---------
total 675 39.00 145.60 459898 464583 10 950

Misses in library cache during parse: 9


Misses in library cache during execute: 3

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 668 0.00 0.00
SQL*Net message from client 668 0.02 2.80
db file sequential read 121778 0.04 46.24
db file scattered read 6053 0.05 62.06
db file parallel read 1 0.16 0.16
*******************************************************************************

[b]Test 20 16KB UNIFORM 1MB:[/b]


*******************************************************************************
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1

call count cpu elapsed disk query current row


------- ------ -------- ---------- ---------- ---------- ---------- ---------
Parse 1 0.07 0.14 0 2 0
Execute 1 0.00 0.00 0 0 0
Fetch 95 77.56 130.58 135072 135166 0 945
------- ------ -------- ---------- ---------- ---------- ---------- ---------
total 97 77.64 130.73 135072 135168 0 945

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
9454 SORT UNIQUE NOSORT (cr=135166 pr=135072 pw=0 time=130551689 us)
50000000 INDEX FULL SCAN T1_IND1 (cr=135166 pr=135072 pw=0 time=100037933 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 95 0.00 0.00
db file sequential read 135072 0.03 54.33
SQL*Net more data to client 84 0.00 0.00
SQL*Net message from client 95 0.11 0.15
*******************************************************************************

[b]Test 21 16KB UNIFORM 1MB:[/b]


*******************************************************************************
SELECT DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1
WHERE
STATUS='NONE'

call count cpu elapsed disk query current row


------- ------ -------- ---------- ---------- ---------- ---------- ---------
Parse 1 0.00 0.01 0 0 0
Execute 1 0.00 0.00 0 0 0
Fetch 1 9.23 67.17 321574 322079 0
------- ------ -------- ---------- ---------- ---------- ---------- ---------
total 3 9.23 67.18 321574 322079 0

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 HASH UNIQUE (cr=322079 pr=321574 pw=0 time=67171002 us)
0 TABLE ACCESS FULL T1 (cr=322079 pr=321574 pw=0 time=67170929 us)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
db file sequential read 6 0.01 0.03
db file scattered read 5034 0.04 57.78
SQL*Net message from client 1 0.04 0.04
*******************************************************************************
rows
----------
#INITIALIZATION PARAMETERS 8KB BLOCK
background_core_dump=partial
cluster_database=FALSE
compatible=10.2.0.2.0
control_files=("C:\oracle\OraData\TEST8\ctlTEST801.ctl", "C:\oracle\flash_recovery_area\TEST8
control_file_record_keep_time=7
cursor_sharing=EXACT
cursor_space_for_time=true
db_block_size=8192
db_cache_advice=on
db_block_checking=false
db_block_checksum=typical
db_domain=world
db_files=200
db_flashback_retention_target=1440
db_name=TEST8
db_recovery_file_dest_size=14000M
db_recovery_file_dest=C:\oracle\flash_recovery_area
db_unique_name=TEST8
db_writer_processes=1
global_names=false
instance_name=TEST8
java_pool_size=1M
job_queue_processes=10
log_archive_format=arc%s_%r.%t
log_buffer=1048576
log_checkpoint_interval=65536
log_checkpoint_timeout=3600
log_checkpoints_to_alert=false
max_dump_file_size=202400
nls_language=american
nls_territory=america
O7_DICTIONARY_ACCESSIBILITY=TRUE
open_cursors=1000
open_links=4
optimizer_dynamic_sampling=2
optimizer_features_enable=10.2.0.2
optimizer_index_caching=0
optimizer_index_cost_adj=100
optimizer_mode=ALL_ROWS
pga_aggregate_target=300M
plsql_code_type=INTERPRETED
processes=210
query_rewrite_enabled=FALSE
query_rewrite_integrity=TRUSTED
recyclebin=ON
remote_login_passwordfile=EXCLUSIVE
service_names=TEST8
sessions=236
session_cached_cursors=200
sga_max_size=1100M
sga_target=900M
star_transformation_enabled=FALSE
statistics_level=typical
timed_statistics=true
transactions=259
transactions_per_rollback_segment=5
undo_management=AUTO
undo_retention=1800
undo_tablespace=ROLLBACK_DATA
workarea_size_policy=auto
background_dump_dest=C:\oracle\product\10.2.0\admin\TEST8\bdump
core_dump_dest=C:\oracle\product\10.2.0\admin\TEST8\cdump
user_dump_dest=C:\oracle\product\10.2.0\admin\TEST8\udump
utl_file_dir=C:\oracle\product\10.2.0\admin\TEST8\udump

#INITIALIZATION PARAMETER MODIFICATIONS FOR 16KB BLOCK


control_files=("C:\oracle\OraData\test16\ctltest1601.ctl", "C:\oracle\flash_recovery_area\tes
db_block_size=16384
background_dump_dest=C:\oracle\product\10.2.0\admin\test16\bdump
core_dump_dest=C:\oracle\product\10.2.0\admin\test16\cdump
user_dump_dest=C:\oracle\product\10.2.0\admin\test16\udump
utl_file_dir=C:\oracle\product\10.2.0\admin\test16\udump

#CREATE DATABASE COMMAND FOR 8KB BLOCK SIZE:


CREATE DATABASE "TEST8"
MAXINSTANCES 8
MAXLOGHISTORY 1
MAXLOGFILES 20
MAXLOGMEMBERS 3
MAXDATAFILES 100
DATAFILE 'c:\oracle\oradata\TEST8\SystemTEST801.dbf' SIZE 700M AUTOEXTEND ON NEXT 20M MAXSIZE
SYSAUX DATAFILE 'c:\oracle\oradata\TEST8\SysauxTEST801.dbf' SIZE 300M AUTOEXTEND ON NEXT 10M
SMALLFILE DEFAULT TEMPORARY TABLESPACE TEMPORARY_DATA1 TEMPFILE 'c:\oracle\oradata\TEST8\TmpT
SMALLFILE UNDO TABLESPACE "ROLLBACK_DATA" DATAFILE 'c:\oracle\oradata\TEST8\undotbsTEST801.db
CHARACTER SET WE8MSWIN1252
NATIONAL CHARACTER SET AL16UTF16
LOGFILE GROUP 1 ('c:\oracle\oradata\TEST8\RedoTEST801.log') SIZE 512M,
GROUP 2 ('c:\oracle\oradata\TEST8\RedoTEST802.log') SIZE 512M,
GROUP 3 ('c:\oracle\oradata\TEST8\RedoTEST803.log') SIZE 512M,
GROUP 4 ('c:\oracle\oradata\TEST8\RedoTEST804.log') SIZE 512M,
GROUP 5 ('c:\oracle\oradata\TEST8\RedoTEST805.log') SIZE 512M,
GROUP 6 ('c:\oracle\oradata\TEST8\RedoTEST806.log') SIZE 512M
USER SYS IDENTIFIED BY "&&sysPassword" USER SYSTEM IDENTIFIED BY "&&systemPassword";
CREATE SMALLFILE TABLESPACE "USER_DATA" LOGGING DATAFILE 'C:\oracle\oradata\TEST8\usrTEST801.

#CREATE DATABASE COMMAND FOR 16KB BLOCK SIZE:


CREATE DATABASE "test16"
MAXINSTANCES 8
MAXLOGHISTORY 1
MAXLOGFILES 20
MAXLOGMEMBERS 3
MAXDATAFILES 100
DATAFILE 'c:\oracle\oradata\test16\Systemtest1601.dbf' SIZE 700M AUTOEXTEND ON NEXT 20M MAXSI
SYSAUX DATAFILE 'c:\oracle\oradata\test16\Sysauxtest1601.dbf' SIZE 300M AUTOEXTEND ON NEXT 10
SMALLFILE DEFAULT TEMPORARY TABLESPACE TEMPORARY_DATA1 TEMPFILE 'c:\oracle\oradata\test16\Tmp
SMALLFILE UNDO TABLESPACE "ROLLBACK_DATA" DATAFILE 'c:\oracle\oradata\test16\undotbstest1601.
CHARACTER SET WE8MSWIN1252
NATIONAL CHARACTER SET AL16UTF16
LOGFILE GROUP 1 ('c:\oracle\oradata\test16\Redotest1601.log') SIZE 512M,
GROUP 2 ('c:\oracle\oradata\test16\Redotest1602.log') SIZE 512M,
GROUP 3 ('c:\oracle\oradata\test16\Redotest1603.log') SIZE 512M,
GROUP 4 ('c:\oracle\oradata\test16\Redotest1604.log') SIZE 512M,
GROUP 5 ('c:\oracle\oradata\test16\Redotest1605.log') SIZE 512M,
GROUP 6 ('c:\oracle\oradata\test16\Redotest1606.log') SIZE 512M
USER SYS IDENTIFIED BY "&&sysPassword" USER SYSTEM IDENTIFIED BY "&&systemPassword";
CREATE SMALLFILE TABLESPACE "USER_DATA" LOGGING DATAFILE 'C:\oracle\oradata\test16\usrtest160

The tests:
#######################
#TEST RUN 1 AFTER A RESTART, ONLY 16KB DTAABASE INSTANCE STARTED
ALTER SYSTEM FLUSH BUFFER_CACHE;
ALTER SYSTEM FLUSH BUFFER_CACHE;

spool c:\test16.txt
set autotrace on
set timing on

SELECT
COUNT(*)
FROM
ALL_OBJECTS;

CREATE TABLE T1 AS
SELECT
A.*,
RN
FROM
(SELECT
*
FROM
ALL_OBJECTS A
WHERE
ROWNUM<=10000) A,
(SELECT
ROWNUM RN
FROM
DUAL
CONNECT BY
LEVEL<=5000);

COMMIT;

ALTER SYSTEM FLUSH BUFFER_CACHE;


ALTER SYSTEM FLUSH BUFFER_CACHE;

CREATE INDEX T1_IND1 ON T1(OWNER,OBJECT_NAME,SUBOBJECT_NAME,RN);

CREATE TABLE T2 AS
SELECT
*
FROM
T1
WHERE
1=2;

CREATE INDEX T2_IND1 ON T2(OWNER,OBJECT_NAME,SUBOBJECT_NAME,RN);

ALTER SYSTEM FLUSH BUFFER_CACHE;


ALTER SYSTEM FLUSH BUFFER_CACHE;

INSERT INTO T2
SELECT
*
FROM
T1
WHERE
RN<=100;

COMMIT;

ALTER SYSTEM FLUSH BUFFER_CACHE;


ALTER SYSTEM FLUSH BUFFER_CACHE;

ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT FOREVER, LEVEL 8';

SELECT
*
FROM
T1
WHERE
STATUS='NONE';

SELECT
COUNT(*)
FROM
T2;

SELECT /*+ INDEX(T1) */ DISTINCT


OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1;

ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT OFF';

SPOOL OFF

ALTER SYSTEM FLUSH BUFFER_CACHE;


ALTER SYSTEM FLUSH BUFFER_CACHE;
#######################

#TEST RUN 2 IN SECOND SESSION WITH 10046 TRACE LEVEL 8, 10053 TRACE LEVEL 1, SESSION LEVEL ST
SELECT /*+ INDEX(T1) */ DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1;
#######################

#TEST RUN 3 AFTER A RESTART, ONLY 16KB DTAABASE INSTANCE STARTED


spool c:\test16-2.txt
set autotrace on
set timing on

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'T1',CASCADE=>TRUE);

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'T1',CASCADE=>TRUE);

ALTER SYSTEM FLUSH BUFFER_CACHE;


ALTER SYSTEM FLUSH BUFFER_CACHE;

ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT FOREVER, LEVEL 8';
SELECT DISTINCT
OWNER,
OBJECT_NAME,
SUBOBJECT_NAME
FROM
T1
WHERE
STATUS='NONE';

ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT OFF';

SELECT
TABLE_NAME,
NUM_ROWS,
BLOCKS,
AVG_ROW_LEN
FROM
USER_TABLES
WHERE
TABLE_NAME IN ('T1','T2');

SELECT
INDEX_NAME,
BLEVEL,
LEAF_BLOCKS,
DISTINCT_KEYS,
AVG_LEAF_BLOCKS_PER_KEY,
AVG_DATA_BLOCKS_PER_KEY,
CLUSTERING_FACTOR
FROM
USER_INDEXES
WHERE
TABLE_NAME IN ('T1','T2');

SPOOL OFF
#######################

#######################
#TEST RUN 4 AFTER A RESTART, ONLY 8KB DTAABASE INSTANCE STARTED
#SAME AS TEST RUN 1, EXCEPT SPOOL TO c:\test8.txt
#######################

#TEST RUN 5 IN SECOND SESSION WITH 10046 TRACE LEVEL 8, 10053 TRACE LEVEL 1, SESSION LEVEL ST
#SAME AS TEST RUN 2
#######################

#TEST RUN 6 AFTER A RESTART, ONLY 8KB DTAABASE INSTANCE STARTED


#SAME AS TEST RUN 3
#######################
Test Run Num Name
8KB Start 101 _4031_DUMP_BITVEC
8KB Start 103 _4031_DUMP_INTERVAL
8KB Start 102 _4031_MAX_DUMPS
8KB Start 104 _4031_SGA_DUMP_INTERVAL
8KB Start 105 _4031_SGA_MAX_DUMPS
8KB Start 308 _ABORT_RECOVERY_ON_JOIN
8KB Start 226 _ACCEPT_VERSIONS
8KB Start 247 ACTIVE_INSTANCE_COUNT
8KB Start 248 _ACTIVE_STANDBY_FAST_RECONFIGURATION
8KB Start 607 _ADAPTIVE_DIRECT_READ
8KB Start 882 _ADAPTIVE_FETCH_ENABLED
8KB Start 1408 _ADDM_AUTO_ENABLE
8KB Start 1410 _ADDM_SKIPRULES
8KB Start 1409 _ADDM_VERSION_CHECK
8KB Start 1034 _ADD_STALE_MV_TO_DEPENDENCY_LIST
8KB Start 848 _ADJUST_LITERAL_REPLACEMENT
8KB Start 871 _AFFINITY_ON
8KB Start 177 _AIOWAIT_TIMEOUTS
8KB Start 1377 _ALERT_EXPIRATION
8KB Start 1378 _ALERT_MESSAGE_CLEANUP
8KB Start 1379 _ALERT_MESSAGE_PURGE
8KB Start 1380 _ALERT_POST_BACKGROUND
8KB Start 692 _ALLOCATE_CREATION_ORDER
8KB Start 701 _ALLOCATION_UPDATE_INTERVAL
8KB Start 1173 _ALLOW_COMMUTATIVITY
8KB Start 569 _ALLOW_ERROR_SIMULATION
8KB Start 1182 _ALLOW_LEVEL_WITHOUT_CONNECT_BY
8KB Start 621 _ALLOW_READ_ONLY_CORRUPTION
8KB Start 619 _ALLOW_RESETLOGS_CORRUPTION
8KB Start 620 _ALLOW_TERMINAL_RECOVERY_CORRUPTION
8KB Start 909 _ALL_SHARED_DBLINKS
8KB Start 745 _ALTERNATE_IOT_LEAF_BLOCK_SPLIT_POINTS
8KB Start 938 _ALWAYS_ANTI_JOIN
8KB Start 1004 _ALWAYS_SEMI_JOIN
8KB Start 940 _ALWAYS_STAR_TRANSFORMATION
8KB Start 791 _APP_CTX_VERS
8KB Start 1255 AQ_TM_PROCESSES
8KB Start 1256 _AQ_TM_SCANLIMIT
8KB Start 534 ARCHIVE_LAG_TARGET
8KB Start 187 _ARCH_IO_SLAVES
8KB Start 1122 _ARRAY_UPDATE_VECTOR_READ_ENABLED
8KB Start 1403 _ASH_DISK_FILTER_RATIO
8KB Start 1402 _ASH_DISK_WRITE_ENABLE
8KB Start 1406 _ASH_DUMMY_TEST_PARAM
8KB Start 1404 _ASH_EFLUSH_TRIGGER
8KB Start 1401 _ASH_ENABLE
8KB Start 1405 _ASH_SAMPLE_ALL
8KB Start 1399 _ASH_SAMPLING_INTERVAL
8KB Start 1400 _ASH_SIZE
8KB Start 1367 _ASMLIB_TEST
8KB Start 1369 _ASMSID
8KB Start 1363 _ASM_ACD_CHUNKS
8KB Start 1366 _ASM_ALLOW_ONLY_RAW_DISKS
8KB Start 1368 _ASM_ALLOW_RESILVER_CORRUPTION
8KB Start 1361 _ASM_AUSIZE
8KB Start 1362 _ASM_BLKSIZE
8KB Start 1359 ASM_DISKGROUPS
8KB Start 1355 ASM_DISKSTRING
8KB Start 1356 _ASM_DISK_REPAIR_TIME
8KB Start 1373 _ASM_DROPTIMEOUT
8KB Start 1374 _ASM_EMULMAX
8KB Start 1375 _ASM_EMULTIMEOUT
8KB Start 1376 _ASM_KFDPEVENT
8KB Start 1364 _ASM_LIBRARIES
8KB Start 1365 _ASM_MAXIO
8KB Start 1360 ASM_POWER_LIMIT
8KB Start 1372 _ASM_STRIPESIZE
8KB Start 1371 _ASM_STRIPEWIDTH
8KB Start 1370 _ASM_WAIT_TIME
8KB Start 695 _ASSM_DEFAULT
8KB Start 591 _ASYNC_RECOVERY_CLAIMS
8KB Start 590 _ASYNC_RECOVERY_READS
8KB Start 889 AUDIT_FILE_DEST
8KB Start 793 AUDIT_SYS_OPERATIONS
8KB Start 916 AUDIT_TRAIL
8KB Start 592 _AVOID_PREPARE
8KB Start 1384 _AWR_CORRUPT_MODE
8KB Start 1390 _AWR_DISABLED_FLUSH_TABLES
8KB Start 1388 _AWR_FLUSH_THRESHOLD_METRICS
8KB Start 1389 _AWR_FLUSH_WORKLOAD_METRICS
8KB Start 1393 _AWR_MMON_CPUUSAGE
8KB Start 1385 _AWR_RESTRICT_MODE
8KB Start 1396 _AWR_SQL_CHILD_LIMIT
8KB Start 891 BACKGROUND_CORE_DUMP
8KB Start 892 BACKGROUND_DUMP_DEST
8KB Start 188 _BACKUP_DISK_IO_SLAVES
8KB Start 190 _BACKUP_IO_POOL_SIZE
8KB Start 627 _BACKUP_KGC_BUFSZ
8KB Start 629 _BACKUP_KGC_NITERS
8KB Start 628 _BACKUP_KGC_TYPE
8KB Start 631 _BACKUP_KSFQ_BUFCNT
8KB Start 630 _BACKUP_KSFQ_BUFSZ
8KB Start 632 _BACKUP_MAX_GAP_SIZE
8KB Start 189 BACKUP_TAPE_IO_SLAVES
8KB Start 649 _BCT_BITMAPS_PER_FILE
8KB Start 655 _BCT_BUFFER_ALLOCATION_MAX
8KB Start 656 _BCT_BUFFER_ALLOCATION_MIN_EXTENTS
8KB Start 654 _BCT_BUFFER_ALLOCATION_SIZE
8KB Start 652 _BCT_CHUNK_SIZE
8KB Start 653 _BCT_CRASH_RESERVE_SIZE
8KB Start 650 _BCT_FILE_BLOCK_SIZE
8KB Start 651 _BCT_FILE_EXTENT_SIZE
8KB Start 657 _BCT_FIXTAB_FILE
8KB Start 648 _BCT_INITIAL_PRIVATE_DBA_BUFFER_SIZE
8KB Start 647 _BCT_PUBLIC_DBA_BUFFER_SIZE
8KB Start 845 BITMAP_MERGE_AREA_SIZE
8KB Start 1110 _BITMAP_OR_IMPROVEMENT_ENABLED
8KB Start 937 BLANK_TRIMMING
8KB Start 311 _BLOCKS_PER_CACHE_SERVER
8KB Start 658 _BLOCK_CHANGE_TRACKING
8KB Start 1199 _BLOOM_FILTER_DEBUG
8KB Start 1198 _BLOOM_FILTER_ENABLED
8KB Start 1033 _BT_MMV_QUERY_REWRITE_ENABLED
8KB Start 441 _BUFFER_BUSY_WAIT_TIMEOUT
8KB Start 409 BUFFER_POOL_KEEP
8KB Start 410 BUFFER_POOL_RECYCLE
8KB Start 1258 _BUFQ_FLOW_CONTROL_THRSH
8KB Start 1259 _BUFQ_MAX_MSG_SZ
8KB Start 1257 _BUFQ_STOP_FLOW_CONTROL
8KB Start 1249 _BUILD_DEFERRED_MV_SKIPPING_MVLOG_UPDATE
8KB Start 694 _BUMP_HIGHWATER_MARK_COUNT
8KB Start 593 _BWR_FOR_FLUSHED_PI
8KB Start 941 _B_TREE_BITMAP_PLANS
8KB Start 1160 _CACHE_STATS_MONITOR
8KB Start 330 _CGS_RECONFIG_TIMEOUT
8KB Start 324 _CGS_SEND_TIMEOUT
8KB Start 432 _CHECK_BLOCK_AFTER_CHECKSUM
8KB Start 705 _CHECK_TS_THRESHOLD
8KB Start 809 CIRCUITS
8KB Start 716 _CLEANUP_ROLLBACK_ENTRIES
8KB Start 910 _CLOSE_CACHED_OPEN_CURSORS
8KB Start 554 CLUSTER_DATABASE
8KB Start 557 CLUSTER_DATABASE_INSTANCES
8KB Start 203 CLUSTER_INTERCONNECTS
8KB Start 329 _CLUSTER_LIBRARY
8KB Start 49 _COLLAPSE_WAIT_HISTORY
8KB Start 721 _COLLECT_UNDO_STATS
8KB Start 1129 _COLUMN_COMPRESSION_FACTOR
8KB Start 943 _COLUMN_ELIMINATION_OFF
8KB Start 1067 _COLUMN_TRACKING_LEVEL
8KB Start 801 COMMIT_POINT_STRENGTH
8KB Start 912 COMMIT_WRITE
8KB Start 461 COMPATIBLE
8KB Start 1233 _COMPILATION_CALL_HEAP_EXTENT_SIZE
8KB Start 951 _COMPLEX_VIEW_MERGING
8KB Start 355 _CONTROLFILE_BLOCK_SIZE
8KB Start 354 _CONTROLFILE_ENQUEUE_DUMP
8KB Start 352 _CONTROLFILE_ENQUEUE_TIMEOUT
8KB Start 356 _CONTROLFILE_SECTION_INIT_SIZE
8KB Start 357 _CONTROLFILE_SECTION_MAX_EXPAND
8KB Start 353 _CONTROLFILE_UPDATE_CHECK
8KB Start 351 CONTROL_FILES
8KB Start 360 CONTROL_FILE_RECORD_KEEP_TIME
8KB Start 956 _CONVERT_SET_TO_JOIN
8KB Start 625 _COORD_MESSAGE_BUFFER
8KB Start 895 CORE_DUMP_DEST
8KB Start 713 _CORRUPTED_ROLLBACK_SEGMENTS
8KB Start 1063 _COST_EQUALITY_SEMI_JOIN
8KB Start 52 CPU_COUNT
8KB Start 944 _CPU_TO_IO
8KB Start 844 CREATE_BITMAP_AREA_SIZE
8KB Start 772 CREATE_STORED_OUTLINES
8KB Start 314 _CR_GRANT_GLOBAL_ROLE
8KB Start 315 _CR_GRANT_LOCAL_ROLE
8KB Start 588 _CR_SERVER_LOG_FLUSH
8KB Start 1112 _CTAS_HWM_BROKERED_LOADS
8KB Start 1145 _CURSOR_BIND_CAPTURE_AREA_SIZE
8KB Start 1146 _CURSOR_BIND_CAPTURE_INTERVAL
8KB Start 774 _CURSOR_CACHE_FRAME_BIND_MEMORY
8KB Start 877 _CURSOR_DB_BUFFERS_PINNED
8KB Start 775 _CURSOR_FEATURES_ENABLED
8KB Start 1070 _CURSOR_PLAN_ENABLED
8KB Start 1188 _CURSOR_PLAN_HASH_VERSION
8KB Start 1194 _CURSOR_PLAN_UNPARSE_ENABLED
8KB Start 847 CURSOR_SHARING
8KB Start 820 CURSOR_SPACE_FOR_TIME
8KB Start 778 _CURSOR_STATS_BUCKET
8KB Start 779 _CURSOR_STATS_HEAP
8KB Start 53 _DBG_PROC_STARTUP
8KB Start 375 _DBWR_ASYNC_IO
8KB Start 185 DBWR_IO_SLAVES
8KB Start 400 _DBWR_SCAN_INTERVAL
8KB Start 368 _DBWR_TRACING
8KB Start 384 DB_16K_CACHE_SIZE
8KB Start 381 DB_2K_CACHE_SIZE
8KB Start 385 DB_32K_CACHE_SIZE
8KB Start 382 DB_4K_CACHE_SIZE
8KB Start 383 DB_8K_CACHE_SIZE
8KB Start 416 _DB_AGING_COOL_COUNT
8KB Start 418 _DB_AGING_FREEZE_CR
8KB Start 414 _DB_AGING_HOT_CRITERIA
8KB Start 415 _DB_AGING_STAY_COUNT
8KB Start 417 _DB_AGING_TOUCH_TIME
8KB Start 464 _DB_ALWAYS_CHECK_SYSTEM_TS
8KB Start 437 _DB_BLOCK_ADJCHECK
8KB Start 436 _DB_BLOCK_ADJCHK_LEVEL
8KB Start 608 _DB_BLOCK_ALIGN_DIRECT_READ
8KB Start 363 _DB_BLOCK_BUFFERS
8KB Start 362 DB_BLOCK_BUFFERS
8KB Start 424 _DB_BLOCK_CACHE_CLONE
8KB Start 444 _DB_BLOCK_CACHE_HISTORY
8KB Start 445 _DB_BLOCK_CACHE_HISTORY_LEVEL
8KB Start 374 _DB_BLOCK_CACHE_NUM_UMAP
8KB Start 364 _DB_BLOCK_CACHE_PROTECT
8KB Start 365 _DB_BLOCK_CACHE_PROTECT_INTERNAL
8KB Start 743 DB_BLOCK_CHECKING
8KB Start 366 DB_BLOCK_CHECKSUM
8KB Start 463 _DB_BLOCK_CHECK_FOR_DEBUG
8KB Start 438 _DB_BLOCK_CHECK_OBJTYP
8KB Start 439 _DB_BLOCK_DO_FULL_MBREADS
8KB Start 419 _DB_BLOCK_HASH_BUCKETS
8KB Start 420 _DB_BLOCK_HASH_LATCHES
8KB Start 398 _DB_BLOCK_HI_PRIORITY_BATCH_SIZE
8KB Start 392 _DB_BLOCK_KNOWN_CLEAN_PCT
8KB Start 388 _DB_BLOCK_LRU_LATCHES
8KB Start 426 _DB_BLOCK_MAX_CR_DBA
8KB Start 393 _DB_BLOCK_MAX_SCAN_PCT
8KB Start 397 _DB_BLOCK_MED_PRIORITY_BATCH_SIZE
8KB Start 380 _DB_BLOCK_NUMA
8KB Start 407 _DB_BLOCK_PREFETCH_LIMIT
8KB Start 406 _DB_BLOCK_PREFETCH_QUOTA
8KB Start 367 DB_BLOCK_SIZE
8KB Start 446 _DB_BLOCK_TABLE_SCAN_BUFFER_SIZE
8KB Start 435 _DB_BLOCK_TEMP_REDO
8KB Start 425 _DB_BLOCK_TRACE_PROTECT
8KB Start 449 DB_CACHE_ADVICE
8KB Start 451 _DB_CACHE_ADVICE_BATCH_SIZE
8KB Start 450 _DB_CACHE_ADVICE_SAMPLE_FACTOR
8KB Start 442 _DB_CACHE_CRX_CHECK
8KB Start 408 _DB_CACHE_PRE_WARM
8KB Start 448 _DB_CACHE_PROCESS_CR_PIN_MAX
8KB Start 379 DB_CACHE_SIZE
8KB Start 378 __DB_CACHE_SIZE
8KB Start 740 _DB_CHANGE_NOTIFICATION_ENABLE
8KB Start 558 DB_CREATE_FILE_DEST
8KB Start 559 DB_CREATE_ONLINE_LOG_DEST_1
8KB Start 560 DB_CREATE_ONLINE_LOG_DEST_2
8KB Start 561 DB_CREATE_ONLINE_LOG_DEST_3
8KB Start 562 DB_CREATE_ONLINE_LOG_DEST_4
8KB Start 563 DB_CREATE_ONLINE_LOG_DEST_5
8KB Start 797 DB_DOMAIN
8KB Start 434 _DB_FAST_OBJ_CHECK
8KB Start 371 _DB_FAST_OBJ_CKPT
8KB Start 370 _DB_FAST_OBJ_TRUNCATE
8KB Start 548 DB_FILES
8KB Start 179 _DB_FILE_DIRECT_IO_COUNT
8KB Start 550 _DB_FILE_EXEC_READ_COUNT
8KB Start 570 _DB_FILE_FORMAT_IO_BUFFERS
8KB Start 549 DB_FILE_MULTIBLOCK_READ_COUNT
8KB Start 358 DB_FILE_NAME_CONVERT
8KB Start 552 _DB_FILE_NONCONTIG_MBLOCK_READ_COUNT
8KB Start 551 _DB_FILE_OPTIMIZER_READ_COUNT
8KB Start 660 DB_FLASHBACK_RETENTION_TARGET
8KB Start 421 _DB_HANDLES
8KB Start 422 _DB_HANDLES_CACHED
8KB Start 443 _DB_HOT_BLOCK_TRACKING
8KB Start 742 _DB_INDEX_BLOCK_CHECKING
8KB Start 386 DB_KEEP_CACHE_SIZE
8KB Start 394 _DB_LARGE_DIRTY_QUEUE
8KB Start 377 _DB_LOST_WRITE_CHECKING
8KB Start 452 _DB_MTTR_ADVICE
8KB Start 455 _DB_MTTR_PARTITIONS
8KB Start 454 _DB_MTTR_SAMPLE_FACTOR
8KB Start 453 _DB_MTTR_SIM_TARGET
8KB Start 456 _DB_MTTR_SIM_TRACE_SIZE
8KB Start 457 _DB_MTTR_TRACE_TO_ALERT
8KB Start 923 DB_NAME
8KB Start 447 _DB_OBJ_CKPT_ORDERED
8KB Start 372 _DB_OBJ_ENABLE_KSR
8KB Start 411 _DB_PERCENT_HOT_DEFAULT
8KB Start 412 _DB_PERCENT_HOT_KEEP
8KB Start 413 _DB_PERCENT_HOT_RECYCLE
8KB Start 389 _DB_PERCPU_CREATE_CACHESIZE
8KB Start 564 DB_RECOVERY_FILE_DEST
8KB Start 565 DB_RECOVERY_FILE_DEST_SIZE
8KB Start 566 _DB_RECOVERY_TEMPORAL_FILE_DEST
8KB Start 387 DB_RECYCLE_CACHE_SIZE
8KB Start 741 _DB_ROW_OVERLAP_CHECKING
8KB Start 390 _DB_TODEFER_CACHE_CREATE
8KB Start 924 DB_UNIQUE_NAME
8KB Start 396 _DB_WRITER_CHUNK_WRITES
8KB Start 403 _DB_WRITER_COALESCE_AREA_SIZE
8KB Start 402 _DB_WRITER_COALESCE_WRITE_LIMIT
8KB Start 401 _DB_WRITER_FLUSH_IMU
8KB Start 399 _DB_WRITER_HISTOGRAM_STATISTICS
8KB Start 395 _DB_WRITER_MAX_WRITES
8KB Start 391 DB_WRITER_PROCESSES
8KB Start 405 _DB_WRITER_VERIFY_WRITES
8KB Start 682 DDL_WAIT_FOR_LOCKS
8KB Start 48 _DEAD_PROCESS_SCAN_INTERVAL
8KB Start 896 _DEBUG_ENABLE
8KB Start 817 _DEDICATED_SERVER_POLL_COUNT
8KB Start 819 _DEDICATED_SERVER_POST_WAIT
8KB Start 818 _DEDICATED_SERVER_POST_WAIT_CALL
8KB Start 794 _DEFAULT_ENCRYPT_ALG
8KB Start 1064 _DEFAULT_NON_EQUALITY_SEL_CHECK
8KB Start 1186 _DELAY_INDEX_MAINTAIN
8KB Start 1263 DG_BROKER_CONFIG_FILE1
8KB Start 1264 DG_BROKER_CONFIG_FILE2
8KB Start 804 __DG_BROKER_SERVICE_NAMES
8KB Start 1261 DG_BROKER_START
8KB Start 228 _DIAG_DAEMON
8KB Start 213 _DIAG_DIAGNOSTICS
8KB Start 1246 _DIMENSION_SKIP_NULL
8KB Start 1211 _DISABLE_ADAPTIVE_SHRUNK_AGGREGATION
8KB Start 1014 _DISABLE_DATALAYER_SAMPLING
8KB Start 212 _DISABLE_DUPLEX_LINK
8KB Start 1210 _DISABLE_FAST_AGGREGATION
8KB Start 170 _DISABLE_FILE_LOCKS
8KB Start 1189 _DISABLE_FUNCTION_BASED_INDEX
8KB Start 225 _DISABLE_HEALTH_CHECK
8KB Start 36 _DISABLE_IMAGE_CHECK
8KB Start 610 _DISABLE_INCREMENTAL_CHECKPOINTS
8KB Start 643 _DISABLE_INCREMENTAL_RECOVERY_CKPT
8KB Start 130 _DISABLE_INSTANCE_PARAMS_CHECK
8KB Start 214 _DISABLE_INTERFACE_CHECKING
8KB Start 41 _DISABLE_KCBHXOR_OSD
8KB Start 349 _DISABLE_LATCH_FREE_SCN_WRITES_VIA_32CAS
8KB Start 350 _DISABLE_LATCH_FREE_SCN_WRITES_VIA_64CAS
8KB Start 547 _DISABLE_LOGGING
8KB Start 369 _DISABLE_MULTIPLE_BLOCK_SIZES
8KB Start 898 _DISABLE_NTLOG_EVENTS
8KB Start 172 _DISABLE_ODM
8KB Start 641 _DISABLE_RECOVERABLE_RECOVERY
8KB Start 468 _DISABLE_RECOVERY_READ_SKIP
8KB Start 1015 _DISABLE_SAMPLE_IO_OPTIM
8KB Start 911 _DISABLE_SAVEPOINT_RESET
8KB Start 612 _DISABLE_SELFTUNE_CHECKPOINTING
8KB Start 337 _DISABLE_STREAMS_POOL_AUTO_TUNING
8KB Start 42 _DISABLE_SYSTEM_STATE
8KB Start 738 _DISABLE_TXN_ALERT
8KB Start 726 _DISCRETE_TRANSACTIONS_ENABLED
8KB Start 182 DISK_ASYNCH_IO
8KB Start 805 DISPATCHERS
8KB Start 815 _DISPATCHER_RATE_SCALE
8KB Start 814 _DISPATCHER_RATE_TTL
8KB Start 959 _DISTINCT_VIEW_UNNESTING
8KB Start 799 DISTRIBUTED_LOCK_TIMEOUT
8KB Start 800 _DISTRIBUTED_RECOVERY_CONNECTION_HOLD_TIME
8KB Start 275 _DLMTRACE
8KB Start 284 _DLM_SEND_TIMEOUT
8KB Start 681 DML_LOCKS
8KB Start 1130 _DML_MONITORING_ENABLED
8KB Start 1219 _DM_MAX_SHARED_POOL_PCT
8KB Start 903 _DOMAIN_INDEX_BATCH_SIZE
8KB Start 904 _DOMAIN_INDEX_DML_BATCH_SIZE
8KB Start 1217 _DROP_TABLE_GRANULE
8KB Start 1215 _DROP_TABLE_OPTIMIZATION_ENABLED
8KB Start 1262 DRS_START
8KB Start 873 _DSS_CACHE_FLUSH
8KB Start 1163 _DS_IOCOUNT_IOSIZE
8KB Start 1136 _DTREE_AREA_SIZE
8KB Start 1139 _DTREE_BINNING_ENABLED
8KB Start 1141 _DTREE_BINTEST_ID
8KB Start 1138 _DTREE_COMPRESSBMP_ENABLED
8KB Start 1140 _DTREE_MAX_SURROGATES
8KB Start 1137 _DTREE_PRUNING_ENABLED
8KB Start 635 _DUMMY_INSTANCE
8KB Start 1125 _DUMP_COMMON_SUBEXPRESSIONS
8KB Start 1128 _DUMP_CONNECT_BY_LOOP_DATA
8KB Start 1147 _DUMP_CURSOR_HEAP_SIZES
8KB Start 231 _DUMP_INTERVAL_LIMIT
8KB Start 232 _DUMP_MAX_LIMIT
8KB Start 823 _DUMP_QBC_TREE
8KB Start 292 _DUMP_RCVR_IPC
8KB Start 229 _DUMP_SYSTEM_STATE_SCOPE
8KB Start 230 _DUMP_TRACE_SCOPE
8KB Start 790 _DYNAMIC_RLS_POLICIES
8KB Start 861 _DYNAMIC_STATS_THRESHOLD
8KB Start 954 _ELIMINATE_COMMON_SUBEXPR
8KB Start 715 _ENABLE_BLOCK_LEVEL_TRANSACTION_RECOVERY
8KB Start 972 _ENABLE_CSCN_CACHING
8KB Start 872 _ENABLE_DEFAULT_AFFINITY
8KB Start 1208 _ENABLE_DML_LOCK_ESCALATION
8KB Start 1240 _ENABLE_EXCHANGE_VALIDATION_USING_CHECK
8KB Start 1178 _ENABLE_FAST_REF_AFTER_MV_TBS
8KB Start 748 _ENABLE_HASH_OVERFLOW
8KB Start 696 _ENABLE_HWM_SYNC
8KB Start 174 _ENABLE_LIST_IO
8KB Start 1254 _ENABLE_NATIVENET_TCPIP
8KB Start 69 _ENABLE_NUMA_OPTIMIZATION
8KB Start 1200 _ENABLE_REFRESH_SCHEDULE
8KB Start 24 _ENABLE_RELIABLE_LATCH_WAITS
8KB Start 224 _ENABLE_RLB
8KB Start 1251 _ENABLE_ROW_SHIPPING
8KB Start 67 _ENABLE_SHARED_POOL_DURATIONS
8KB Start 698 _ENABLE_TABLESPACE_ALERTS
8KB Start 1047 _ENABLE_TYPE_DEP_SELECTIVITY
8KB Start 140 _ENQUEUE_DEBUG_MULTI_INSTANCE
8KB Start 139 _ENQUEUE_HASH
8KB Start 141 _ENQUEUE_HASH_CHAIN_LATCHES
8KB Start 137 _ENQUEUE_LOCKS
8KB Start 138 _ENQUEUE_RESOURCES
8KB Start 57 EVENT
8KB Start 1124 _EXPAND_AGGREGATES
8KB Start 932 _EXPLAIN_REWRITE_MODE
8KB Start 1205 _EXTENDED_PRUNING_ENABLED
8KB Start 586 _FAIRNESS_THRESHOLD
8KB Start 283 _FAIR_REMOTE_CVT
8KB Start 523 FAL_CLIENT
8KB Start 524 FAL_SERVER
8KB Start 884 _FAST_DUAL_ENABLED
8KB Start 967 _FAST_FULL_SCAN_ENABLED
8KB Start 611 _FAST_START_INSTANCE_RECOVERY_TARGET
8KB Start 616 FAST_START_IO_TARGET
8KB Start 617 FAST_START_MTTR_TARGET
8KB Start 735 FAST_START_PARALLEL_ROLLBACK
8KB Start 1132 _FIC_ALGORITHM_SET
8KB Start 1133 _FIC_AREA_SIZE
8KB Start 1134 _FIC_MAX_LENGTH
8KB Start 1135 _FIC_MIN_BMSIZE
8KB Start 1152 _FIC_OUTOFMEM_CANDIDATES
8KB Start 200 _FIFTH_SPARE_PARAMETER
8KB Start 173 FILEIO_NETWORK_ADAPTERS
8KB Start 222 _FILEMAP_DIR
8KB Start 175 FILESYSTEMIO_OPTIONS
8KB Start 221 FILE_MAPPING
8KB Start 196 _FIRST_SPARE_PARAMETER
8KB Start 915 FIXED_DATE
8KB Start 888 _FIX_CONTROL
8KB Start 662 _FLASHBACK_ALLOW_NOARCHIVELOG
8KB Start 666 _FLASHBACK_BARRIER_INTERVAL
8KB Start 671 _FLASHBACK_COPY_LATCHES
8KB Start 668 _FLASHBACK_FUZZY_BARRIER
8KB Start 674 _FLASHBACK_GENERATION_BUFFER_SIZE
8KB Start 677 _FLASHBACK_HINT_BARRIER_PERCENT
8KB Start 665 _FLASHBACK_LOGFILE_ENQUEUE_TIMEOUT
8KB Start 676 _FLASHBACK_LOG_IO_ERROR_BEHAVIOR
8KB Start 670 _FLASHBACK_LOG_MIN_SIZE
8KB Start 669 _FLASHBACK_LOG_SIZE
8KB Start 675 _FLASHBACK_MAX_LOG_SIZE
8KB Start 673 _FLASHBACK_MAX_N_LOG_PER_THREAD
8KB Start 672 _FLASHBACK_N_LOG_PER_THREAD
8KB Start 667 _FLASHBACK_STANDBY_BARRIER_INTERVAL
8KB Start 664 _FLASHBACK_VERBOSE_INFO
8KB Start 679 _FLASHBACK_WRITE_SIZE_QM
8KB Start 1120 _FORCE_DATEFOLD_TRUNC
8KB Start 1247 _FORCE_REWRITE_ENABLE
8KB Start 1077 _FORCE_TEMPTABLES_FOR_GSETS
8KB Start 199 _FOURTH_SPARE_PARAMETER
8KB Start 1035 _FULL_PWISE_JOIN_ENABLED
8KB Start 1204 _GBY_HASH_AGGREGATION_ENABLED
8KB Start 922 _GBY_ONEKEY_ENABLED
8KB Start 313 _GCS_FAST_RECONFIG
8KB Start 318 _GCS_LATCHES
8KB Start 319 _GCS_PROCESS_IN_RECOVERY
8KB Start 317 _GCS_RESOURCES
8KB Start 236 GCS_SERVER_PROCESSES
8KB Start 320 _GCS_SHADOW_LOCKS
8KB Start 575 _GC_AFFINITY_LIMIT
8KB Start 576 _GC_AFFINITY_MINIMUM
8KB Start 574 _GC_AFFINITY_TIME
8KB Start 606 _GC_ASYNC_MEMCPY
8KB Start 599 _GC_CHECK_BSCN
8KB Start 603 _GC_COALESCE_RECOVERY_READS
8KB Start 582 _GC_DEFER_TIME
8KB Start 601 _GC_DYNAMIC_AFFINITY_LOCKS
8KB Start 580 _GC_ELEMENT_PERCENT
8KB Start 571 GC_FILES_TO_LOCKS
8KB Start 600 _GC_GLOBAL_LRU
8KB Start 578 _GC_INTEGRITY_CHECKS
8KB Start 604 _GC_KEEP_RECOVERY_BUFFERS
8KB Start 581 _GC_LATCHES
8KB Start 605 _GC_MAXIMUM_BIDS
8KB Start 598 _GC_STATISTICS
8KB Start 573 _GC_UNDO_AFFINITY
8KB Start 602 _GC_UNDO_AFFINITY_LOCKS
8KB Start 572 _GC_USE_CR
8KB Start 579 _GC_VECTOR_READ
8KB Start 1107 _GENERALIZED_PRUNING_ENABLED
8KB Start 285 _GES_DD_DEBUG
8KB Start 282 _GES_DIAGNOSTICS
8KB Start 293 _GES_HEALTH_CHECK
8KB Start 1206 _GLOBALINDEX_PNUM_FILTER_ENABLED
8KB Start 796 GLOBAL_CONTEXT_POOL_SIZE
8KB Start 798 GLOBAL_NAMES
8KB Start 999 _GROUPBY_NOPUSHDOWN_CUT_RATIO
8KB Start 1000 _GROUPBY_ORDERBY_COMBINE
8KB Start 1093 _GS_ANTI_SEMI_JOIN_ALLOWED
8KB Start 3 _HANG_ANALYSIS_NUM_CALL_STACKS
8KB Start 227 _HANG_DETECTION
8KB Start 568 _HARD_PROTECTION
8KB Start 875 HASH_AREA_SIZE
8KB Start 874 _HASH_JOIN_ENABLED
8KB Start 876 _HASH_MULTIBLOCK_IO_COUNT
8KB Start 191 _HIGH_SERVER_THRESHOLD
8KB Start 72 HI_SHARED_MEMORY_ADDRESS
8KB Start 1169 _HJ_BIT_FILTER_THRESHOLD
8KB Start 1260 HS_AUTOREGISTER
8KB Start 697 _HWM_SYNC_THRESHOLD
8KB Start 971 _IDL_CONVENTIONAL_INDEX_MAINTENANCE
8KB Start 1168 _IDXRB_ROWINCR
8KB Start 926 IFILE
8KB Start 753 _IGNORE_DESC_IN_INDEX
8KB Start 458 _IMMEDIATE_COMMIT_PROPAGATION
8KB Start 1049 _IMPROVED_OUTERJOIN_CARD
8KB Start 1043 _IMPROVED_ROW_LENGTH_ENABLED
8KB Start 325 _IMR_ACTIVE
8KB Start 328 _IMR_DISK_VOTING_INTERVAL
8KB Start 326 _IMR_MAX_RECONFIG_DELAY
8KB Start 327 _IMR_SPLITBRAIN_RES_WAIT
8KB Start 728 _IMU_POOLS
8KB Start 644 _INCREMENTAL_RECOVERY_CKPT_MIN_BATCH
8KB Start 1045 _INDEX_JOIN_ENABLED
8KB Start 1019 _INDEX_PREFETCH_FACTOR
8KB Start 340 _INIT_GRANULE_INTERVAL
8KB Start 913 _INIT_SQL_FILE
8KB Start 5 _INJECT_STARTUP_FAULT
8KB Start 906 _INSERT_ENABLE_HWM_BROKERED
8KB Start 56 INSTANCE_GROUPS
8KB Start 802 INSTANCE_NAME
8KB Start 691 INSTANCE_NUMBER
8KB Start 129 INSTANCE_TYPE
8KB Start 700 _INST_LOCKING_PERIOD
8KB Start 587 _INTERCONNECT_CHECKSUM
8KB Start 1111 _INTRAPART_PDML_ENABLED
8KB Start 1113 _INTRAPART_PDML_RANDOMLOCAL_ENABLED
8KB Start 727 _IN_MEMORY_UNDO
8KB Start 4 _IOR_SERIALIZE_FAULT
8KB Start 181 _IOSLAVE_BATCH_COUNT
8KB Start 180 _IOSLAVE_ISSUE_COUNT
8KB Start 178 _IO_SHARED_POOL_SIZE
8KB Start 184 _IO_SLAVES_DISABLED
8KB Start 120 JAVA_MAX_SESSIONSPACE_SIZE
8KB Start 111 __JAVA_POOL_SIZE
8KB Start 112 JAVA_POOL_SIZE
8KB Start 119 JAVA_SOFT_SESSIONSPACE_LIMIT
8KB Start 840 _JOB_QUEUE_INTERVAL
8KB Start 839 JOB_QUEUE_PROCESSES
8KB Start 585 _KCL_COMMIT
8KB Start 597 _KCL_CONSERVATIVE_LOG_FLUSH
8KB Start 583 _KCL_DEBUG
8KB Start 584 _KCL_INDEX_SPLIT
8KB Start 596 _KCL_UNDO_GROUPING
8KB Start 595 _KCL_UNDO_LOCKS
8KB Start 751 _KDBL_ENABLE_POST_ALLOCATION
8KB Start 754 _KEEP_REMOTE_COLUMN_SIZE
8KB Start 816 _KERNEL_MESSAGE_NETWORK_DRIVER
8KB Start 1357 _KFFMAP_HASH_SIZE
8KB Start 1358 _KFFMOP_HASH_SIZE
8KB Start 121 _KGHDSIDX_COUNT
8KB Start 767 _KGLSIM_MAXMEM_PERCENT
8KB Start 765 _KGL_BUCKET_COUNT
8KB Start 761 _KGL_FIXED_EXTENTS
8KB Start 768 _KGL_HASH_COLLISION
8KB Start 760 _KGL_HEAP_SIZE
8KB Start 763 _KGL_KEEP_CACHE_PCT
8KB Start 764 _KGL_KEEP_CACHE_RETAIN_PCT
8KB Start 770 _KGL_LARGE_HEAP_WARNING_THRESHOLD
8KB Start 759 _KGL_LATCH_COUNT
8KB Start 758 _KGL_MULTI_INSTANCE_INVALIDATION
8KB Start 756 _KGL_MULTI_INSTANCE_LOCK
8KB Start 757 _KGL_MULTI_INSTANCE_PIN
8KB Start 762 _KGL_SESSION_CACHED_OBJECTS
8KB Start 769 _KGL_TIME_TO_WAIT_FOR_LOCKS
8KB Start 776 _KGX_LATCHES
8KB Start 361 _KILL_CONTROLFILE_ENQUEUE_BLOCKER
8KB Start 294 _KILL_ENQUEUE_BLOCKER
8KB Start 1195 _KILL_JAVA_THREADS_ON_EOC
8KB Start 846 _KKFI_TRACE
8KB Start 777 _KKS_USE_MUTEX_PIN
8KB Start 849 _KOLFUSESLF
8KB Start 1221 _KQL_SUBHEAP_TRACE
8KB Start 59 _KSDXDOCMD_DEFAULT_TIMEOUT_MS
8KB Start 64 _KSDXW_CINI_FLG
8KB Start 65 _KSDXW_NBUFS
8KB Start 62 _KSDXW_NUM_PGW
8KB Start 61 _KSDXW_NUM_SGW
8KB Start 63 _KSDXW_STACK_DEPTH
8KB Start 132 _KSD_TEST_PARAM
8KB Start 133 _KSE_DIE_TIMEOUT
8KB Start 135 _KSE_PC_TABLE_SIZE
8KB Start 171 _KSFD_VERIFY_WRITE
8KB Start 142 _KSI_TRACE
8KB Start 218 _KSMG_GRANULE_LOCKING_STATUS
8KB Start 217 _KSMG_GRANULE_SIZE
8KB Start 219 _KSMG_LOCK_CHECK_INTERVAL
8KB Start 220 _KSMG_LOCK_REACQUIRE_COUNT
8KB Start 35 _KSUITM_DONT_KILL_DUMPER
8KB Start 34 _KSU_DIAG_KILL_TIME
8KB Start 205 _KSXP_DIAGMODE
8KB Start 216 _KSXP_REPORTING_PROCESS
8KB Start 204 _KSXP_SEND_TIMEOUT
8KB Start 690 _KTC_DEBUG
8KB Start 687 _KTC_LATCHES
8KB Start 708 _KTU_LATCHES
8KB Start 854 _KU_TRACE
8KB Start 115 _LARGE_POOL_MIN_ALLOC
8KB Start 109 __LARGE_POOL_SIZE
8KB Start 110 LARGE_POOL_SIZE
8KB Start 699 _LAST_ALLOCATION_PERIOD
8KB Start 22 _LATCH_CLASSES
8KB Start 14 _LATCH_CLASS_0
8KB Start 15 _LATCH_CLASS_1
8KB Start 16 _LATCH_CLASS_2
8KB Start 17 _LATCH_CLASS_3
8KB Start 18 _LATCH_CLASS_4
8KB Start 19 _LATCH_CLASS_5
8KB Start 20 _LATCH_CLASS_6
8KB Start 21 _LATCH_CLASS_7
8KB Start 8 _LATCH_MISS_STAT_SID
8KB Start 6 _LATCH_RECOVERY_ALIGNMENT
8KB Start 780 LDAP_DIRECTORY_ACCESS
8KB Start 752 _LDR_IO_SIZE
8KB Start 1042 _LEFT_NESTED_LOOPS_RANDOM
8KB Start 526 _LGWR_ASYNC_BROADCASTS
8KB Start 525 _LGWR_ASYNC_IO
8KB Start 527 _LGWR_DELAY_WRITE
8KB Start 186 _LGWR_IO_SLAVES
8KB Start 512 _LGWR_MAX_NS_WT
8KB Start 521 _LGWR_NS_NL_MAX
8KB Start 520 _LGWR_NS_NL_MIN
8KB Start 519 _LGWR_NS_SIM_ERR
8KB Start 518 _LGWR_TA_SIM_ERR
8KB Start 766 _LIBRARY_CACHE_ADVICE
8KB Start 31 LICENSE_MAX_SESSIONS
8KB Start 789 LICENSE_MAX_USERS
8KB Start 32 LICENSE_SESSIONS_WARNING
8KB Start 545 _LIGHTWEIGHT_HDRS
8KB Start 1061 _LIKE_WITH_BIND_AS_EQUALITY
8KB Start 240 _LM_ACTIVATE_LMS_THRESHOLD
8KB Start 264 _LM_CACHE_LVL0_CLEANUP
8KB Start 262 _LM_CACHE_RES_CLEANUP
8KB Start 263 _LM_CACHE_RES_TYPE
8KB Start 307 _LM_CHECKSUM_BATCH_MSG
8KB Start 256 _LM_CONTIGUOUS_RES_COUNT
8KB Start 273 _LM_DD_INTERVAL
8KB Start 274 _LM_DD_SCAN_INTERVAL
8KB Start 254 _LM_DRM_MAX_REQUESTS
8KB Start 253 _LM_DRM_WINDOW
8KB Start 255 _LM_DRM_XLATCH
8KB Start 237 _LM_DYNAMIC_LMS
8KB Start 331 _LM_DYNAMIC_LOAD
8KB Start 250 _LM_DYNAMIC_REMASTERING
8KB Start 272 _LM_ENQUEUE_FREELIST
8KB Start 271 _LM_ENQ_LOCK_FREELIST
8KB Start 249 _LM_ENQ_RCFG
8KB Start 279 _LM_FILE_AFFINITY
8KB Start 286 _LM_GLOBAL_POSTS
8KB Start 241 _LM_LMD_WAITTIME
8KB Start 235 _LM_LMS
8KB Start 242 _LM_LMS_WAITTIME
8KB Start 245 _LM_LOCKS
8KB Start 246 _LM_MASTER_WEIGHT
8KB Start 238 _LM_MAX_LMS
8KB Start 239 _LM_MIN_LMS
8KB Start 295 _LM_MSG_BATCH_SIZE
8KB Start 297 _LM_MSG_CACHE_THRESHOLDS
8KB Start 298 _LM_MSG_CLEANUP_INTERVAL
8KB Start 260 _LM_NODE_JOIN_OPT
8KB Start 261 _LM_NON_FAULT_TOLERANT
8KB Start 259 _LM_NUM_PCMHV_LATCHES
8KB Start 257 _LM_NUM_PT_BUCKETS
8KB Start 258 _LM_NUM_PT_LATCHES
8KB Start 302 _LM_PROCESS_BATCHING
8KB Start 243 _LM_PROCS
8KB Start 277 _LM_PROC_FREEZE_TIMEOUT
8KB Start 270 _LM_RCFG_TIMEOUT
8KB Start 266 _LM_RCV_BUFFER_SIZE
8KB Start 244 _LM_RESS
8KB Start 281 _LM_RES_HASH_BUCKET
8KB Start 252 _LM_RES_PART
8KB Start 306 _LM_SENDPROXY_RESERVE
8KB Start 265 _LM_SEND_BUFFERS
8KB Start 299 _LM_SEND_MODE
8KB Start 301 _LM_SEND_QUEUE_BATCHING
8KB Start 300 _LM_SEND_QUEUE_LENGTH
8KB Start 280 _LM_SHARE_LOCK_OPT
8KB Start 303 _LM_SQ_BATCH_FACTOR
8KB Start 304 _LM_SQ_BATCH_TYPE
8KB Start 305 _LM_SQ_BATCH_WAITTICK
8KB Start 268 _LM_SYNC_TIMEOUT
8KB Start 296 _LM_TICKETS
8KB Start 269 _LM_TICKET_ACTIVE_SENDBACK
8KB Start 276 _LM_TX_DELTA
8KB Start 278 _LM_VALIDATE_RESOURCE_TYPE
8KB Start 251 _LM_XIDS
8KB Start 1103 _LOAD_WITHOUT_COMPILE
8KB Start 1039 _LOCAL_COMMUNICATION_COSTING_ENABLED
8KB Start 1040 _LOCAL_COMMUNICATION_RATIO
8KB Start 811 LOCAL_LISTENER
8KB Start 25 LOCK_NAME_SPACE
8KB Start 75 LOCK_SGA
8KB Start 76 _LOCK_SGA_AREAS
8KB Start 637 LOGMNR_MAX_PERSISTENT_SESSIONS
8KB Start 470 _LOG_ARCHIVE_AVOID_MEMCPY
8KB Start 478 _LOG_ARCHIVE_BUFFERS
8KB Start 479 _LOG_ARCHIVE_BUFFER_SIZE
8KB Start 480 _LOG_ARCHIVE_CALLOUT
8KB Start 474 _LOG_ARCHIVE_COMPRESS_ENABLE
8KB Start 473 LOG_ARCHIVE_CONFIG
8KB Start 505 _LOG_ARCHIVE_DELTA_SYNC_WAIT
8KB Start 481 LOG_ARCHIVE_DEST
8KB Start 483 LOG_ARCHIVE_DEST_1
8KB Start 492 LOG_ARCHIVE_DEST_10
8KB Start 484 LOG_ARCHIVE_DEST_2
8KB Start 485 LOG_ARCHIVE_DEST_3
8KB Start 486 LOG_ARCHIVE_DEST_4
8KB Start 487 LOG_ARCHIVE_DEST_5
8KB Start 488 LOG_ARCHIVE_DEST_6
8KB Start 489 LOG_ARCHIVE_DEST_7
8KB Start 490 LOG_ARCHIVE_DEST_8
8KB Start 491 LOG_ARCHIVE_DEST_9
8KB Start 493 LOG_ARCHIVE_DEST_STATE_1
8KB Start 502 LOG_ARCHIVE_DEST_STATE_10
8KB Start 494 LOG_ARCHIVE_DEST_STATE_2
8KB Start 495 LOG_ARCHIVE_DEST_STATE_3
8KB Start 496 LOG_ARCHIVE_DEST_STATE_4
8KB Start 497 LOG_ARCHIVE_DEST_STATE_5
8KB Start 498 LOG_ARCHIVE_DEST_STATE_6
8KB Start 499 LOG_ARCHIVE_DEST_STATE_7
8KB Start 500 LOG_ARCHIVE_DEST_STATE_8
8KB Start 501 LOG_ARCHIVE_DEST_STATE_9
8KB Start 482 LOG_ARCHIVE_DUPLEX_DEST
8KB Start 510 LOG_ARCHIVE_FORMAT
8KB Start 509 LOG_ARCHIVE_LOCAL_FIRST
8KB Start 503 LOG_ARCHIVE_MAX_PROCESSES
8KB Start 506 LOG_ARCHIVE_MIN_SUCCEED_DEST
8KB Start 522 _LOG_ARCHIVE_NETWORK_REDO_SIZE
8KB Start 504 _LOG_ARCHIVE_NET_TIMEOUT
8KB Start 471 _LOG_ARCHIVE_PROT_AUTO_DEMOTE
8KB Start 469 _LOG_ARCHIVE_SECURITY_ENABLED
8KB Start 475 LOG_ARCHIVE_START
8KB Start 508 LOG_ARCHIVE_TRACE
8KB Start 618 _LOG_BLOCKS_DURING_BACKUP
8KB Start 528 LOG_BUFFER
8KB Start 536 _LOG_BUFFERS_CORRUPT
8KB Start 535 _LOG_BUFFERS_DEBUG
8KB Start 622 LOG_CHECKPOINTS_TO_ALERT
8KB Start 531 LOG_CHECKPOINT_INTERVAL
8KB Start 465 _LOG_CHECKPOINT_RECOVERY_CHECK
8KB Start 532 LOG_CHECKPOINT_TIMEOUT
8KB Start 686 _LOG_COMMITTIME_BLOCK_CLEANOUT
8KB Start 537 _LOG_DEBUG_MULTI_INSTANCE
8KB Start 659 _LOG_DELETION_POLICY
8KB Start 530 _LOG_EVENT_QUEUES
8KB Start 359 LOG_FILE_NAME_CONVERT
8KB Start 529 _LOG_IO_SIZE
8KB Start 539 _LOG_PARALLELISM
8KB Start 541 _LOG_PARALLELISM_DYNAMIC
8KB Start 540 _LOG_PARALLELISM_MAX
8KB Start 544 _LOG_PRIVATE_MUL
8KB Start 542 _LOG_PRIVATE_PARALLELISM
8KB Start 543 _LOG_PRIVATE_PARALLELISM_MUL
8KB Start 538 _LOG_SIMULTANEOUS_COPIES
8KB Start 693 _LOG_SPACE_ERRORS
8KB Start 533 _LOG_SWITCH_TIMEOUT
8KB Start 38 _LONGOPS_ENABLED
8KB Start 192 _LOW_SERVER_THRESHOLD
8KB Start 323 _MASTER_DIRECT_SENDS
8KB Start 1073 _MAV_REFRESH_CONSISTENT_READ
8KB Start 1100 _MAV_REFRESH_DOUBLE_COUNT_PREVENTED
8KB Start 1074 _MAV_REFRESH_OPT
8KB Start 1075 _MAV_REFRESH_UNIONALL_TABLES
8KB Start 513 _MAX_ARCH_LNS_WAIT
8KB Start 459 MAX_COMMIT_PROPAGATION_DELAY
8KB Start 808 MAX_DISPATCHERS
8KB Start 894 MAX_DUMP_FILE_SIZE
8KB Start 783 MAX_ENABLED_ROLES
8KB Start 10 _MAX_EXPONENTIAL_SLEEP
8KB Start 514 _MAX_LNS_SHUTDOWN_ARCHIVAL_TIME
8KB Start 234 _MAX_PROTOCOL_SUPPORT
8KB Start 511 _MAX_RFS_CONNECTIONS
8KB Start 807 MAX_SHARED_SERVERS
8KB Start 704 _MAX_SHRINK_OBJ_STATS
8KB Start 9 _MAX_SLEEP_HOLDING_LATCH
8KB Start 645 _MEDIA_RECOVERY_READ_BATCH
8KB Start 646 _MEDIA_RECOVERY_REAP_TIME
8KB Start 346 _MEMORY_BROKER_LOG_STAT_ENTRIES
8KB Start 348 _MEMORY_BROKER_MARGINAL_UTILITY_BC
8KB Start 347 _MEMORY_BROKER_MARGINAL_UTILITY_SP
8KB Start 342 _MEMORY_BROKER_SHRINK_HEAPS
8KB Start 343 _MEMORY_BROKER_SHRINK_JAVA_HEAPS
8KB Start 344 _MEMORY_BROKER_SHRINK_STREAMS_POOL
8KB Start 345 _MEMORY_BROKER_SHRINK_TIMEOUT
8KB Start 341 _MEMORY_BROKER_STAT_INTERVAL
8KB Start 338 _MEMORY_MANAGEMENT_TRACING
8KB Start 339 _MEMORY_SANITY_CHECK
8KB Start 98 _MEM_ANNOTATION_PR_LEV
8KB Start 99 _MEM_ANNOTATION_SCALE
8KB Start 97 _MEM_ANNOTATION_SH_LEV
8KB Start 100 _MEM_ANNOTATION_STORE
8KB Start 106 _MEM_STD_EXTENT_SIZE
8KB Start 136 _MESSAGES
8KB Start 1071 _MINIMAL_STATS_AGGREGATION
8KB Start 702 _MINIMUM_BLOCKS_TO_SHRINK
8KB Start 703 _MINIMUM_EXTENTS_TO_SHRINK
8KB Start 460 _MINIMUM_GIGA_SCN
8KB Start 546 _MIRROR_REDO_BUFFERS
8KB Start 1032 _MMV_QUERY_REWRITE_ENABLED
8KB Start 626 _MULTIPLE_INSTANCE_RECOVERY
8KB Start 880 _MULTI_JOIN_KEY_TABLE_LOOKUP
8KB Start 1159 _MV_REFRESH_ANA
8KB Start 1158 _MV_REFRESH_COSTING
8KB Start 1076 _MV_REFRESH_DELTA_FRACTION
8KB Start 1072 _MV_REFRESH_EUT
8KB Start 1177 _MV_REFRESH_FORCE_PARALLEL_QUERY
8KB Start 1102 _MV_REFRESH_NEW_SETUP_DISABLED
8KB Start 1174 _MV_REFRESH_REBUILD_PERCENTAGE
8KB Start 1069 _MV_REFRESH_SELECTIONS
8KB Start 1094 _MV_REFRESH_USE_STATS
8KB Start 1164 _MV_REFSCHED_TIMEINCR
8KB Start 1227 _MV_ROLLING_INV
8KB Start 1395 _MWIN_SCHEDULE
8KB Start 169 _NCHAR_IMP_CNV
8KB Start 905 _NCHAR_IMP_CONV
8KB Start 1017 _NCMB_READAHEAD_ENABLED
8KB Start 1018 _NCMB_READAHEAD_TRACING
8KB Start 1006 _NESTED_LOOP_FUDGE
8KB Start 1106 _NESTED_MAV_FAST_ONCOMMIT_ENABLED
8KB Start 885 _NEWSORT_ENABLED
8KB Start 887 _NEWSORT_ORDERED_PCT
8KB Start 886 _NEWSORT_TYPE
8KB Start 1065 _NEW_INITIAL_JOIN_ORDERS
8KB Start 950 _NEW_SORT_COST_ESTIMATE
8KB Start 160 NLS_CALENDAR
8KB Start 166 NLS_COMP
8KB Start 157 NLS_CURRENCY
8KB Start 156 NLS_DATE_FORMAT
8KB Start 155 NLS_DATE_LANGUAGE
8KB Start 165 NLS_DUAL_CURRENCY
8KB Start 159 NLS_ISO_CURRENCY
8KB Start 152 NLS_LANGUAGE
8KB Start 167 NLS_LENGTH_SEMANTICS
8KB Start 168 NLS_NCHAR_CONV_EXCP
8KB Start 158 NLS_NUMERIC_CHARACTERS
8KB Start 154 NLS_SORT
8KB Start 153 NLS_TERRITORY
8KB Start 162 NLS_TIMESTAMP_FORMAT
8KB Start 164 NLS_TIMESTAMP_TZ_FORMAT
8KB Start 161 NLS_TIME_FORMAT
8KB Start 163 NLS_TIME_TZ_FORMAT
8KB Start 332 _NOTIFY_CRS
8KB Start 901 _NO_OBJECTS
8KB Start 1008 _NO_OR_EXPANSION
8KB Start 615 _NO_RECOVERY_THROUGH_RESETLOGS
8KB Start 516 _NS_MAX_FLUSH_WT
8KB Start 517 _NS_MAX_SEND_DELAY
8KB Start 77 _NUMA_INSTANCE_MAPPING
8KB Start 68 _NUMA_POOL_SIZE
8KB Start 55 _NUMBER_CACHED_ATTRIBUTES
8KB Start 37 _NUM_LONGOP_CHILD_LATCHES
8KB Start 786 O7_DICTIONARY_ACCESSIBILITY
8KB Start 900 OBJECT_CACHE_MAX_SIZE_PERCENT
8KB Start 899 OBJECT_CACHE_OPTIMAL_SIZE
8KB Start 223 _OBJECT_STATISTICS
8KB Start 712 _OFFLINE_ROLLBACK_SEGMENTS
8KB Start 267 _OGMS_HOME
8KB Start 1265 _OLAPI_HISTORY_RETENTION
8KB Start 1268 _OLAPI_IFACE_OBJECT_HISTORY
8KB Start 1269 _OLAPI_IFACE_OBJECT_HISTORY_RETENTION
8KB Start 1271 _OLAPI_IFACE_OPERATION_HISTORY_RETENTION
8KB Start 1270 _OLAPI_INTERFACE_OPERATION_HISTORY
8KB Start 1272 _OLAPI_MEMORY_OPERATION_HISTORY
8KB Start 1274 _OLAPI_MEMORY_OPERATION_HISTORY_PAUSE_AT_SEQNO
8KB Start 1273 _OLAPI_MEMORY_OPERATION_HISTORY_RETENTION
8KB Start 1266 _OLAPI_SESSION_HISTORY
8KB Start 1267 _OLAPI_SESSION_HISTORY_RETENTION
8KB Start 1281 _OLAP_AGGREGATE_BUFFER_SIZE
8KB Start 1292 _OLAP_AGGREGATE_FLAGS
8KB Start 1290 _OLAP_AGGREGATE_FUNCTION_CACHE_ENABLED
8KB Start 1289 _OLAP_AGGREGATE_FUNCTION_MERGE_THRESHOLD
8KB Start 1287 _OLAP_AGGREGATE_MAX_THREAD_TUPLES
8KB Start 1282 _OLAP_AGGREGATE_MIN_BUFFER_SIZE
8KB Start 1284 _OLAP_AGGREGATE_MIN_THREAD_STATUS
8KB Start 1291 _OLAP_AGGREGATE_MULTIPATH_HIER
8KB Start 1285 _OLAP_AGGREGATE_STATLEN_THRESH
8KB Start 1288 _OLAP_AGGREGATE_STORE_PROBABILITY
8KB Start 1286 _OLAP_AGGREGATE_WORKLIST_MAX
8KB Start 1283 _OLAP_AGGREGATE_WORK_PER_THREAD
8KB Start 1294 _OLAP_ALLOCATE_ERRORLOG_FORMAT
8KB Start 1276 _OLAP_CONTINUOUS_TRACE_FILE
8KB Start 1296 _OLAP_DBGOUTFILE_ECHO_TO_EVENTLOG
8KB Start 1302 _OLAP_DIMENSION_COREHASH_CLASS
8KB Start 1301 _OLAP_DIMENSION_COREHASH_MAX
8KB Start 1297 _OLAP_EIF_EXPORT_LOB_SIZE
8KB Start 1311 _OLAP_LMGEN_DIM_SIZE
8KB Start 1312 _OLAP_LMGEN_MEAS_SIZE
8KB Start 1300 _OLAP_OBJECT_HASH_CLASS
8KB Start 1305 _OLAP_PAGE_POOL_EXPAND_RATE
8KB Start 1304 _OLAP_PAGE_POOL_HI
8KB Start 1307 _OLAP_PAGE_POOL_HIT_TARGET
8KB Start 1303 _OLAP_PAGE_POOL_LOW
8KB Start 1308 _OLAP_PAGE_POOL_PRESSURE
8KB Start 1306 _OLAP_PAGE_POOL_SHRINK_RATE
8KB Start 1275 OLAP_PAGE_POOL_SIZE
8KB Start 1280 _OLAP_PARALLEL_UPDATE_SMALL_GROUP
8KB Start 1279 _OLAP_PARALLEL_UPDATE_SMALL_THRESHOLD
8KB Start 1278 _OLAP_PARALLEL_UPDATE_THRESHOLD
8KB Start 1295 _OLAP_POUTLOG_ECHO_TO_EVENTLOG
8KB Start 1299 _OLAP_SESSCACHE_ENABLED
8KB Start 1298 _OLAP_SORT_BUFFER_SIZE
8KB Start 1310 _OLAP_STATBOOL_COREBITS
8KB Start 1309 _OLAP_STATBOOL_THRESHOLD
8KB Start 1277 _OLAP_TABLE_FUNCTION_STATISTICS
8KB Start 1313 _OLAP_WRAP_ERRORS
8KB Start 878 _OLD_CONNECT_BY_ENABLED
8KB Start 795 _OLS_CLEANUP_TASK
8KB Start 176 _OMF
8KB Start 1066 _ONESIDE_COLSTAT_FOR_EQUIJOINS
8KB Start 925 OPEN_CURSORS
8KB Start 907 OPEN_LINKS
8KB Start 908 OPEN_LINKS_PER_INSTANCE
8KB Start 1050 _OPTIMIZER_ADJUST_FOR_NULLS
8KB Start 1116 _OPTIMIZER_AUTOSTATS_JOB
8KB Start 1237 _OPTIMIZER_BETTER_INLIST_COSTING
8KB Start 1166 _OPTIMIZER_BLOCK_SIZE
8KB Start 949 _OPTIMIZER_CACHE_STATS
8KB Start 1201 _OPTIMIZER_CARTESIAN_ENABLED
8KB Start 963 _OPTIMIZER_CBQT_FACTOR
8KB Start 1229 _OPTIMIZER_CBQT_NO_SIZE_RESTRICTION
8KB Start 1185 _OPTIMIZER_CEIL_COST
8KB Start 1053 _OPTIMIZER_CHOOSE_PERMUTATION
8KB Start 1248 _OPTIMIZER_COMPLEX_PRED_SELECTIVITY
8KB Start 1115 _OPTIMIZER_COMPUTE_INDEX_STATS
8KB Start 1119 _OPTIMIZER_CONNECT_BY_COST_BASED
8KB Start 1172 _OPTIMIZER_CORRECT_SQ_SELECTIVITY
8KB Start 961 _OPTIMIZER_COST_BASED_TRANSFORMATION
8KB Start 1171 _OPTIMIZER_COST_FILTER_PRED
8KB Start 1222 _OPTIMIZER_COST_HJSMJ_MULTIMATCH
8KB Start 946 _OPTIMIZER_COST_MODEL
8KB Start 1051 _OPTIMIZER_DEGREE
8KB Start 1180 _OPTIMIZER_DIM_SUBQ_JOIN_SEL
8KB Start 1181 _OPTIMIZER_DISABLE_STRANS_SANITY_CHECKS
8KB Start 1097 OPTIMIZER_DYNAMIC_SAMPLING
8KB Start 1096 _OPTIMIZER_DYN_SMP_BLKS
8KB Start 1232 _OPTIMIZER_ENHANCED_FILTER_PUSH
8KB Start 945 _OPTIMIZER_EXTENDED_CURSOR_SHARING
8KB Start 914 OPTIMIZER_FEATURES_ENABLE
8KB Start 1118 _OPTIMIZER_FILTER_PRED_PULLUP
8KB Start 1183 _OPTIMIZER_IGNORE_HINTS
8KB Start 1011 OPTIMIZER_INDEX_CACHING
8KB Start 1010 OPTIMIZER_INDEX_COST_ADJ
8KB Start 1190 _OPTIMIZER_INVALIDATION_PERIOD
8KB Start 1203 _OPTIMIZER_JOIN_ELIMINATION_ENABLED
8KB Start 1196 _OPTIMIZER_JOIN_ORDER_CONTROL
8KB Start 969 _OPTIMIZER_JOIN_SEL_SANITY_CHECK
8KB Start 1009 _OPTIMIZER_MAX_PERMUTATIONS
8KB Start 1239 _OPTIMIZER_MIN_CACHE_BLOCKS
8KB Start 1143 _OPTIMIZER_MJC_ENABLED
8KB Start 930 OPTIMIZER_MODE
8KB Start 931 _OPTIMIZER_MODE_FORCE
8KB Start 1220 _OPTIMIZER_MULTIPLE_CENV
8KB Start 1099 _OPTIMIZER_NEW_JOIN_CARD_COMPUTATION
8KB Start 1243 _OPTIMIZER_ORDER_BY_ELIMINATION_ENABLED
8KB Start 1241 _OPTIMIZER_OR_EXPANSION
8KB Start 1242 _OPTIMIZER_OUTER_TO_ANTI_ENABLED
8KB Start 1155 _OPTIMIZER_PERCENT_PARALLEL
8KB Start 960 _OPTIMIZER_PUSH_DOWN_DISTINCT
8KB Start 1117 _OPTIMIZER_PUSH_PRED_COST_BASED
8KB Start 1184 _OPTIMIZER_RANDOM_PLAN
8KB Start 1236 _OPTIMIZER_ROWNUM_PRED_BASED_FKR
8KB Start 1170 _OPTIMIZER_SAVE_STATS
8KB Start 1156 _OPTIMIZER_SEARCH_LIMIT
8KB Start 1224 OPTIMIZER_SECURE_VIEW_MERGING
8KB Start 1238 _OPTIMIZER_SELF_INDUCED_CACHE_COST
8KB Start 968 _OPTIMIZER_SKIP_SCAN_ENABLED
8KB Start 1250 _OPTIMIZER_SKIP_SCAN_GUESS
8KB Start 1144 _OPTIMIZER_SORTMERGE_JOIN_ENABLED
8KB Start 962 _OPTIMIZER_SQU_BOTTOMUP
8KB Start 1202 _OPTIMIZER_STARPLAN_ENABLED
8KB Start 1244 _OPTIMIZER_STAR_TRAN_IN_WITH_CLAUSE
8KB Start 948 _OPTIMIZER_SYSTEM_STATS_USAGE
8KB Start 855 _OPTIMIZER_TRACE
8KB Start 1223 _OPTIMIZER_TRANSITIVITY_RETAIN
8KB Start 1154 _OPTIMIZER_UNDO_CHANGES
8KB Start 947 _OPTIMIZER_UNDO_COST_CHANGE
8KB Start 1114 _OPTIM_ADJUST_FOR_PART_SKEWS
8KB Start 1179 _OPTIM_DICT_STATS_AT_DB_CR_UPG
8KB Start 970 _OPTIM_ENHANCE_NNULL_DETECTION
8KB Start 1095 _OPTIM_NEW_DEFAULT_JOIN_SEL
8KB Start 1068 _OPTIM_PEEK_USER_BINDS
8KB Start 58 _ORADEBUG_FORCE
8KB Start 1005 _ORDERED_NESTED_LOOP
8KB Start 1003 _ORDERED_SEMIJOIN
8KB Start 1060 _OR_EXPAND_NVL_PREDICATE
8KB Start 928 OS_AUTHENT_PREFIX
8KB Start 781 OS_ROLES
8KB Start 40 _OS_SCHED_HIGH_PRIORITY
8KB Start 12 _OTHER_WAIT_EVENT_EXCLUSION
8KB Start 11 _OTHER_WAIT_THRESHOLD
8KB Start 1214 _OUTLINE_BITMAP_TREE
8KB Start 1041 _PARALLELISM_COST_FUDGE_FACTOR
8KB Start 988 _PARALLEL_ADAPTIVE_MAX_USERS
8KB Start 985 PARALLEL_ADAPTIVE_MULTI_USER
8KB Start 987 PARALLEL_AUTOMATIC_TUNING
8KB Start 973 _PARALLEL_BROADCAST_ENABLED
8KB Start 842 _PARALLEL_DEFAULT_MAX_INSTANCES
8KB Start 866 _PARALLEL_EXECUTION_MESSAGE_ALIGN
8KB Start 865 PARALLEL_EXECUTION_MESSAGE_SIZE
8KB Start 863 _PARALLEL_FAKE_CLASS_PCT
8KB Start 290 _PARALLEL_FIXWRITE_BUCKET
8KB Start 862 PARALLEL_INSTANCE_GROUP
8KB Start 989 _PARALLEL_LOAD_BALANCING
8KB Start 990 _PARALLEL_LOAD_BAL_UNIT
8KB Start 857 PARALLEL_MAX_SERVERS
8KB Start 868 _PARALLEL_MIN_MESSAGE_POOL
8KB Start 841 PARALLEL_MIN_PERCENT
8KB Start 856 PARALLEL_MIN_SERVERS
8KB Start 736 _PARALLEL_RECOVERY_STOPAT
8KB Start 288 _PARALLEL_REPLAY_MSG_LIMIT
8KB Start 555 PARALLEL_SERVER
8KB Start 858 _PARALLEL_SERVER_IDLE_TIME
8KB Start 556 PARALLEL_SERVER_INSTANCES
8KB Start 859 _PARALLEL_SERVER_SLEEP_TIME
8KB Start 991 _PARALLEL_SLAVE_ACQUISITION_WAIT
8KB Start 986 PARALLEL_THREADS_PER_CPU
8KB Start 1059 _PARALLEL_TXN_GLOBAL
8KB Start 131 _PARAMETER_TABLE_BLOCK_SIZE
8KB Start 1036 _PARTIAL_PWISE_JOIN_ENABLED
8KB Start 939 _PARTITION_VIEW_ENABLED
8KB Start 787 _PASSWORDFILE_ENQUEUE_TIMEOUT
8KB Start 1101 _PCT_REFRESH_DOUBLE_COUNT_PREVENTED
8KB Start 993 _PDML_GIM_SAMPLING
8KB Start 994 _PDML_GIM_STAGGERED
8KB Start 992 _PDML_SLAVES_DIFF_PART
8KB Start 678 _PERCENT_FLASHBACK_BUF_PARTIAL_FULL
8KB Start 1078 PGA_AGGREGATE_TARGET
8KB Start 92 _PGA_LARGE_EXTENT_SIZE
8KB Start 1079 _PGA_MAX_SIZE
8KB Start 589 _PING_LEVEL
8KB Start 45 _PKT_ENABLE
8KB Start 47 _PKT_PMON_INTERVAL
8KB Start 46 _PKT_START
8KB Start 1213 _PLAN_OUTLINE_DATA
8KB Start 834 _PLSQL_ANON_BLOCK_CODE_TYPE
8KB Start 1209 _PLSQL_CACHE_ENABLE
8KB Start 837 PLSQL_CCFLAGS
8KB Start 833 PLSQL_CODE_TYPE
8KB Start 829 PLSQL_COMPILER_FLAGS
8KB Start 835 PLSQL_DEBUG
8KB Start 827 _PLSQL_DUMP_BUFFER_EVENTS
8KB Start 1212 _PLSQL_MINIMUM_CACHE_HIT_PERCENT
8KB Start 830 PLSQL_NATIVE_LIBRARY_DIR
8KB Start 831 PLSQL_NATIVE_LIBRARY_SUBDIR_COUNT
8KB Start 838 _PLSQL_NVL_OPTIMIZE
8KB Start 836 PLSQL_OPTIMIZE_LEVEL
8KB Start 828 PLSQL_V2_COMPATIBILITY
8KB Start 832 PLSQL_WARNINGS
8KB Start 813 _PMON_LOAD_CONSTANTS
8KB Start 1104 _PRECOMPUTE_GID_VALUES
8KB Start 998 _PREDICATE_ELIMINATION_ENABLED
8KB Start 955 _PRED_MOVE_AROUND
8KB Start 688 _PRESCOMM
8KB Start 70 PRE_PAGE_SGA
8KB Start 1098 _PRE_REWRITE_PUSH_PRED
8KB Start 1153 _PRINT_REFRESH_SCHEDULE
8KB Start 96 _PRIVATE_MEMORY_ADDRESS
8KB Start 26 PROCESSES
8KB Start 1148 _PROJECTION_PUSHDOWN
8KB Start 1149 _PROJECTION_PUSHDOWN_DEBUG
8KB Start 1007 _PROJECT_VIEW_COLUMNS
8KB Start 964 _PUSH_JOIN_PREDICATE
8KB Start 965 _PUSH_JOIN_UNION_VIEW
8KB Start 966 _PUSH_JOIN_UNION_VIEW2
8KB Start 979 _PX_ASYNC_GETGRANULE
8KB Start 974 _PX_BROADCAST_FUDGE_FACTOR
8KB Start 869 _PX_BUFFER_TTL
8KB Start 1150 _PX_COMPILATION_DEBUG
8KB Start 1151 _PX_COMPILATION_TRACE
8KB Start 995 _PX_DYNAMIC_OPT
8KB Start 996 _PX_DYNAMIC_SAMPLE_SIZE
8KB Start 976 _PX_GRANULE_SIZE
8KB Start 1044 _PX_INDEX_SAMPLING
8KB Start 975 _PX_KXIB_TRACING
8KB Start 864 _PX_LOAD_PUBLISH_INTERVAL
8KB Start 1192 _PX_LOC_MSG_COST
8KB Start 981 _PX_MAX_GRANULES_PER_SLAVE
8KB Start 957 _PX_MINUS_INTERSECT
8KB Start 980 _PX_MIN_GRANULES_PER_SLAVE
8KB Start 1191 _PX_NET_MSG_COST
8KB Start 983 _PX_NO_GRANULE_SORT
8KB Start 982 _PX_NO_STEALING
8KB Start 1197 _PX_NSS_PLANB
8KB Start 984 _PX_PROC_CONSTRAIN
8KB Start 1225 _PX_PWG_ENABLED
8KB Start 997 _PX_ROWNUM_PD
8KB Start 860 _PX_SEND_TIMEOUT
8KB Start 1131 _PX_SLAVES_SHARE_CURSORS
8KB Start 851 _PX_TRACE
8KB Start 867 _PX_USE_LARGE_POOL
8KB Start 977 _PX_XTGRANULE_SIZE
8KB Start 1175 _QA_CONTROL
8KB Start 1176 _QA_LRG_TYPE
8KB Start 1022 _QUERY_COST_REWRITE
8KB Start 883 _QUERY_EXECUTION_CACHE_MAX_SIZE
8KB Start 1024 _QUERY_REWRITE_1
8KB Start 1023 _QUERY_REWRITE_2
8KB Start 1029 _QUERY_REWRITE_DRJ
8KB Start 1020 QUERY_REWRITE_ENABLED
8KB Start 1026 _QUERY_REWRITE_EXPRESSION
8KB Start 1028 _QUERY_REWRITE_FPC
8KB Start 1025 _QUERY_REWRITE_FUDGE
8KB Start 1021 QUERY_REWRITE_INTEGRITY
8KB Start 1027 _QUERY_REWRITE_JGMIGRATE
8KB Start 1030 _QUERY_REWRITE_MAXDISJUNCT
8KB Start 933 _QUERY_REWRITE_OR_ERROR
8KB Start 1187 _QUERY_REWRITE_SETOPGRW_ENABLE
8KB Start 1031 _QUERY_REWRITE_VOP_CLEANUP
8KB Start 289 _RCFG_PARALLEL_FIXWRITE
8KB Start 287 _RCFG_PARALLEL_REPLAY
8KB Start 291 _RCFG_PARALLEL_VERIFY
8KB Start 782 RDBMS_SERVER_DN
8KB Start 553 READ_ONLY_OPEN_DELAYED
8KB Start 88 _REALFREE_HEAP_MAX_SIZE
8KB Start 90 _REALFREE_HEAP_MODE
8KB Start 89 _REALFREE_HEAP_PAGESIZE_HINT
8KB Start 476 _REAL_TIME_APPLY_ARCH_DELAY
8KB Start 477 _REAL_TIME_APPLY_SIM
8KB Start 642 _RECOVERABLE_RECOVERY_BATCH_PERCENT
8KB Start 577 _RECOVERY_ASSERTS
8KB Start 623 RECOVERY_PARALLELISM
8KB Start 376 _RECOVERY_PERCENTAGE
8KB Start 467 _RECOVERY_VERIFY_WRITES
8KB Start 689 _RECURSIVE_IMU_TRANSACTIONS
8KB Start 744 RECYCLEBIN
8KB Start 462 _REDO_COMPATIBILITY_CHECK
8KB Start 746 _RELEASE_INSERT_THRESHOLD
8KB Start 310 _RELIABLE_BLOCK_SENDS
8KB Start 472 REMOTE_ARCHIVE_ENABLE
8KB Start 824 REMOTE_DEPENDENCIES_MODE
8KB Start 812 REMOTE_LISTENER
8KB Start 788 REMOTE_LOGIN_PASSWORDFILE
8KB Start 784 REMOTE_OS_AUTHENT
8KB Start 785 REMOTE_OS_ROLES
8KB Start 958 _REMOVE_AGGR_SUBQUERY
8KB Start 685 REPLICATION_DEPENDENCY_TRACKING
8KB Start 30 RESOURCE_LIMIT
8KB Start 195 _RESOURCE_MANAGER_ALWAYS_ON
8KB Start 193 RESOURCE_MANAGER_PLAN
8KB Start 634 _RESTORE_SPFILE
8KB Start 737 RESUMABLE_TIMEOUT
8KB Start 750 _REUSE_INDEX_LOOP
8KB Start 1142 _RIGHT_OUTER_HASH_ENABLE
8KB Start 636 _RMAN_IO_PRIORITY
8KB Start 709 ROLLBACK_SEGMENTS
8KB Start 711 _ROLLBACK_SEGMENT_COUNT
8KB Start 710 _ROLLBACK_SEGMENT_INITIAL
8KB Start 732 _ROLLBACK_STOPAT
8KB Start 1108 _ROWSOURCE_EXECUTION_STATISTICS
8KB Start 1109 _ROWSOURCE_STATISTICS_SAMPFREQ
8KB Start 1235 _ROWSRC_TRACE_LEVEL
8KB Start 755 _ROW_CACHE_CURSORS
8KB Start 729 _ROW_CR
8KB Start 683 _ROW_LOCKING
8KB Start 1016 _SAMPLE_ROWS_PER_BLOCK
8KB Start 197 _SECOND_SPARE_PARAMETER
8KB Start 1245 _SELFJOIN_MV_DUPLICATES
8KB Start 613 _SELFTUNE_CHECKPOINTING_LAG
8KB Start 404 _SELFTUNE_CHECKPOINT_WRITE_PCT
8KB Start 309 _SEND_AST_TO_FOREGROUND
8KB Start 312 _SEND_CLOSE_WITH_BLOCK
8KB Start 594 _SEND_REQUESTS_TO_PI
8KB Start 684 _SERIALIZABLE
8KB Start 1013 _SERIAL_DIRECT_READ
8KB Start 624 _SERIAL_RECOVERY
8KB Start 773 SERIAL_REUSE
8KB Start 803 SERVICE_NAMES
8KB Start 27 SESSIONS
8KB Start 821 SESSION_CACHED_CURSORS
8KB Start 850 _SESSION_CACHED_INSTANTIATIONS
8KB Start 792 _SESSION_CONTEXT_SIZE
8KB Start 33 _SESSION_IDLE_BIT_LATCHES
8KB Start 44 _SESSION_IDLE_CHECK_INTERVAL
8KB Start 822 _SESSION_KEPT_CURSOR_PINS
8KB Start 902 SESSION_MAX_OPEN_FILES
8KB Start 43 _SESSION_WAIT_HISTORY
8KB Start 202 _SEVENTH_SPARE_PARAMETER
8KB Start 66 SGA_MAX_SIZE
8KB Start 333 SGA_TARGET
8KB Start 890 SHADOW_CORE_DUMP
8KB Start 71 SHARED_MEMORY_ADDRESS
8KB Start 334 _SHARED_POOL_MAX_SIZE
8KB Start 335 _SHARED_POOL_MINSIZE_ON
8KB Start 118 _SHARED_POOL_RESERVED_MIN_ALLOC
8KB Start 117 _SHARED_POOL_RESERVED_PCT
8KB Start 116 SHARED_POOL_RESERVED_SIZE
8KB Start 107 __SHARED_POOL_SIZE
8KB Start 108 SHARED_POOL_SIZE
8KB Start 806 SHARED_SERVERS
8KB Start 810 SHARED_SERVER_SESSIONS
8KB Start 50 _SHORT_STACK_TIMEOUT_MS
8KB Start 921 _SHRUNK_AGGS_DISABLE_THRESHOLD
8KB Start 920 _SHRUNK_AGGS_ENABLED
8KB Start 321 _SIDE_CHANNEL_BATCH_SIZE
8KB Start 322 _SIDE_CHANNEL_BATCH_TIMEOUT
8KB Start 952 _SIMPLE_VIEW_MERGING
8KB Start 82 _SIMULATOR_BUCKET_MINDELTA
8KB Start 84 _SIMULATOR_INTERNAL_BOUND
8KB Start 81 _SIMULATOR_LRU_REBALANCE_SIZTHR
8KB Start 80 _SIMULATOR_LRU_REBALANCE_THRESH
8KB Start 83 _SIMULATOR_LRU_SCAN_COUNT
8KB Start 79 _SIMULATOR_PIN_INVAL_MAXCNT
8KB Start 86 _SIMULATOR_RESERVED_HEAP_COUNT
8KB Start 85 _SIMULATOR_RESERVED_OBJ_COUNT
8KB Start 87 _SIMULATOR_SAMPLING_FACTOR
8KB Start 78 _SIMULATOR_UPPER_BOUND_MULTIPLE
8KB Start 51 _SINGLE_PROCESS
8KB Start 201 _SIXTH_SPARE_PARAMETER
8KB Start 206 _SKGXP_REAPING
8KB Start 208 _SKGXP_UDP_ACH_REAPING_TIME
8KB Start 207 _SKGXP_UDP_HIWAT_WARN
8KB Start 215 _SKGXP_UDP_INTERFACE_DETECTION_TIME_SECS
8KB Start 211 _SKGXP_UDP_KEEP_ALIVE_PING_TIMER_SECS
8KB Start 210 _SKGXP_UDP_TIMED_WAIT_BUFFERING
8KB Start 209 _SKGXP_UDP_TIMED_WAIT_SECONDS
8KB Start 316 _SKIP_ASSUME_MSG
8KB Start 1157 SKIP_UNUSABLE_INDEXES
8KB Start 1037 _SLAVE_MAPPING_ENABLED
8KB Start 1038 _SLAVE_MAPPING_GROUP_SIZE
8KB Start 373 _SMALL_TABLE_THRESHOLD
8KB Start 1092 _SMM_ADVICE_ENABLED
8KB Start 1091 _SMM_ADVICE_LOG_SIZE
8KB Start 1083 _SMM_AUTO_COST_ENABLED
8KB Start 1082 _SMM_AUTO_MAX_IO_SIZE
8KB Start 1081 _SMM_AUTO_MIN_IO_SIZE
8KB Start 1090 _SMM_BOUND
8KB Start 1084 _SMM_CONTROL
8KB Start 1193 _SMM_FREEABLE_RETAIN
8KB Start 1228 _SMM_ISORT_CAP
8KB Start 1087 _SMM_MAX_SIZE
8KB Start 1086 _SMM_MIN_SIZE
8KB Start 1088 _SMM_PX_MAX_SIZE
8KB Start 1089 _SMM_RETAIN_SIZE
8KB Start 1085 _SMM_TRACE
8KB Start 733 _SMON_INTERNAL_ERRLIMIT
8KB Start 826 SMTP_OUT_SERVER
8KB Start 723 _SMU_DEBUG_MODE
8KB Start 719 _SMU_ERROR_SIMULATION_SITE
8KB Start 720 _SMU_ERROR_SIMULATION_TYPE
8KB Start 722 _SMU_TIMEOUTS
8KB Start 918 SORT_AREA_RETAINED_SIZE
8KB Start 917 SORT_AREA_SIZE
8KB Start 934 _SORT_ELIMINATION_COST_RATIO
8KB Start 919 _SORT_MULTIBLOCK_READ_COUNT
8KB Start 128 SPFILE
8KB Start 7 _SPIN_COUNT
8KB Start 1167 _SPR_MAX_RULES
8KB Start 1165 _SPR_PUSH_PRED_REFSPR
8KB Start 1127 _SPR_USE_AW_AS
8KB Start 1126 _SPR_USE_HASH_TABLE
8KB Start 935 SQL92_SECURITY
8KB Start 1048 _SQLEXEC_PROGRESSION_COST
8KB Start 1397 SQLTUNE_CATEGORY
8KB Start 1398 _SQLTUNE_CATEGORY_PARSED
8KB Start 936 _SQL_CONNECT_CAPABILITY_OVERRIDE
8KB Start 929 _SQL_CONNECT_CAPABILITY_TABLE
8KB Start 1226 _SQL_HASH_DEBUG
8KB Start 1207 _SQL_MODEL_UNFOLD_FORLOOPS
8KB Start 927 SQL_TRACE
8KB Start 1052 SQL_VERSION
8KB Start 134 _STACK_GUARD_LEVEL
8KB Start 507 STANDBY_ARCHIVE_DEST
8KB Start 567 STANDBY_FILE_MANAGEMENT
8KB Start 942 STAR_TRANSFORMATION_ENABLED
8KB Start 54 _STATIC_BACKGROUNDS
8KB Start 1121 STATISTICS_LEVEL
8KB Start 1162 _STA_CONTROL
8KB Start 1161 _STN_TRACE
8KB Start 336 _STREAMS_POOL_MAX_SIZE
8KB Start 114 STREAMS_POOL_SIZE
8KB Start 113 __STREAMS_POOL_SIZE
8KB Start 1055 _SUBQUERY_PRUNING_COST_FACTOR
8KB Start 1057 _SUBQUERY_PRUNING_ENABLED
8KB Start 1058 _SUBQUERY_PRUNING_MV_ENABLED
8KB Start 1056 _SUBQUERY_PRUNING_REDUCTION
8KB Start 1387 _SWRF_METRIC_FREQUENT_MODE
8KB Start 1392 _SWRF_MMON_DBFUS
8KB Start 1383 _SWRF_MMON_FLUSH
8KB Start 1386 _SWRF_MMON_METRICS
8KB Start 1391 _SWRF_ON_DISK_ENABLED
8KB Start 1381 _SWRF_TEST_ACTION
8KB Start 1394 _SWRF_TEST_DBFUS
8KB Start 771 _SYNONYM_REPOINT_TRACING
8KB Start 1382 _SYSAUX_TEST_PARAM
8KB Start 1012 _SYSTEM_INDEX_CACHING
8KB Start 843 _SYSTEM_TRIG_ENABLED
8KB Start 879 _TABLE_LOOKUP_PREFETCH_SIZE
8KB Start 881 _TABLE_LOOKUP_PREFETCH_THRESH
8KB Start 1062 _TABLE_SCAN_COST_PLUS_ONE
8KB Start 183 TAPE_ASYNCH_IO
8KB Start 614 _TARGET_RBA_MAX_LAG_PERCENTAGE
8KB Start 515 _TA_LNS_WAIT_FOR_ARCH_LOG
8KB Start 680 _TDB_DEBUG_MODE
8KB Start 1001 _TEMP_TRAN_BLOCK_THRESHOLD
8KB Start 1002 _TEMP_TRAN_CACHE
8KB Start 39 _TEST_KSUSIGSKIP
8KB Start 122 _TEST_PARAM_1
8KB Start 123 _TEST_PARAM_2
8KB Start 124 _TEST_PARAM_3
8KB Start 125 _TEST_PARAM_4
8KB Start 126 _TEST_PARAM_5
8KB Start 127 _TEST_PARAM_6
8KB Start 198 _THIRD_SPARE_PARAMETER
8KB Start 609 THREAD
8KB Start 1407 _THRESHOLD_ALERTS_ENABLE
8KB Start 29 TIMED_OS_STATISTICS
8KB Start 28 TIMED_STATISTICS
8KB Start 94 _TOTAL_LARGE_EXTENT_MEMORY
8KB Start 870 _TQ_DUMP_PERIOD
8KB Start 2 TRACEFILE_IDENTIFIER
8KB Start 145 _TRACE_ARCHIVE
8KB Start 147 _TRACE_BUFFERS
8KB Start 427 _TRACE_BUFFER_FLUSHES
8KB Start 431 _TRACE_BUFFER_GETS
8KB Start 440 _TRACE_BUFFER_WAIT_TIMEOUTS
8KB Start 151 _TRACE_BUFFER_WRAP_TIMESTAMP
8KB Start 429 _TRACE_CR_BUFFER_CREATES
8KB Start 143 TRACE_ENABLED
8KB Start 146 _TRACE_EVENTS
8KB Start 1 _TRACE_FILES_PUBLIC
8KB Start 149 _TRACE_FILE_SIZE
8KB Start 148 _TRACE_FLUSH_PROCESSES
8KB Start 428 _TRACE_MULTI_BLOCK_READS
8KB Start 233 _TRACE_NAVIGATION_SCOPE
8KB Start 150 _TRACE_OPTIONS
8KB Start 433 _TRACE_PIN_TIME
8KB Start 144 _TRACE_PROCESSES
8KB Start 706 TRANSACTIONS
8KB Start 707 TRANSACTIONS_PER_ROLLBACK_SEGMENT
8KB Start 714 _TRANSACTION_AUDITING
8KB Start 734 _TRANSACTION_RECOVERY_SERVERS
8KB Start 1231 _TRUNCATE_OPTIMIZATION_ENABLED
8KB Start 1252 _TSM_CONNECT_STRING
8KB Start 1253 _TSM_DISABLE_AUTO_CLEANUP
8KB Start 638 _TTS_ALLOW_CHARSET_MISMATCH
8KB Start 466 _TWO_PASS
8KB Start 1123 _TWO_PASS_REVERSE_POLISH_ENABLED
8KB Start 93 _UGA_CGA_LARGE_EXTENT_SIZE
8KB Start 23 _ULTRAFAST_LATCH_STATISTICS
8KB Start 730 _UNDO_AUTOTUNE
8KB Start 724 _UNDO_DEBUG_MODE
8KB Start 739 _UNDO_DEBUG_USAGE
8KB Start 717 UNDO_MANAGEMENT
8KB Start 731 UNDO_RETENTION
8KB Start 718 UNDO_TABLESPACE
8KB Start 1105 _UNION_REWRITE_FOR_GS
8KB Start 953 _UNNEST_SUBQUERY
8KB Start 633 _UNUSED_BLOCK_COMPRESSION
8KB Start 893 USER_DUMP_DEST
8KB Start 1054 _USE_COLUMN_STATS_FOR_FUNCTION
8KB Start 73 USE_INDIRECT_DATA_BUFFERS
8KB Start 74 _USE_ISM
8KB Start 95 _USE_ISM_FOR_PGA
8KB Start 1046 _USE_NOSEGMENT_INDEXES
8KB Start 91 _USE_REALFREE_HEAP
8KB Start 749 _USE_SEQ_PROCESS_CACHE
8KB Start 13 _USE_VECTOR_POST
8KB Start 825 UTL_FILE_DIR
8KB Start 661 _VALIDATE_FLASHBACK_DATABASE
8KB Start 897 _VENDOR_LIB_LOC
8KB Start 663 _VERIFY_FLASHBACK_REDO
8KB Start 725 _VERIFY_UNDO_QUOTA
8KB Start 1216 _VERY_LARGE_PARTITIONED_TABLE
8KB Start 423 _WAIT_FOR_SYNC
8KB Start 747 _WALK_INSERT_THRESHOLD
8KB Start 60 _WATCHPOINT_ON
8KB Start 1230 _WINDOWFUNC_OPTIMIZATION_SETTINGS
8KB Start 1080 WORKAREA_SIZE_POLICY
8KB Start 430 _WRITE_CLONES
8KB Start 1234 _XPL_PEEKED_BINDS_LOG_SIZE
8KB Start 1218 _XPL_TRACE
8KB Start 1336 _XSOLAPI_AUTO_MATERIALIZATION_BOUND
8KB Start 1335 _XSOLAPI_AUTO_MATERIALIZATION_TYPE
8KB Start 1332 _XSOLAPI_DEBUG_OUTPUT
8KB Start 1325 _XSOLAPI_DENSIFY_CUBES
8KB Start 1315 _XSOLAPI_DIMENSION_GROUP_CREATION
8KB Start 1314 _XSOLAPI_FETCH_TYPE
8KB Start 1352 _XSOLAPI_GENERATE_WITH_CLAUSE
8KB Start 1345 _XSOLAPI_HIERARCHY_VALUE_TYPE
8KB Start 1334 _XSOLAPI_LOAD_AT_PROCESS_START
8KB Start 1337 _XSOLAPI_MATERIALIZATION_ROWCACHE_MIN_ROWS_FOR_USE
8KB Start 1333 _XSOLAPI_MATERIALIZE_SOURCES
8KB Start 1339 _XSOLAPI_METADATA_READER_MODE
8KB Start 1340 _XSOLAPI_ODBO_MODE
8KB Start 1351 _XSOLAPI_OPTIMIZE_SUPPRESSION
8KB Start 1350 _XSOLAPI_PRECOMPUTE_SUBQUERY
8KB Start 1349 _XSOLAPI_REMOVE_COLUMNS_FOR_MATERIALIZATION
8KB Start 1341 _XSOLAPI_SET_NLS
8KB Start 1338 _XSOLAPI_SOURCE_TRACE
8KB Start 1324 _XSOLAPI_SQL_ALL_MULTI_JOIN_NON_BASE_HINTS
8KB Start 1323 _XSOLAPI_SQL_ALL_NON_BASE_HINTS
8KB Start 1317 _XSOLAPI_SQL_AUTO_DIMENSION_HINTS
8KB Start 1316 _XSOLAPI_SQL_AUTO_MEASURE_HINTS
8KB Start 1320 _XSOLAPI_SQL_DIMENSION_HINTS
8KB Start 1353 _XSOLAPI_SQL_ENABLE_AW_JOIN
8KB Start 1354 _XSOLAPI_SQL_ENABLE_AW_QDR_MERGE
8KB Start 1318 _XSOLAPI_SQL_HINTS
8KB Start 1319 _XSOLAPI_SQL_MEASURE_HINTS
8KB Start 1326 _XSOLAPI_SQL_OPTIMIZE
8KB Start 1330 _XSOLAPI_SQL_PREPARE_STMT_CACHE_SIZE
8KB Start 1327 _XSOLAPI_SQL_REMOVE_COLUMNS
8KB Start 1331 _XSOLAPI_SQL_RESULT_SET_CACHE_SIZE
8KB Start 1328 _XSOLAPI_SQL_SYMMETRIC_PREDICATE
8KB Start 1322 _XSOLAPI_SQL_TOP_DIMENSION_HINTS
8KB Start 1321 _XSOLAPI_SQL_TOP_MEASURE_HINTS
8KB Start 1329 _XSOLAPI_SQL_USE_BIND_VARIABLES
8KB Start 1342 _XSOLAPI_STRINGIFY_ORDER_LEVELS
8KB Start 1344 _XSOLAPI_SUPPRESSION_AW_MASK_THRESHOLD
8KB Start 1343 _XSOLAPI_SUPPRESSION_CHUNK_SIZE
8KB Start 1346 _XSOLAPI_USE_MODELS
8KB Start 1347 _XSOLAPI_USE_OLAP_DML
8KB Start 1348 _XSOLAPI_USE_OLAP_DML_FOR_RANK
8KB Start 978 _XTBUFFER_SIZE
8KB Start 639 _XTTS_ALLOW_PRE10
8KB Start 640 _XTTS_SET_PLATFORM_INFO
8KB Start 853 _XT_COVERAGE
8KB Start 852 _XT_TRACE
8KB Start 194 _YIELD_CHECK_INTERVAL

8KB End Test 6 101 _4031_DUMP_BITVEC


8KB End Test 6 103 _4031_DUMP_INTERVAL
8KB End Test 6 102 _4031_MAX_DUMPS
8KB End Test 6 104 _4031_SGA_DUMP_INTERVAL
8KB End Test 6 105 _4031_SGA_MAX_DUMPS
8KB End Test 6 308 _ABORT_RECOVERY_ON_JOIN
8KB End Test 6 226 _ACCEPT_VERSIONS
8KB End Test 6 247 ACTIVE_INSTANCE_COUNT
8KB End Test 6 248 _ACTIVE_STANDBY_FAST_RECONFIGURATION
8KB End Test 6 607 _ADAPTIVE_DIRECT_READ
8KB End Test 6 882 _ADAPTIVE_FETCH_ENABLED
8KB End Test 6 1408 _ADDM_AUTO_ENABLE
8KB End Test 6 1410 _ADDM_SKIPRULES
8KB End Test 6 1409 _ADDM_VERSION_CHECK
8KB End Test 6 1034 _ADD_STALE_MV_TO_DEPENDENCY_LIST
8KB End Test 6 848 _ADJUST_LITERAL_REPLACEMENT
8KB End Test 6 871 _AFFINITY_ON
8KB End Test 6 177 _AIOWAIT_TIMEOUTS
8KB End Test 6 1377 _ALERT_EXPIRATION
8KB End Test 6 1378 _ALERT_MESSAGE_CLEANUP
8KB End Test 6 1379 _ALERT_MESSAGE_PURGE
8KB End Test 6 1380 _ALERT_POST_BACKGROUND
8KB End Test 6 692 _ALLOCATE_CREATION_ORDER
8KB End Test 6 701 _ALLOCATION_UPDATE_INTERVAL
8KB End Test 6 1173 _ALLOW_COMMUTATIVITY
8KB End Test 6 569 _ALLOW_ERROR_SIMULATION
8KB End Test 6 1182 _ALLOW_LEVEL_WITHOUT_CONNECT_BY
8KB End Test 6 621 _ALLOW_READ_ONLY_CORRUPTION
8KB End Test 6 619 _ALLOW_RESETLOGS_CORRUPTION
8KB End Test 6 620 _ALLOW_TERMINAL_RECOVERY_CORRUPTION
8KB End Test 6 909 _ALL_SHARED_DBLINKS
8KB End Test 6 745 _ALTERNATE_IOT_LEAF_BLOCK_SPLIT_POINTS
8KB End Test 6 938 _ALWAYS_ANTI_JOIN
8KB End Test 6 1004 _ALWAYS_SEMI_JOIN
8KB End Test 6 940 _ALWAYS_STAR_TRANSFORMATION
8KB End Test 6 791 _APP_CTX_VERS
8KB End Test 6 1255 AQ_TM_PROCESSES
8KB End Test 6 1256 _AQ_TM_SCANLIMIT
8KB End Test 6 534 ARCHIVE_LAG_TARGET
8KB End Test 6 187 _ARCH_IO_SLAVES
8KB End Test 6 1122 _ARRAY_UPDATE_VECTOR_READ_ENABLED
8KB End Test 6 1403 _ASH_DISK_FILTER_RATIO
8KB End Test 6 1402 _ASH_DISK_WRITE_ENABLE
8KB End Test 6 1406 _ASH_DUMMY_TEST_PARAM
8KB End Test 6 1404 _ASH_EFLUSH_TRIGGER
8KB End Test 6 1401 _ASH_ENABLE
8KB End Test 6 1405 _ASH_SAMPLE_ALL
8KB End Test 6 1399 _ASH_SAMPLING_INTERVAL
8KB End Test 6 1400 _ASH_SIZE
8KB End Test 6 1367 _ASMLIB_TEST
8KB End Test 6 1369 _ASMSID
8KB End Test 6 1363 _ASM_ACD_CHUNKS
8KB End Test 6 1366 _ASM_ALLOW_ONLY_RAW_DISKS
8KB End Test 6 1368 _ASM_ALLOW_RESILVER_CORRUPTION
8KB End Test 6 1361 _ASM_AUSIZE
8KB End Test 6 1362 _ASM_BLKSIZE
8KB End Test 6 1359 ASM_DISKGROUPS
8KB End Test 6 1355 ASM_DISKSTRING
8KB End Test 6 1356 _ASM_DISK_REPAIR_TIME
8KB End Test 6 1373 _ASM_DROPTIMEOUT
8KB End Test 6 1374 _ASM_EMULMAX
8KB End Test 6 1375 _ASM_EMULTIMEOUT
8KB End Test 6 1376 _ASM_KFDPEVENT
8KB End Test 6 1364 _ASM_LIBRARIES
8KB End Test 6 1365 _ASM_MAXIO
8KB End Test 6 1360 ASM_POWER_LIMIT
8KB End Test 6 1372 _ASM_STRIPESIZE
8KB End Test 6 1371 _ASM_STRIPEWIDTH
8KB End Test 6 1370 _ASM_WAIT_TIME
8KB End Test 6 695 _ASSM_DEFAULT
8KB End Test 6 591 _ASYNC_RECOVERY_CLAIMS
8KB End Test 6 590 _ASYNC_RECOVERY_READS
8KB End Test 6 889 AUDIT_FILE_DEST
8KB End Test 6 793 AUDIT_SYS_OPERATIONS
8KB End Test 6 916 AUDIT_TRAIL
8KB End Test 6 592 _AVOID_PREPARE
8KB End Test 6 1384 _AWR_CORRUPT_MODE
8KB End Test 6 1390 _AWR_DISABLED_FLUSH_TABLES
8KB End Test 6 1388 _AWR_FLUSH_THRESHOLD_METRICS
8KB End Test 6 1389 _AWR_FLUSH_WORKLOAD_METRICS
8KB End Test 6 1393 _AWR_MMON_CPUUSAGE
8KB End Test 6 1385 _AWR_RESTRICT_MODE
8KB End Test 6 1396 _AWR_SQL_CHILD_LIMIT
8KB End Test 6 891 BACKGROUND_CORE_DUMP
8KB End Test 6 892 BACKGROUND_DUMP_DEST
8KB End Test 6 188 _BACKUP_DISK_IO_SLAVES
8KB End Test 6 190 _BACKUP_IO_POOL_SIZE
8KB End Test 6 627 _BACKUP_KGC_BUFSZ
8KB End Test 6 629 _BACKUP_KGC_NITERS
8KB End Test 6 628 _BACKUP_KGC_TYPE
8KB End Test 6 631 _BACKUP_KSFQ_BUFCNT
8KB End Test 6 630 _BACKUP_KSFQ_BUFSZ
8KB End Test 6 632 _BACKUP_MAX_GAP_SIZE
8KB End Test 6 189 BACKUP_TAPE_IO_SLAVES
8KB End Test 6 649 _BCT_BITMAPS_PER_FILE
8KB End Test 6 655 _BCT_BUFFER_ALLOCATION_MAX
8KB End Test 6 656 _BCT_BUFFER_ALLOCATION_MIN_EXTENTS
8KB End Test 6 654 _BCT_BUFFER_ALLOCATION_SIZE
8KB End Test 6 652 _BCT_CHUNK_SIZE
8KB End Test 6 653 _BCT_CRASH_RESERVE_SIZE
8KB End Test 6 650 _BCT_FILE_BLOCK_SIZE
8KB End Test 6 651 _BCT_FILE_EXTENT_SIZE
8KB End Test 6 657 _BCT_FIXTAB_FILE
8KB End Test 6 648 _BCT_INITIAL_PRIVATE_DBA_BUFFER_SIZE
8KB End Test 6 647 _BCT_PUBLIC_DBA_BUFFER_SIZE
8KB End Test 6 845 BITMAP_MERGE_AREA_SIZE
8KB End Test 6 1110 _BITMAP_OR_IMPROVEMENT_ENABLED
8KB End Test 6 937 BLANK_TRIMMING
8KB End Test 6 311 _BLOCKS_PER_CACHE_SERVER
8KB End Test 6 658 _BLOCK_CHANGE_TRACKING
8KB End Test 6 1199 _BLOOM_FILTER_DEBUG
8KB End Test 6 1198 _BLOOM_FILTER_ENABLED
8KB End Test 6 1033 _BT_MMV_QUERY_REWRITE_ENABLED
8KB End Test 6 441 _BUFFER_BUSY_WAIT_TIMEOUT
8KB End Test 6 409 BUFFER_POOL_KEEP
8KB End Test 6 410 BUFFER_POOL_RECYCLE
8KB End Test 6 1258 _BUFQ_FLOW_CONTROL_THRSH
8KB End Test 6 1259 _BUFQ_MAX_MSG_SZ
8KB End Test 6 1257 _BUFQ_STOP_FLOW_CONTROL
8KB End Test 6 1249 _BUILD_DEFERRED_MV_SKIPPING_MVLOG_UPDATE
8KB End Test 6 694 _BUMP_HIGHWATER_MARK_COUNT
8KB End Test 6 593 _BWR_FOR_FLUSHED_PI
8KB End Test 6 941 _B_TREE_BITMAP_PLANS
8KB End Test 6 1160 _CACHE_STATS_MONITOR
8KB End Test 6 330 _CGS_RECONFIG_TIMEOUT
8KB End Test 6 324 _CGS_SEND_TIMEOUT
8KB End Test 6 432 _CHECK_BLOCK_AFTER_CHECKSUM
8KB End Test 6 705 _CHECK_TS_THRESHOLD
8KB End Test 6 809 CIRCUITS
8KB End Test 6 716 _CLEANUP_ROLLBACK_ENTRIES
8KB End Test 6 910 _CLOSE_CACHED_OPEN_CURSORS
8KB End Test 6 554 CLUSTER_DATABASE
8KB End Test 6 557 CLUSTER_DATABASE_INSTANCES
8KB End Test 6 203 CLUSTER_INTERCONNECTS
8KB End Test 6 329 _CLUSTER_LIBRARY
8KB End Test 6 49 _COLLAPSE_WAIT_HISTORY
8KB End Test 6 721 _COLLECT_UNDO_STATS
8KB End Test 6 1129 _COLUMN_COMPRESSION_FACTOR
8KB End Test 6 943 _COLUMN_ELIMINATION_OFF
8KB End Test 6 1067 _COLUMN_TRACKING_LEVEL
8KB End Test 6 801 COMMIT_POINT_STRENGTH
8KB End Test 6 912 COMMIT_WRITE
8KB End Test 6 461 COMPATIBLE
8KB End Test 6 1233 _COMPILATION_CALL_HEAP_EXTENT_SIZE
8KB End Test 6 951 _COMPLEX_VIEW_MERGING
8KB End Test 6 355 _CONTROLFILE_BLOCK_SIZE
8KB End Test 6 354 _CONTROLFILE_ENQUEUE_DUMP
8KB End Test 6 352 _CONTROLFILE_ENQUEUE_TIMEOUT
8KB End Test 6 356 _CONTROLFILE_SECTION_INIT_SIZE
8KB End Test 6 357 _CONTROLFILE_SECTION_MAX_EXPAND
8KB End Test 6 353 _CONTROLFILE_UPDATE_CHECK
8KB End Test 6 351 CONTROL_FILES
8KB End Test 6 360 CONTROL_FILE_RECORD_KEEP_TIME
8KB End Test 6 956 _CONVERT_SET_TO_JOIN
8KB End Test 6 625 _COORD_MESSAGE_BUFFER
8KB End Test 6 895 CORE_DUMP_DEST
8KB End Test 6 713 _CORRUPTED_ROLLBACK_SEGMENTS
8KB End Test 6 1063 _COST_EQUALITY_SEMI_JOIN
8KB End Test 6 52 CPU_COUNT
8KB End Test 6 944 _CPU_TO_IO
8KB End Test 6 844 CREATE_BITMAP_AREA_SIZE
8KB End Test 6 772 CREATE_STORED_OUTLINES
8KB End Test 6 314 _CR_GRANT_GLOBAL_ROLE
8KB End Test 6 315 _CR_GRANT_LOCAL_ROLE
8KB End Test 6 588 _CR_SERVER_LOG_FLUSH
8KB End Test 6 1112 _CTAS_HWM_BROKERED_LOADS
8KB End Test 6 1145 _CURSOR_BIND_CAPTURE_AREA_SIZE
8KB End Test 6 1146 _CURSOR_BIND_CAPTURE_INTERVAL
8KB End Test 6 774 _CURSOR_CACHE_FRAME_BIND_MEMORY
8KB End Test 6 877 _CURSOR_DB_BUFFERS_PINNED
8KB End Test 6 775 _CURSOR_FEATURES_ENABLED
8KB End Test 6 1070 _CURSOR_PLAN_ENABLED
8KB End Test 6 1188 _CURSOR_PLAN_HASH_VERSION
8KB End Test 6 1194 _CURSOR_PLAN_UNPARSE_ENABLED
8KB End Test 6 847 CURSOR_SHARING
8KB End Test 6 820 CURSOR_SPACE_FOR_TIME
8KB End Test 6 778 _CURSOR_STATS_BUCKET
8KB End Test 6 779 _CURSOR_STATS_HEAP
8KB End Test 6 53 _DBG_PROC_STARTUP
8KB End Test 6 375 _DBWR_ASYNC_IO
8KB End Test 6 185 DBWR_IO_SLAVES
8KB End Test 6 400 _DBWR_SCAN_INTERVAL
8KB End Test 6 368 _DBWR_TRACING
8KB End Test 6 384 DB_16K_CACHE_SIZE
8KB End Test 6 381 DB_2K_CACHE_SIZE
8KB End Test 6 385 DB_32K_CACHE_SIZE
8KB End Test 6 382 DB_4K_CACHE_SIZE
8KB End Test 6 383 DB_8K_CACHE_SIZE
8KB End Test 6 416 _DB_AGING_COOL_COUNT
8KB End Test 6 418 _DB_AGING_FREEZE_CR
8KB End Test 6 414 _DB_AGING_HOT_CRITERIA
8KB End Test 6 415 _DB_AGING_STAY_COUNT
8KB End Test 6 417 _DB_AGING_TOUCH_TIME
8KB End Test 6 464 _DB_ALWAYS_CHECK_SYSTEM_TS
8KB End Test 6 437 _DB_BLOCK_ADJCHECK
8KB End Test 6 436 _DB_BLOCK_ADJCHK_LEVEL
8KB End Test 6 608 _DB_BLOCK_ALIGN_DIRECT_READ
8KB End Test 6 363 _DB_BLOCK_BUFFERS
8KB End Test 6 362 DB_BLOCK_BUFFERS
8KB End Test 6 424 _DB_BLOCK_CACHE_CLONE
8KB End Test 6 444 _DB_BLOCK_CACHE_HISTORY
8KB End Test 6 445 _DB_BLOCK_CACHE_HISTORY_LEVEL
8KB End Test 6 374 _DB_BLOCK_CACHE_NUM_UMAP
8KB End Test 6 364 _DB_BLOCK_CACHE_PROTECT
8KB End Test 6 365 _DB_BLOCK_CACHE_PROTECT_INTERNAL
8KB End Test 6 743 DB_BLOCK_CHECKING
8KB End Test 6 366 DB_BLOCK_CHECKSUM
8KB End Test 6 463 _DB_BLOCK_CHECK_FOR_DEBUG
8KB End Test 6 438 _DB_BLOCK_CHECK_OBJTYP
8KB End Test 6 439 _DB_BLOCK_DO_FULL_MBREADS
8KB End Test 6 419 _DB_BLOCK_HASH_BUCKETS
8KB End Test 6 420 _DB_BLOCK_HASH_LATCHES
8KB End Test 6 398 _DB_BLOCK_HI_PRIORITY_BATCH_SIZE
8KB End Test 6 392 _DB_BLOCK_KNOWN_CLEAN_PCT
8KB End Test 6 388 _DB_BLOCK_LRU_LATCHES
8KB End Test 6 426 _DB_BLOCK_MAX_CR_DBA
8KB End Test 6 393 _DB_BLOCK_MAX_SCAN_PCT
8KB End Test 6 397 _DB_BLOCK_MED_PRIORITY_BATCH_SIZE
8KB End Test 6 380 _DB_BLOCK_NUMA
8KB End Test 6 407 _DB_BLOCK_PREFETCH_LIMIT
8KB End Test 6 406 _DB_BLOCK_PREFETCH_QUOTA
8KB End Test 6 367 DB_BLOCK_SIZE
8KB End Test 6 446 _DB_BLOCK_TABLE_SCAN_BUFFER_SIZE
8KB End Test 6 435 _DB_BLOCK_TEMP_REDO
8KB End Test 6 425 _DB_BLOCK_TRACE_PROTECT
8KB End Test 6 449 DB_CACHE_ADVICE
8KB End Test 6 451 _DB_CACHE_ADVICE_BATCH_SIZE
8KB End Test 6 450 _DB_CACHE_ADVICE_SAMPLE_FACTOR
8KB End Test 6 442 _DB_CACHE_CRX_CHECK
8KB End Test 6 408 _DB_CACHE_PRE_WARM
8KB End Test 6 448 _DB_CACHE_PROCESS_CR_PIN_MAX
8KB End Test 6 379 DB_CACHE_SIZE
8KB End Test 6 378 __DB_CACHE_SIZE
8KB End Test 6 740 _DB_CHANGE_NOTIFICATION_ENABLE
8KB End Test 6 558 DB_CREATE_FILE_DEST
8KB End Test 6 559 DB_CREATE_ONLINE_LOG_DEST_1
8KB End Test 6 560 DB_CREATE_ONLINE_LOG_DEST_2
8KB End Test 6 561 DB_CREATE_ONLINE_LOG_DEST_3
8KB End Test 6 562 DB_CREATE_ONLINE_LOG_DEST_4
8KB End Test 6 563 DB_CREATE_ONLINE_LOG_DEST_5
8KB End Test 6 797 DB_DOMAIN
8KB End Test 6 434 _DB_FAST_OBJ_CHECK
8KB End Test 6 371 _DB_FAST_OBJ_CKPT
8KB End Test 6 370 _DB_FAST_OBJ_TRUNCATE
8KB End Test 6 548 DB_FILES
8KB End Test 6 179 _DB_FILE_DIRECT_IO_COUNT
8KB End Test 6 550 _DB_FILE_EXEC_READ_COUNT
8KB End Test 6 570 _DB_FILE_FORMAT_IO_BUFFERS
8KB End Test 6 549 DB_FILE_MULTIBLOCK_READ_COUNT
8KB End Test 6 358 DB_FILE_NAME_CONVERT
8KB End Test 6 552 _DB_FILE_NONCONTIG_MBLOCK_READ_COUNT
8KB End Test 6 551 _DB_FILE_OPTIMIZER_READ_COUNT
8KB End Test 6 660 DB_FLASHBACK_RETENTION_TARGET
8KB End Test 6 421 _DB_HANDLES
8KB End Test 6 422 _DB_HANDLES_CACHED
8KB End Test 6 443 _DB_HOT_BLOCK_TRACKING
8KB End Test 6 742 _DB_INDEX_BLOCK_CHECKING
8KB End Test 6 386 DB_KEEP_CACHE_SIZE
8KB End Test 6 394 _DB_LARGE_DIRTY_QUEUE
8KB End Test 6 377 _DB_LOST_WRITE_CHECKING
8KB End Test 6 452 _DB_MTTR_ADVICE
8KB End Test 6 455 _DB_MTTR_PARTITIONS
8KB End Test 6 454 _DB_MTTR_SAMPLE_FACTOR
8KB End Test 6 453 _DB_MTTR_SIM_TARGET
8KB End Test 6 456 _DB_MTTR_SIM_TRACE_SIZE
8KB End Test 6 457 _DB_MTTR_TRACE_TO_ALERT
8KB End Test 6 923 DB_NAME
8KB End Test 6 447 _DB_OBJ_CKPT_ORDERED
8KB End Test 6 372 _DB_OBJ_ENABLE_KSR
8KB End Test 6 411 _DB_PERCENT_HOT_DEFAULT
8KB End Test 6 412 _DB_PERCENT_HOT_KEEP
8KB End Test 6 413 _DB_PERCENT_HOT_RECYCLE
8KB End Test 6 389 _DB_PERCPU_CREATE_CACHESIZE
8KB End Test 6 564 DB_RECOVERY_FILE_DEST
8KB End Test 6 565 DB_RECOVERY_FILE_DEST_SIZE
8KB End Test 6 566 _DB_RECOVERY_TEMPORAL_FILE_DEST
8KB End Test 6 387 DB_RECYCLE_CACHE_SIZE
8KB End Test 6 741 _DB_ROW_OVERLAP_CHECKING
8KB End Test 6 390 _DB_TODEFER_CACHE_CREATE
8KB End Test 6 924 DB_UNIQUE_NAME
8KB End Test 6 396 _DB_WRITER_CHUNK_WRITES
8KB End Test 6 403 _DB_WRITER_COALESCE_AREA_SIZE
8KB End Test 6 402 _DB_WRITER_COALESCE_WRITE_LIMIT
8KB End Test 6 401 _DB_WRITER_FLUSH_IMU
8KB End Test 6 399 _DB_WRITER_HISTOGRAM_STATISTICS
8KB End Test 6 395 _DB_WRITER_MAX_WRITES
8KB End Test 6 391 DB_WRITER_PROCESSES
8KB End Test 6 405 _DB_WRITER_VERIFY_WRITES
8KB End Test 6 682 DDL_WAIT_FOR_LOCKS
8KB End Test 6 48 _DEAD_PROCESS_SCAN_INTERVAL
8KB End Test 6 896 _DEBUG_ENABLE
8KB End Test 6 817 _DEDICATED_SERVER_POLL_COUNT
8KB End Test 6 819 _DEDICATED_SERVER_POST_WAIT
8KB End Test 6 818 _DEDICATED_SERVER_POST_WAIT_CALL
8KB End Test 6 794 _DEFAULT_ENCRYPT_ALG
8KB End Test 6 1064 _DEFAULT_NON_EQUALITY_SEL_CHECK
8KB End Test 6 1186 _DELAY_INDEX_MAINTAIN
8KB End Test 6 1263 DG_BROKER_CONFIG_FILE1
8KB End Test 6 1264 DG_BROKER_CONFIG_FILE2
8KB End Test 6 804 __DG_BROKER_SERVICE_NAMES
8KB End Test 6 1261 DG_BROKER_START
8KB End Test 6 228 _DIAG_DAEMON
8KB End Test 6 213 _DIAG_DIAGNOSTICS
8KB End Test 6 1246 _DIMENSION_SKIP_NULL
8KB End Test 6 1211 _DISABLE_ADAPTIVE_SHRUNK_AGGREGATION
8KB End Test 6 1014 _DISABLE_DATALAYER_SAMPLING
8KB End Test 6 212 _DISABLE_DUPLEX_LINK
8KB End Test 6 1210 _DISABLE_FAST_AGGREGATION
8KB End Test 6 170 _DISABLE_FILE_LOCKS
8KB End Test 6 1189 _DISABLE_FUNCTION_BASED_INDEX
8KB End Test 6 225 _DISABLE_HEALTH_CHECK
8KB End Test 6 36 _DISABLE_IMAGE_CHECK
8KB End Test 6 610 _DISABLE_INCREMENTAL_CHECKPOINTS
8KB End Test 6 643 _DISABLE_INCREMENTAL_RECOVERY_CKPT
8KB End Test 6 130 _DISABLE_INSTANCE_PARAMS_CHECK
8KB End Test 6 214 _DISABLE_INTERFACE_CHECKING
8KB End Test 6 41 _DISABLE_KCBHXOR_OSD
8KB End Test 6 349 _DISABLE_LATCH_FREE_SCN_WRITES_VIA_32CAS
8KB End Test 6 350 _DISABLE_LATCH_FREE_SCN_WRITES_VIA_64CAS
8KB End Test 6 547 _DISABLE_LOGGING
8KB End Test 6 369 _DISABLE_MULTIPLE_BLOCK_SIZES
8KB End Test 6 898 _DISABLE_NTLOG_EVENTS
8KB End Test 6 172 _DISABLE_ODM
8KB End Test 6 641 _DISABLE_RECOVERABLE_RECOVERY
8KB End Test 6 468 _DISABLE_RECOVERY_READ_SKIP
8KB End Test 6 1015 _DISABLE_SAMPLE_IO_OPTIM
8KB End Test 6 911 _DISABLE_SAVEPOINT_RESET
8KB End Test 6 612 _DISABLE_SELFTUNE_CHECKPOINTING
8KB End Test 6 337 _DISABLE_STREAMS_POOL_AUTO_TUNING
8KB End Test 6 42 _DISABLE_SYSTEM_STATE
8KB End Test 6 738 _DISABLE_TXN_ALERT
8KB End Test 6 726 _DISCRETE_TRANSACTIONS_ENABLED
8KB End Test 6 182 DISK_ASYNCH_IO
8KB End Test 6 805 DISPATCHERS
8KB End Test 6 815 _DISPATCHER_RATE_SCALE
8KB End Test 6 814 _DISPATCHER_RATE_TTL
8KB End Test 6 959 _DISTINCT_VIEW_UNNESTING
8KB End Test 6 799 DISTRIBUTED_LOCK_TIMEOUT
8KB End Test 6 800 _DISTRIBUTED_RECOVERY_CONNECTION_HOLD_TIME
8KB End Test 6 275 _DLMTRACE
8KB End Test 6 284 _DLM_SEND_TIMEOUT
8KB End Test 6 681 DML_LOCKS
8KB End Test 6 1130 _DML_MONITORING_ENABLED
8KB End Test 6 1219 _DM_MAX_SHARED_POOL_PCT
8KB End Test 6 903 _DOMAIN_INDEX_BATCH_SIZE
8KB End Test 6 904 _DOMAIN_INDEX_DML_BATCH_SIZE
8KB End Test 6 1217 _DROP_TABLE_GRANULE
8KB End Test 6 1215 _DROP_TABLE_OPTIMIZATION_ENABLED
8KB End Test 6 1262 DRS_START
8KB End Test 6 873 _DSS_CACHE_FLUSH
8KB End Test 6 1163 _DS_IOCOUNT_IOSIZE
8KB End Test 6 1136 _DTREE_AREA_SIZE
8KB End Test 6 1139 _DTREE_BINNING_ENABLED
8KB End Test 6 1141 _DTREE_BINTEST_ID
8KB End Test 6 1138 _DTREE_COMPRESSBMP_ENABLED
8KB End Test 6 1140 _DTREE_MAX_SURROGATES
8KB End Test 6 1137 _DTREE_PRUNING_ENABLED
8KB End Test 6 635 _DUMMY_INSTANCE
8KB End Test 6 1125 _DUMP_COMMON_SUBEXPRESSIONS
8KB End Test 6 1128 _DUMP_CONNECT_BY_LOOP_DATA
8KB End Test 6 1147 _DUMP_CURSOR_HEAP_SIZES
8KB End Test 6 231 _DUMP_INTERVAL_LIMIT
8KB End Test 6 232 _DUMP_MAX_LIMIT
8KB End Test 6 823 _DUMP_QBC_TREE
8KB End Test 6 292 _DUMP_RCVR_IPC
8KB End Test 6 229 _DUMP_SYSTEM_STATE_SCOPE
8KB End Test 6 230 _DUMP_TRACE_SCOPE
8KB End Test 6 790 _DYNAMIC_RLS_POLICIES
8KB End Test 6 861 _DYNAMIC_STATS_THRESHOLD
8KB End Test 6 954 _ELIMINATE_COMMON_SUBEXPR
8KB End Test 6 715 _ENABLE_BLOCK_LEVEL_TRANSACTION_RECOVERY
8KB End Test 6 972 _ENABLE_CSCN_CACHING
8KB End Test 6 872 _ENABLE_DEFAULT_AFFINITY
8KB End Test 6 1208 _ENABLE_DML_LOCK_ESCALATION
8KB End Test 6 1240 _ENABLE_EXCHANGE_VALIDATION_USING_CHECK
8KB End Test 6 1178 _ENABLE_FAST_REF_AFTER_MV_TBS
8KB End Test 6 748 _ENABLE_HASH_OVERFLOW
8KB End Test 6 696 _ENABLE_HWM_SYNC
8KB End Test 6 174 _ENABLE_LIST_IO
8KB End Test 6 1254 _ENABLE_NATIVENET_TCPIP
8KB End Test 6 69 _ENABLE_NUMA_OPTIMIZATION
8KB End Test 6 1200 _ENABLE_REFRESH_SCHEDULE
8KB End Test 6 24 _ENABLE_RELIABLE_LATCH_WAITS
8KB End Test 6 224 _ENABLE_RLB
8KB End Test 6 1251 _ENABLE_ROW_SHIPPING
8KB End Test 6 67 _ENABLE_SHARED_POOL_DURATIONS
8KB End Test 6 698 _ENABLE_TABLESPACE_ALERTS
8KB End Test 6 1047 _ENABLE_TYPE_DEP_SELECTIVITY
8KB End Test 6 140 _ENQUEUE_DEBUG_MULTI_INSTANCE
8KB End Test 6 139 _ENQUEUE_HASH
8KB End Test 6 141 _ENQUEUE_HASH_CHAIN_LATCHES
8KB End Test 6 137 _ENQUEUE_LOCKS
8KB End Test 6 138 _ENQUEUE_RESOURCES
8KB End Test 6 57 EVENT
8KB End Test 6 1124 _EXPAND_AGGREGATES
8KB End Test 6 932 _EXPLAIN_REWRITE_MODE
8KB End Test 6 1205 _EXTENDED_PRUNING_ENABLED
8KB End Test 6 586 _FAIRNESS_THRESHOLD
8KB End Test 6 283 _FAIR_REMOTE_CVT
8KB End Test 6 523 FAL_CLIENT
8KB End Test 6 524 FAL_SERVER
8KB End Test 6 884 _FAST_DUAL_ENABLED
8KB End Test 6 967 _FAST_FULL_SCAN_ENABLED
8KB End Test 6 611 _FAST_START_INSTANCE_RECOVERY_TARGET
8KB End Test 6 616 FAST_START_IO_TARGET
8KB End Test 6 617 FAST_START_MTTR_TARGET
8KB End Test 6 735 FAST_START_PARALLEL_ROLLBACK
8KB End Test 6 1132 _FIC_ALGORITHM_SET
8KB End Test 6 1133 _FIC_AREA_SIZE
8KB End Test 6 1134 _FIC_MAX_LENGTH
8KB End Test 6 1135 _FIC_MIN_BMSIZE
8KB End Test 6 1152 _FIC_OUTOFMEM_CANDIDATES
8KB End Test 6 200 _FIFTH_SPARE_PARAMETER
8KB End Test 6 173 FILEIO_NETWORK_ADAPTERS
8KB End Test 6 222 _FILEMAP_DIR
8KB End Test 6 175 FILESYSTEMIO_OPTIONS
8KB End Test 6 221 FILE_MAPPING
8KB End Test 6 196 _FIRST_SPARE_PARAMETER
8KB End Test 6 915 FIXED_DATE
8KB End Test 6 888 _FIX_CONTROL
8KB End Test 6 662 _FLASHBACK_ALLOW_NOARCHIVELOG
8KB End Test 6 666 _FLASHBACK_BARRIER_INTERVAL
8KB End Test 6 671 _FLASHBACK_COPY_LATCHES
8KB End Test 6 668 _FLASHBACK_FUZZY_BARRIER
8KB End Test 6 674 _FLASHBACK_GENERATION_BUFFER_SIZE
8KB End Test 6 677 _FLASHBACK_HINT_BARRIER_PERCENT
8KB End Test 6 665 _FLASHBACK_LOGFILE_ENQUEUE_TIMEOUT
8KB End Test 6 676 _FLASHBACK_LOG_IO_ERROR_BEHAVIOR
8KB End Test 6 670 _FLASHBACK_LOG_MIN_SIZE
8KB End Test 6 669 _FLASHBACK_LOG_SIZE
8KB End Test 6 675 _FLASHBACK_MAX_LOG_SIZE
8KB End Test 6 673 _FLASHBACK_MAX_N_LOG_PER_THREAD
8KB End Test 6 672 _FLASHBACK_N_LOG_PER_THREAD
8KB End Test 6 667 _FLASHBACK_STANDBY_BARRIER_INTERVAL
8KB End Test 6 664 _FLASHBACK_VERBOSE_INFO
8KB End Test 6 679 _FLASHBACK_WRITE_SIZE_QM
8KB End Test 6 1120 _FORCE_DATEFOLD_TRUNC
8KB End Test 6 1247 _FORCE_REWRITE_ENABLE
8KB End Test 6 1077 _FORCE_TEMPTABLES_FOR_GSETS
8KB End Test 6 199 _FOURTH_SPARE_PARAMETER
8KB End Test 6 1035 _FULL_PWISE_JOIN_ENABLED
8KB End Test 6 1204 _GBY_HASH_AGGREGATION_ENABLED
8KB End Test 6 922 _GBY_ONEKEY_ENABLED
8KB End Test 6 313 _GCS_FAST_RECONFIG
8KB End Test 6 318 _GCS_LATCHES
8KB End Test 6 319 _GCS_PROCESS_IN_RECOVERY
8KB End Test 6 317 _GCS_RESOURCES
8KB End Test 6 236 GCS_SERVER_PROCESSES
8KB End Test 6 320 _GCS_SHADOW_LOCKS
8KB End Test 6 575 _GC_AFFINITY_LIMIT
8KB End Test 6 576 _GC_AFFINITY_MINIMUM
8KB End Test 6 574 _GC_AFFINITY_TIME
8KB End Test 6 606 _GC_ASYNC_MEMCPY
8KB End Test 6 599 _GC_CHECK_BSCN
8KB End Test 6 603 _GC_COALESCE_RECOVERY_READS
8KB End Test 6 582 _GC_DEFER_TIME
8KB End Test 6 601 _GC_DYNAMIC_AFFINITY_LOCKS
8KB End Test 6 580 _GC_ELEMENT_PERCENT
8KB End Test 6 571 GC_FILES_TO_LOCKS
8KB End Test 6 600 _GC_GLOBAL_LRU
8KB End Test 6 578 _GC_INTEGRITY_CHECKS
8KB End Test 6 604 _GC_KEEP_RECOVERY_BUFFERS
8KB End Test 6 581 _GC_LATCHES
8KB End Test 6 605 _GC_MAXIMUM_BIDS
8KB End Test 6 598 _GC_STATISTICS
8KB End Test 6 573 _GC_UNDO_AFFINITY
8KB End Test 6 602 _GC_UNDO_AFFINITY_LOCKS
8KB End Test 6 572 _GC_USE_CR
8KB End Test 6 579 _GC_VECTOR_READ
8KB End Test 6 1107 _GENERALIZED_PRUNING_ENABLED
8KB End Test 6 285 _GES_DD_DEBUG
8KB End Test 6 282 _GES_DIAGNOSTICS
8KB End Test 6 293 _GES_HEALTH_CHECK
8KB End Test 6 1206 _GLOBALINDEX_PNUM_FILTER_ENABLED
8KB End Test 6 796 GLOBAL_CONTEXT_POOL_SIZE
8KB End Test 6 798 GLOBAL_NAMES
8KB End Test 6 999 _GROUPBY_NOPUSHDOWN_CUT_RATIO
8KB End Test 6 1000 _GROUPBY_ORDERBY_COMBINE
8KB End Test 6 1093 _GS_ANTI_SEMI_JOIN_ALLOWED
8KB End Test 6 3 _HANG_ANALYSIS_NUM_CALL_STACKS
8KB End Test 6 227 _HANG_DETECTION
8KB End Test 6 568 _HARD_PROTECTION
8KB End Test 6 875 HASH_AREA_SIZE
8KB End Test 6 874 _HASH_JOIN_ENABLED
8KB End Test 6 876 _HASH_MULTIBLOCK_IO_COUNT
8KB End Test 6 191 _HIGH_SERVER_THRESHOLD
8KB End Test 6 72 HI_SHARED_MEMORY_ADDRESS
8KB End Test 6 1169 _HJ_BIT_FILTER_THRESHOLD
8KB End Test 6 1260 HS_AUTOREGISTER
8KB End Test 6 697 _HWM_SYNC_THRESHOLD
8KB End Test 6 971 _IDL_CONVENTIONAL_INDEX_MAINTENANCE
8KB End Test 6 1168 _IDXRB_ROWINCR
8KB End Test 6 926 IFILE
8KB End Test 6 753 _IGNORE_DESC_IN_INDEX
8KB End Test 6 458 _IMMEDIATE_COMMIT_PROPAGATION
8KB End Test 6 1049 _IMPROVED_OUTERJOIN_CARD
8KB End Test 6 1043 _IMPROVED_ROW_LENGTH_ENABLED
8KB End Test 6 325 _IMR_ACTIVE
8KB End Test 6 328 _IMR_DISK_VOTING_INTERVAL
8KB End Test 6 326 _IMR_MAX_RECONFIG_DELAY
8KB End Test 6 327 _IMR_SPLITBRAIN_RES_WAIT
8KB End Test 6 728 _IMU_POOLS
8KB End Test 6 644 _INCREMENTAL_RECOVERY_CKPT_MIN_BATCH
8KB End Test 6 1045 _INDEX_JOIN_ENABLED
8KB End Test 6 1019 _INDEX_PREFETCH_FACTOR
8KB End Test 6 340 _INIT_GRANULE_INTERVAL
8KB End Test 6 913 _INIT_SQL_FILE
8KB End Test 6 5 _INJECT_STARTUP_FAULT
8KB End Test 6 906 _INSERT_ENABLE_HWM_BROKERED
8KB End Test 6 56 INSTANCE_GROUPS
8KB End Test 6 802 INSTANCE_NAME
8KB End Test 6 691 INSTANCE_NUMBER
8KB End Test 6 129 INSTANCE_TYPE
8KB End Test 6 700 _INST_LOCKING_PERIOD
8KB End Test 6 587 _INTERCONNECT_CHECKSUM
8KB End Test 6 1111 _INTRAPART_PDML_ENABLED
8KB End Test 6 1113 _INTRAPART_PDML_RANDOMLOCAL_ENABLED
8KB End Test 6 727 _IN_MEMORY_UNDO
8KB End Test 6 4 _IOR_SERIALIZE_FAULT
8KB End Test 6 181 _IOSLAVE_BATCH_COUNT
8KB End Test 6 180 _IOSLAVE_ISSUE_COUNT
8KB End Test 6 178 _IO_SHARED_POOL_SIZE
8KB End Test 6 184 _IO_SLAVES_DISABLED
8KB End Test 6 120 JAVA_MAX_SESSIONSPACE_SIZE
8KB End Test 6 111 __JAVA_POOL_SIZE
8KB End Test 6 112 JAVA_POOL_SIZE
8KB End Test 6 119 JAVA_SOFT_SESSIONSPACE_LIMIT
8KB End Test 6 840 _JOB_QUEUE_INTERVAL
8KB End Test 6 839 JOB_QUEUE_PROCESSES
8KB End Test 6 585 _KCL_COMMIT
8KB End Test 6 597 _KCL_CONSERVATIVE_LOG_FLUSH
8KB End Test 6 583 _KCL_DEBUG
8KB End Test 6 584 _KCL_INDEX_SPLIT
8KB End Test 6 596 _KCL_UNDO_GROUPING
8KB End Test 6 595 _KCL_UNDO_LOCKS
8KB End Test 6 751 _KDBL_ENABLE_POST_ALLOCATION
8KB End Test 6 754 _KEEP_REMOTE_COLUMN_SIZE
8KB End Test 6 816 _KERNEL_MESSAGE_NETWORK_DRIVER
8KB End Test 6 1357 _KFFMAP_HASH_SIZE
8KB End Test 6 1358 _KFFMOP_HASH_SIZE
8KB End Test 6 121 _KGHDSIDX_COUNT
8KB End Test 6 767 _KGLSIM_MAXMEM_PERCENT
8KB End Test 6 765 _KGL_BUCKET_COUNT
8KB End Test 6 761 _KGL_FIXED_EXTENTS
8KB End Test 6 768 _KGL_HASH_COLLISION
8KB End Test 6 760 _KGL_HEAP_SIZE
8KB End Test 6 763 _KGL_KEEP_CACHE_PCT
8KB End Test 6 764 _KGL_KEEP_CACHE_RETAIN_PCT
8KB End Test 6 770 _KGL_LARGE_HEAP_WARNING_THRESHOLD
8KB End Test 6 759 _KGL_LATCH_COUNT
8KB End Test 6 758 _KGL_MULTI_INSTANCE_INVALIDATION
8KB End Test 6 756 _KGL_MULTI_INSTANCE_LOCK
8KB End Test 6 757 _KGL_MULTI_INSTANCE_PIN
8KB End Test 6 762 _KGL_SESSION_CACHED_OBJECTS
8KB End Test 6 769 _KGL_TIME_TO_WAIT_FOR_LOCKS
8KB End Test 6 776 _KGX_LATCHES
8KB End Test 6 361 _KILL_CONTROLFILE_ENQUEUE_BLOCKER
8KB End Test 6 294 _KILL_ENQUEUE_BLOCKER
8KB End Test 6 1195 _KILL_JAVA_THREADS_ON_EOC
8KB End Test 6 846 _KKFI_TRACE
8KB End Test 6 777 _KKS_USE_MUTEX_PIN
8KB End Test 6 849 _KOLFUSESLF
8KB End Test 6 1221 _KQL_SUBHEAP_TRACE
8KB End Test 6 59 _KSDXDOCMD_DEFAULT_TIMEOUT_MS
8KB End Test 6 64 _KSDXW_CINI_FLG
8KB End Test 6 65 _KSDXW_NBUFS
8KB End Test 6 62 _KSDXW_NUM_PGW
8KB End Test 6 61 _KSDXW_NUM_SGW
8KB End Test 6 63 _KSDXW_STACK_DEPTH
8KB End Test 6 132 _KSD_TEST_PARAM
8KB End Test 6 133 _KSE_DIE_TIMEOUT
8KB End Test 6 135 _KSE_PC_TABLE_SIZE
8KB End Test 6 171 _KSFD_VERIFY_WRITE
8KB End Test 6 142 _KSI_TRACE
8KB End Test 6 218 _KSMG_GRANULE_LOCKING_STATUS
8KB End Test 6 217 _KSMG_GRANULE_SIZE
8KB End Test 6 219 _KSMG_LOCK_CHECK_INTERVAL
8KB End Test 6 220 _KSMG_LOCK_REACQUIRE_COUNT
8KB End Test 6 35 _KSUITM_DONT_KILL_DUMPER
8KB End Test 6 34 _KSU_DIAG_KILL_TIME
8KB End Test 6 205 _KSXP_DIAGMODE
8KB End Test 6 216 _KSXP_REPORTING_PROCESS
8KB End Test 6 204 _KSXP_SEND_TIMEOUT
8KB End Test 6 690 _KTC_DEBUG
8KB End Test 6 687 _KTC_LATCHES
8KB End Test 6 708 _KTU_LATCHES
8KB End Test 6 854 _KU_TRACE
8KB End Test 6 115 _LARGE_POOL_MIN_ALLOC
8KB End Test 6 109 __LARGE_POOL_SIZE
8KB End Test 6 110 LARGE_POOL_SIZE
8KB End Test 6 699 _LAST_ALLOCATION_PERIOD
8KB End Test 6 22 _LATCH_CLASSES
8KB End Test 6 14 _LATCH_CLASS_0
8KB End Test 6 15 _LATCH_CLASS_1
8KB End Test 6 16 _LATCH_CLASS_2
8KB End Test 6 17 _LATCH_CLASS_3
8KB End Test 6 18 _LATCH_CLASS_4
8KB End Test 6 19 _LATCH_CLASS_5
8KB End Test 6 20 _LATCH_CLASS_6
8KB End Test 6 21 _LATCH_CLASS_7
8KB End Test 6 8 _LATCH_MISS_STAT_SID
8KB End Test 6 6 _LATCH_RECOVERY_ALIGNMENT
8KB End Test 6 780 LDAP_DIRECTORY_ACCESS
8KB End Test 6 752 _LDR_IO_SIZE
8KB End Test 6 1042 _LEFT_NESTED_LOOPS_RANDOM
8KB End Test 6 526 _LGWR_ASYNC_BROADCASTS
8KB End Test 6 525 _LGWR_ASYNC_IO
8KB End Test 6 527 _LGWR_DELAY_WRITE
8KB End Test 6 186 _LGWR_IO_SLAVES
8KB End Test 6 512 _LGWR_MAX_NS_WT
8KB End Test 6 521 _LGWR_NS_NL_MAX
8KB End Test 6 520 _LGWR_NS_NL_MIN
8KB End Test 6 519 _LGWR_NS_SIM_ERR
8KB End Test 6 518 _LGWR_TA_SIM_ERR
8KB End Test 6 766 _LIBRARY_CACHE_ADVICE
8KB End Test 6 31 LICENSE_MAX_SESSIONS
8KB End Test 6 789 LICENSE_MAX_USERS
8KB End Test 6 32 LICENSE_SESSIONS_WARNING
8KB End Test 6 545 _LIGHTWEIGHT_HDRS
8KB End Test 6 1061 _LIKE_WITH_BIND_AS_EQUALITY
8KB End Test 6 240 _LM_ACTIVATE_LMS_THRESHOLD
8KB End Test 6 264 _LM_CACHE_LVL0_CLEANUP
8KB End Test 6 262 _LM_CACHE_RES_CLEANUP
8KB End Test 6 263 _LM_CACHE_RES_TYPE
8KB End Test 6 307 _LM_CHECKSUM_BATCH_MSG
8KB End Test 6 256 _LM_CONTIGUOUS_RES_COUNT
8KB End Test 6 273 _LM_DD_INTERVAL
8KB End Test 6 274 _LM_DD_SCAN_INTERVAL
8KB End Test 6 254 _LM_DRM_MAX_REQUESTS
8KB End Test 6 253 _LM_DRM_WINDOW
8KB End Test 6 255 _LM_DRM_XLATCH
8KB End Test 6 237 _LM_DYNAMIC_LMS
8KB End Test 6 331 _LM_DYNAMIC_LOAD
8KB End Test 6 250 _LM_DYNAMIC_REMASTERING
8KB End Test 6 272 _LM_ENQUEUE_FREELIST
8KB End Test 6 271 _LM_ENQ_LOCK_FREELIST
8KB End Test 6 249 _LM_ENQ_RCFG
8KB End Test 6 279 _LM_FILE_AFFINITY
8KB End Test 6 286 _LM_GLOBAL_POSTS
8KB End Test 6 241 _LM_LMD_WAITTIME
8KB End Test 6 235 _LM_LMS
8KB End Test 6 242 _LM_LMS_WAITTIME
8KB End Test 6 245 _LM_LOCKS
8KB End Test 6 246 _LM_MASTER_WEIGHT
8KB End Test 6 238 _LM_MAX_LMS
8KB End Test 6 239 _LM_MIN_LMS
8KB End Test 6 295 _LM_MSG_BATCH_SIZE
8KB End Test 6 297 _LM_MSG_CACHE_THRESHOLDS
8KB End Test 6 298 _LM_MSG_CLEANUP_INTERVAL
8KB End Test 6 260 _LM_NODE_JOIN_OPT
8KB End Test 6 261 _LM_NON_FAULT_TOLERANT
8KB End Test 6 259 _LM_NUM_PCMHV_LATCHES
8KB End Test 6 257 _LM_NUM_PT_BUCKETS
8KB End Test 6 258 _LM_NUM_PT_LATCHES
8KB End Test 6 302 _LM_PROCESS_BATCHING
8KB End Test 6 243 _LM_PROCS
8KB End Test 6 277 _LM_PROC_FREEZE_TIMEOUT
8KB End Test 6 270 _LM_RCFG_TIMEOUT
8KB End Test 6 266 _LM_RCV_BUFFER_SIZE
8KB End Test 6 244 _LM_RESS
8KB End Test 6 281 _LM_RES_HASH_BUCKET
8KB End Test 6 252 _LM_RES_PART
8KB End Test 6 306 _LM_SENDPROXY_RESERVE
8KB End Test 6 265 _LM_SEND_BUFFERS
8KB End Test 6 299 _LM_SEND_MODE
8KB End Test 6 301 _LM_SEND_QUEUE_BATCHING
8KB End Test 6 300 _LM_SEND_QUEUE_LENGTH
8KB End Test 6 280 _LM_SHARE_LOCK_OPT
8KB End Test 6 303 _LM_SQ_BATCH_FACTOR
8KB End Test 6 304 _LM_SQ_BATCH_TYPE
8KB End Test 6 305 _LM_SQ_BATCH_WAITTICK
8KB End Test 6 268 _LM_SYNC_TIMEOUT
8KB End Test 6 296 _LM_TICKETS
8KB End Test 6 269 _LM_TICKET_ACTIVE_SENDBACK
8KB End Test 6 276 _LM_TX_DELTA
8KB End Test 6 278 _LM_VALIDATE_RESOURCE_TYPE
8KB End Test 6 251 _LM_XIDS
8KB End Test 6 1103 _LOAD_WITHOUT_COMPILE
8KB End Test 6 1039 _LOCAL_COMMUNICATION_COSTING_ENABLED
8KB End Test 6 1040 _LOCAL_COMMUNICATION_RATIO
8KB End Test 6 811 LOCAL_LISTENER
8KB End Test 6 25 LOCK_NAME_SPACE
8KB End Test 6 75 LOCK_SGA
8KB End Test 6 76 _LOCK_SGA_AREAS
8KB End Test 6 637 LOGMNR_MAX_PERSISTENT_SESSIONS
8KB End Test 6 470 _LOG_ARCHIVE_AVOID_MEMCPY
8KB End Test 6 478 _LOG_ARCHIVE_BUFFERS
8KB End Test 6 479 _LOG_ARCHIVE_BUFFER_SIZE
8KB End Test 6 480 _LOG_ARCHIVE_CALLOUT
8KB End Test 6 474 _LOG_ARCHIVE_COMPRESS_ENABLE
8KB End Test 6 473 LOG_ARCHIVE_CONFIG
8KB End Test 6 505 _LOG_ARCHIVE_DELTA_SYNC_WAIT
8KB End Test 6 481 LOG_ARCHIVE_DEST
8KB End Test 6 483 LOG_ARCHIVE_DEST_1
8KB End Test 6 492 LOG_ARCHIVE_DEST_10
8KB End Test 6 484 LOG_ARCHIVE_DEST_2
8KB End Test 6 485 LOG_ARCHIVE_DEST_3
8KB End Test 6 486 LOG_ARCHIVE_DEST_4
8KB End Test 6 487 LOG_ARCHIVE_DEST_5
8KB End Test 6 488 LOG_ARCHIVE_DEST_6
8KB End Test 6 489 LOG_ARCHIVE_DEST_7
8KB End Test 6 490 LOG_ARCHIVE_DEST_8
8KB End Test 6 491 LOG_ARCHIVE_DEST_9
8KB End Test 6 493 LOG_ARCHIVE_DEST_STATE_1
8KB End Test 6 502 LOG_ARCHIVE_DEST_STATE_10
8KB End Test 6 494 LOG_ARCHIVE_DEST_STATE_2
8KB End Test 6 495 LOG_ARCHIVE_DEST_STATE_3
8KB End Test 6 496 LOG_ARCHIVE_DEST_STATE_4
8KB End Test 6 497 LOG_ARCHIVE_DEST_STATE_5
8KB End Test 6 498 LOG_ARCHIVE_DEST_STATE_6
8KB End Test 6 499 LOG_ARCHIVE_DEST_STATE_7
8KB End Test 6 500 LOG_ARCHIVE_DEST_STATE_8
8KB End Test 6 501 LOG_ARCHIVE_DEST_STATE_9
8KB End Test 6 482 LOG_ARCHIVE_DUPLEX_DEST
8KB End Test 6 510 LOG_ARCHIVE_FORMAT
8KB End Test 6 509 LOG_ARCHIVE_LOCAL_FIRST
8KB End Test 6 503 LOG_ARCHIVE_MAX_PROCESSES
8KB End Test 6 506 LOG_ARCHIVE_MIN_SUCCEED_DEST
8KB End Test 6 522 _LOG_ARCHIVE_NETWORK_REDO_SIZE
8KB End Test 6 504 _LOG_ARCHIVE_NET_TIMEOUT
8KB End Test 6 471 _LOG_ARCHIVE_PROT_AUTO_DEMOTE
8KB End Test 6 469 _LOG_ARCHIVE_SECURITY_ENABLED
8KB End Test 6 475 LOG_ARCHIVE_START
8KB End Test 6 508 LOG_ARCHIVE_TRACE
8KB End Test 6 618 _LOG_BLOCKS_DURING_BACKUP
8KB End Test 6 528 LOG_BUFFER
8KB End Test 6 536 _LOG_BUFFERS_CORRUPT
8KB End Test 6 535 _LOG_BUFFERS_DEBUG
8KB End Test 6 622 LOG_CHECKPOINTS_TO_ALERT
8KB End Test 6 531 LOG_CHECKPOINT_INTERVAL
8KB End Test 6 465 _LOG_CHECKPOINT_RECOVERY_CHECK
8KB End Test 6 532 LOG_CHECKPOINT_TIMEOUT
8KB End Test 6 686 _LOG_COMMITTIME_BLOCK_CLEANOUT
8KB End Test 6 537 _LOG_DEBUG_MULTI_INSTANCE
8KB End Test 6 659 _LOG_DELETION_POLICY
8KB End Test 6 530 _LOG_EVENT_QUEUES
8KB End Test 6 359 LOG_FILE_NAME_CONVERT
8KB End Test 6 529 _LOG_IO_SIZE
8KB End Test 6 539 _LOG_PARALLELISM
8KB End Test 6 541 _LOG_PARALLELISM_DYNAMIC
8KB End Test 6 540 _LOG_PARALLELISM_MAX
8KB End Test 6 544 _LOG_PRIVATE_MUL
8KB End Test 6 542 _LOG_PRIVATE_PARALLELISM
8KB End Test 6 543 _LOG_PRIVATE_PARALLELISM_MUL
8KB End Test 6 538 _LOG_SIMULTANEOUS_COPIES
8KB End Test 6 693 _LOG_SPACE_ERRORS
8KB End Test 6 533 _LOG_SWITCH_TIMEOUT
8KB End Test 6 38 _LONGOPS_ENABLED
8KB End Test 6 192 _LOW_SERVER_THRESHOLD
8KB End Test 6 323 _MASTER_DIRECT_SENDS
8KB End Test 6 1073 _MAV_REFRESH_CONSISTENT_READ
8KB End Test 6 1100 _MAV_REFRESH_DOUBLE_COUNT_PREVENTED
8KB End Test 6 1074 _MAV_REFRESH_OPT
8KB End Test 6 1075 _MAV_REFRESH_UNIONALL_TABLES
8KB End Test 6 513 _MAX_ARCH_LNS_WAIT
8KB End Test 6 459 MAX_COMMIT_PROPAGATION_DELAY
8KB End Test 6 808 MAX_DISPATCHERS
8KB End Test 6 894 MAX_DUMP_FILE_SIZE
8KB End Test 6 783 MAX_ENABLED_ROLES
8KB End Test 6 10 _MAX_EXPONENTIAL_SLEEP
8KB End Test 6 514 _MAX_LNS_SHUTDOWN_ARCHIVAL_TIME
8KB End Test 6 234 _MAX_PROTOCOL_SUPPORT
8KB End Test 6 511 _MAX_RFS_CONNECTIONS
8KB End Test 6 807 MAX_SHARED_SERVERS
8KB End Test 6 704 _MAX_SHRINK_OBJ_STATS
8KB End Test 6 9 _MAX_SLEEP_HOLDING_LATCH
8KB End Test 6 645 _MEDIA_RECOVERY_READ_BATCH
8KB End Test 6 646 _MEDIA_RECOVERY_REAP_TIME
8KB End Test 6 346 _MEMORY_BROKER_LOG_STAT_ENTRIES
8KB End Test 6 348 _MEMORY_BROKER_MARGINAL_UTILITY_BC
8KB End Test 6 347 _MEMORY_BROKER_MARGINAL_UTILITY_SP
8KB End Test 6 342 _MEMORY_BROKER_SHRINK_HEAPS
8KB End Test 6 343 _MEMORY_BROKER_SHRINK_JAVA_HEAPS
8KB End Test 6 344 _MEMORY_BROKER_SHRINK_STREAMS_POOL
8KB End Test 6 345 _MEMORY_BROKER_SHRINK_TIMEOUT
8KB End Test 6 341 _MEMORY_BROKER_STAT_INTERVAL
8KB End Test 6 338 _MEMORY_MANAGEMENT_TRACING
8KB End Test 6 339 _MEMORY_SANITY_CHECK
8KB End Test 6 98 _MEM_ANNOTATION_PR_LEV
8KB End Test 6 99 _MEM_ANNOTATION_SCALE
8KB End Test 6 97 _MEM_ANNOTATION_SH_LEV
8KB End Test 6 100 _MEM_ANNOTATION_STORE
8KB End Test 6 106 _MEM_STD_EXTENT_SIZE
8KB End Test 6 136 _MESSAGES
8KB End Test 6 1071 _MINIMAL_STATS_AGGREGATION
8KB End Test 6 702 _MINIMUM_BLOCKS_TO_SHRINK
8KB End Test 6 703 _MINIMUM_EXTENTS_TO_SHRINK
8KB End Test 6 460 _MINIMUM_GIGA_SCN
8KB End Test 6 546 _MIRROR_REDO_BUFFERS
8KB End Test 6 1032 _MMV_QUERY_REWRITE_ENABLED
8KB End Test 6 626 _MULTIPLE_INSTANCE_RECOVERY
8KB End Test 6 880 _MULTI_JOIN_KEY_TABLE_LOOKUP
8KB End Test 6 1159 _MV_REFRESH_ANA
8KB End Test 6 1158 _MV_REFRESH_COSTING
8KB End Test 6 1076 _MV_REFRESH_DELTA_FRACTION
8KB End Test 6 1072 _MV_REFRESH_EUT
8KB End Test 6 1177 _MV_REFRESH_FORCE_PARALLEL_QUERY
8KB End Test 6 1102 _MV_REFRESH_NEW_SETUP_DISABLED
8KB End Test 6 1174 _MV_REFRESH_REBUILD_PERCENTAGE
8KB End Test 6 1069 _MV_REFRESH_SELECTIONS
8KB End Test 6 1094 _MV_REFRESH_USE_STATS
8KB End Test 6 1164 _MV_REFSCHED_TIMEINCR
8KB End Test 6 1227 _MV_ROLLING_INV
8KB End Test 6 1395 _MWIN_SCHEDULE
8KB End Test 6 169 _NCHAR_IMP_CNV
8KB End Test 6 905 _NCHAR_IMP_CONV
8KB End Test 6 1017 _NCMB_READAHEAD_ENABLED
8KB End Test 6 1018 _NCMB_READAHEAD_TRACING
8KB End Test 6 1006 _NESTED_LOOP_FUDGE
8KB End Test 6 1106 _NESTED_MAV_FAST_ONCOMMIT_ENABLED
8KB End Test 6 885 _NEWSORT_ENABLED
8KB End Test 6 887 _NEWSORT_ORDERED_PCT
8KB End Test 6 886 _NEWSORT_TYPE
8KB End Test 6 1065 _NEW_INITIAL_JOIN_ORDERS
8KB End Test 6 950 _NEW_SORT_COST_ESTIMATE
8KB End Test 6 160 NLS_CALENDAR
8KB End Test 6 166 NLS_COMP
8KB End Test 6 157 NLS_CURRENCY
8KB End Test 6 156 NLS_DATE_FORMAT
8KB End Test 6 155 NLS_DATE_LANGUAGE
8KB End Test 6 165 NLS_DUAL_CURRENCY
8KB End Test 6 159 NLS_ISO_CURRENCY
8KB End Test 6 152 NLS_LANGUAGE
8KB End Test 6 167 NLS_LENGTH_SEMANTICS
8KB End Test 6 168 NLS_NCHAR_CONV_EXCP
8KB End Test 6 158 NLS_NUMERIC_CHARACTERS
8KB End Test 6 154 NLS_SORT
8KB End Test 6 153 NLS_TERRITORY
8KB End Test 6 162 NLS_TIMESTAMP_FORMAT
8KB End Test 6 164 NLS_TIMESTAMP_TZ_FORMAT
8KB End Test 6 161 NLS_TIME_FORMAT
8KB End Test 6 163 NLS_TIME_TZ_FORMAT
8KB End Test 6 332 _NOTIFY_CRS
8KB End Test 6 901 _NO_OBJECTS
8KB End Test 6 1008 _NO_OR_EXPANSION
8KB End Test 6 615 _NO_RECOVERY_THROUGH_RESETLOGS
8KB End Test 6 516 _NS_MAX_FLUSH_WT
8KB End Test 6 517 _NS_MAX_SEND_DELAY
8KB End Test 6 77 _NUMA_INSTANCE_MAPPING
8KB End Test 6 68 _NUMA_POOL_SIZE
8KB End Test 6 55 _NUMBER_CACHED_ATTRIBUTES
8KB End Test 6 37 _NUM_LONGOP_CHILD_LATCHES
8KB End Test 6 786 O7_DICTIONARY_ACCESSIBILITY
8KB End Test 6 900 OBJECT_CACHE_MAX_SIZE_PERCENT
8KB End Test 6 899 OBJECT_CACHE_OPTIMAL_SIZE
8KB End Test 6 223 _OBJECT_STATISTICS
8KB End Test 6 712 _OFFLINE_ROLLBACK_SEGMENTS
8KB End Test 6 267 _OGMS_HOME
8KB End Test 6 1265 _OLAPI_HISTORY_RETENTION
8KB End Test 6 1268 _OLAPI_IFACE_OBJECT_HISTORY
8KB End Test 6 1269 _OLAPI_IFACE_OBJECT_HISTORY_RETENTION
8KB End Test 6 1271 _OLAPI_IFACE_OPERATION_HISTORY_RETENTION
8KB End Test 6 1270 _OLAPI_INTERFACE_OPERATION_HISTORY
8KB End Test 6 1272 _OLAPI_MEMORY_OPERATION_HISTORY
8KB End Test 6 1274 _OLAPI_MEMORY_OPERATION_HISTORY_PAUSE_AT_SEQNO
8KB End Test 6 1273 _OLAPI_MEMORY_OPERATION_HISTORY_RETENTION
8KB End Test 6 1266 _OLAPI_SESSION_HISTORY
8KB End Test 6 1267 _OLAPI_SESSION_HISTORY_RETENTION
8KB End Test 6 1281 _OLAP_AGGREGATE_BUFFER_SIZE
8KB End Test 6 1292 _OLAP_AGGREGATE_FLAGS
8KB End Test 6 1290 _OLAP_AGGREGATE_FUNCTION_CACHE_ENABLED
8KB End Test 6 1289 _OLAP_AGGREGATE_FUNCTION_MERGE_THRESHOLD
8KB End Test 6 1287 _OLAP_AGGREGATE_MAX_THREAD_TUPLES
8KB End Test 6 1282 _OLAP_AGGREGATE_MIN_BUFFER_SIZE
8KB End Test 6 1284 _OLAP_AGGREGATE_MIN_THREAD_STATUS
8KB End Test 6 1291 _OLAP_AGGREGATE_MULTIPATH_HIER
8KB End Test 6 1285 _OLAP_AGGREGATE_STATLEN_THRESH
8KB End Test 6 1288 _OLAP_AGGREGATE_STORE_PROBABILITY
8KB End Test 6 1286 _OLAP_AGGREGATE_WORKLIST_MAX
8KB End Test 6 1283 _OLAP_AGGREGATE_WORK_PER_THREAD
8KB End Test 6 1294 _OLAP_ALLOCATE_ERRORLOG_FORMAT
8KB End Test 6 1276 _OLAP_CONTINUOUS_TRACE_FILE
8KB End Test 6 1296 _OLAP_DBGOUTFILE_ECHO_TO_EVENTLOG
8KB End Test 6 1302 _OLAP_DIMENSION_COREHASH_CLASS
8KB End Test 6 1301 _OLAP_DIMENSION_COREHASH_MAX
8KB End Test 6 1297 _OLAP_EIF_EXPORT_LOB_SIZE
8KB End Test 6 1311 _OLAP_LMGEN_DIM_SIZE
8KB End Test 6 1312 _OLAP_LMGEN_MEAS_SIZE
8KB End Test 6 1300 _OLAP_OBJECT_HASH_CLASS
8KB End Test 6 1305 _OLAP_PAGE_POOL_EXPAND_RATE
8KB End Test 6 1304 _OLAP_PAGE_POOL_HI
8KB End Test 6 1307 _OLAP_PAGE_POOL_HIT_TARGET
8KB End Test 6 1303 _OLAP_PAGE_POOL_LOW
8KB End Test 6 1308 _OLAP_PAGE_POOL_PRESSURE
8KB End Test 6 1306 _OLAP_PAGE_POOL_SHRINK_RATE
8KB End Test 6 1275 OLAP_PAGE_POOL_SIZE
8KB End Test 6 1280 _OLAP_PARALLEL_UPDATE_SMALL_GROUP
8KB End Test 6 1279 _OLAP_PARALLEL_UPDATE_SMALL_THRESHOLD
8KB End Test 6 1278 _OLAP_PARALLEL_UPDATE_THRESHOLD
8KB End Test 6 1295 _OLAP_POUTLOG_ECHO_TO_EVENTLOG
8KB End Test 6 1299 _OLAP_SESSCACHE_ENABLED
8KB End Test 6 1298 _OLAP_SORT_BUFFER_SIZE
8KB End Test 6 1310 _OLAP_STATBOOL_COREBITS
8KB End Test 6 1309 _OLAP_STATBOOL_THRESHOLD
8KB End Test 6 1277 _OLAP_TABLE_FUNCTION_STATISTICS
8KB End Test 6 1313 _OLAP_WRAP_ERRORS
8KB End Test 6 878 _OLD_CONNECT_BY_ENABLED
8KB End Test 6 795 _OLS_CLEANUP_TASK
8KB End Test 6 176 _OMF
8KB End Test 6 1066 _ONESIDE_COLSTAT_FOR_EQUIJOINS
8KB End Test 6 925 OPEN_CURSORS
8KB End Test 6 907 OPEN_LINKS
8KB End Test 6 908 OPEN_LINKS_PER_INSTANCE
8KB End Test 6 1050 _OPTIMIZER_ADJUST_FOR_NULLS
8KB End Test 6 1116 _OPTIMIZER_AUTOSTATS_JOB
8KB End Test 6 1237 _OPTIMIZER_BETTER_INLIST_COSTING
8KB End Test 6 1166 _OPTIMIZER_BLOCK_SIZE
8KB End Test 6 949 _OPTIMIZER_CACHE_STATS
8KB End Test 6 1201 _OPTIMIZER_CARTESIAN_ENABLED
8KB End Test 6 963 _OPTIMIZER_CBQT_FACTOR
8KB End Test 6 1229 _OPTIMIZER_CBQT_NO_SIZE_RESTRICTION
8KB End Test 6 1185 _OPTIMIZER_CEIL_COST
8KB End Test 6 1053 _OPTIMIZER_CHOOSE_PERMUTATION
8KB End Test 6 1248 _OPTIMIZER_COMPLEX_PRED_SELECTIVITY
8KB End Test 6 1115 _OPTIMIZER_COMPUTE_INDEX_STATS
8KB End Test 6 1119 _OPTIMIZER_CONNECT_BY_COST_BASED
8KB End Test 6 1172 _OPTIMIZER_CORRECT_SQ_SELECTIVITY
8KB End Test 6 961 _OPTIMIZER_COST_BASED_TRANSFORMATION
8KB End Test 6 1171 _OPTIMIZER_COST_FILTER_PRED
8KB End Test 6 1222 _OPTIMIZER_COST_HJSMJ_MULTIMATCH
8KB End Test 6 946 _OPTIMIZER_COST_MODEL
8KB End Test 6 1051 _OPTIMIZER_DEGREE
8KB End Test 6 1180 _OPTIMIZER_DIM_SUBQ_JOIN_SEL
8KB End Test 6 1181 _OPTIMIZER_DISABLE_STRANS_SANITY_CHECKS
8KB End Test 6 1097 OPTIMIZER_DYNAMIC_SAMPLING
8KB End Test 6 1096 _OPTIMIZER_DYN_SMP_BLKS
8KB End Test 6 1232 _OPTIMIZER_ENHANCED_FILTER_PUSH
8KB End Test 6 945 _OPTIMIZER_EXTENDED_CURSOR_SHARING
8KB End Test 6 914 OPTIMIZER_FEATURES_ENABLE
8KB End Test 6 1118 _OPTIMIZER_FILTER_PRED_PULLUP
8KB End Test 6 1183 _OPTIMIZER_IGNORE_HINTS
8KB End Test 6 1011 OPTIMIZER_INDEX_CACHING
8KB End Test 6 1010 OPTIMIZER_INDEX_COST_ADJ
8KB End Test 6 1190 _OPTIMIZER_INVALIDATION_PERIOD
8KB End Test 6 1203 _OPTIMIZER_JOIN_ELIMINATION_ENABLED
8KB End Test 6 1196 _OPTIMIZER_JOIN_ORDER_CONTROL
8KB End Test 6 969 _OPTIMIZER_JOIN_SEL_SANITY_CHECK
8KB End Test 6 1009 _OPTIMIZER_MAX_PERMUTATIONS
8KB End Test 6 1239 _OPTIMIZER_MIN_CACHE_BLOCKS
8KB End Test 6 1143 _OPTIMIZER_MJC_ENABLED
8KB End Test 6 930 OPTIMIZER_MODE
8KB End Test 6 931 _OPTIMIZER_MODE_FORCE
8KB End Test 6 1220 _OPTIMIZER_MULTIPLE_CENV
8KB End Test 6 1099 _OPTIMIZER_NEW_JOIN_CARD_COMPUTATION
8KB End Test 6 1243 _OPTIMIZER_ORDER_BY_ELIMINATION_ENABLED
8KB End Test 6 1241 _OPTIMIZER_OR_EXPANSION
8KB End Test 6 1242 _OPTIMIZER_OUTER_TO_ANTI_ENABLED
8KB End Test 6 1155 _OPTIMIZER_PERCENT_PARALLEL
8KB End Test 6 960 _OPTIMIZER_PUSH_DOWN_DISTINCT
8KB End Test 6 1117 _OPTIMIZER_PUSH_PRED_COST_BASED
8KB End Test 6 1184 _OPTIMIZER_RANDOM_PLAN
8KB End Test 6 1236 _OPTIMIZER_ROWNUM_PRED_BASED_FKR
8KB End Test 6 1170 _OPTIMIZER_SAVE_STATS
8KB End Test 6 1156 _OPTIMIZER_SEARCH_LIMIT
8KB End Test 6 1224 OPTIMIZER_SECURE_VIEW_MERGING
8KB End Test 6 1238 _OPTIMIZER_SELF_INDUCED_CACHE_COST
8KB End Test 6 968 _OPTIMIZER_SKIP_SCAN_ENABLED
8KB End Test 6 1250 _OPTIMIZER_SKIP_SCAN_GUESS
8KB End Test 6 1144 _OPTIMIZER_SORTMERGE_JOIN_ENABLED
8KB End Test 6 962 _OPTIMIZER_SQU_BOTTOMUP
8KB End Test 6 1202 _OPTIMIZER_STARPLAN_ENABLED
8KB End Test 6 1244 _OPTIMIZER_STAR_TRAN_IN_WITH_CLAUSE
8KB End Test 6 948 _OPTIMIZER_SYSTEM_STATS_USAGE
8KB End Test 6 855 _OPTIMIZER_TRACE
8KB End Test 6 1223 _OPTIMIZER_TRANSITIVITY_RETAIN
8KB End Test 6 1154 _OPTIMIZER_UNDO_CHANGES
8KB End Test 6 947 _OPTIMIZER_UNDO_COST_CHANGE
8KB End Test 6 1114 _OPTIM_ADJUST_FOR_PART_SKEWS
8KB End Test 6 1179 _OPTIM_DICT_STATS_AT_DB_CR_UPG
8KB End Test 6 970 _OPTIM_ENHANCE_NNULL_DETECTION
8KB End Test 6 1095 _OPTIM_NEW_DEFAULT_JOIN_SEL
8KB End Test 6 1068 _OPTIM_PEEK_USER_BINDS
8KB End Test 6 58 _ORADEBUG_FORCE
8KB End Test 6 1005 _ORDERED_NESTED_LOOP
8KB End Test 6 1003 _ORDERED_SEMIJOIN
8KB End Test 6 1060 _OR_EXPAND_NVL_PREDICATE
8KB End Test 6 928 OS_AUTHENT_PREFIX
8KB End Test 6 781 OS_ROLES
8KB End Test 6 40 _OS_SCHED_HIGH_PRIORITY
8KB End Test 6 12 _OTHER_WAIT_EVENT_EXCLUSION
8KB End Test 6 11 _OTHER_WAIT_THRESHOLD
8KB End Test 6 1214 _OUTLINE_BITMAP_TREE
8KB End Test 6 1041 _PARALLELISM_COST_FUDGE_FACTOR
8KB End Test 6 988 _PARALLEL_ADAPTIVE_MAX_USERS
8KB End Test 6 985 PARALLEL_ADAPTIVE_MULTI_USER
8KB End Test 6 987 PARALLEL_AUTOMATIC_TUNING
8KB End Test 6 973 _PARALLEL_BROADCAST_ENABLED
8KB End Test 6 842 _PARALLEL_DEFAULT_MAX_INSTANCES
8KB End Test 6 866 _PARALLEL_EXECUTION_MESSAGE_ALIGN
8KB End Test 6 865 PARALLEL_EXECUTION_MESSAGE_SIZE
8KB End Test 6 863 _PARALLEL_FAKE_CLASS_PCT
8KB End Test 6 290 _PARALLEL_FIXWRITE_BUCKET
8KB End Test 6 862 PARALLEL_INSTANCE_GROUP
8KB End Test 6 989 _PARALLEL_LOAD_BALANCING
8KB End Test 6 990 _PARALLEL_LOAD_BAL_UNIT
8KB End Test 6 857 PARALLEL_MAX_SERVERS
8KB End Test 6 868 _PARALLEL_MIN_MESSAGE_POOL
8KB End Test 6 841 PARALLEL_MIN_PERCENT
8KB End Test 6 856 PARALLEL_MIN_SERVERS
8KB End Test 6 736 _PARALLEL_RECOVERY_STOPAT
8KB End Test 6 288 _PARALLEL_REPLAY_MSG_LIMIT
8KB End Test 6 555 PARALLEL_SERVER
8KB End Test 6 858 _PARALLEL_SERVER_IDLE_TIME
8KB End Test 6 556 PARALLEL_SERVER_INSTANCES
8KB End Test 6 859 _PARALLEL_SERVER_SLEEP_TIME
8KB End Test 6 991 _PARALLEL_SLAVE_ACQUISITION_WAIT
8KB End Test 6 986 PARALLEL_THREADS_PER_CPU
8KB End Test 6 1059 _PARALLEL_TXN_GLOBAL
8KB End Test 6 131 _PARAMETER_TABLE_BLOCK_SIZE
8KB End Test 6 1036 _PARTIAL_PWISE_JOIN_ENABLED
8KB End Test 6 939 _PARTITION_VIEW_ENABLED
8KB End Test 6 787 _PASSWORDFILE_ENQUEUE_TIMEOUT
8KB End Test 6 1101 _PCT_REFRESH_DOUBLE_COUNT_PREVENTED
8KB End Test 6 993 _PDML_GIM_SAMPLING
8KB End Test 6 994 _PDML_GIM_STAGGERED
8KB End Test 6 992 _PDML_SLAVES_DIFF_PART
8KB End Test 6 678 _PERCENT_FLASHBACK_BUF_PARTIAL_FULL
8KB End Test 6 1078 PGA_AGGREGATE_TARGET
8KB End Test 6 92 _PGA_LARGE_EXTENT_SIZE
8KB End Test 6 1079 _PGA_MAX_SIZE
8KB End Test 6 589 _PING_LEVEL
8KB End Test 6 45 _PKT_ENABLE
8KB End Test 6 47 _PKT_PMON_INTERVAL
8KB End Test 6 46 _PKT_START
8KB End Test 6 1213 _PLAN_OUTLINE_DATA
8KB End Test 6 834 _PLSQL_ANON_BLOCK_CODE_TYPE
8KB End Test 6 1209 _PLSQL_CACHE_ENABLE
8KB End Test 6 837 PLSQL_CCFLAGS
8KB End Test 6 833 PLSQL_CODE_TYPE
8KB End Test 6 829 PLSQL_COMPILER_FLAGS
8KB End Test 6 835 PLSQL_DEBUG
8KB End Test 6 827 _PLSQL_DUMP_BUFFER_EVENTS
8KB End Test 6 1212 _PLSQL_MINIMUM_CACHE_HIT_PERCENT
8KB End Test 6 830 PLSQL_NATIVE_LIBRARY_DIR
8KB End Test 6 831 PLSQL_NATIVE_LIBRARY_SUBDIR_COUNT
8KB End Test 6 838 _PLSQL_NVL_OPTIMIZE
8KB End Test 6 836 PLSQL_OPTIMIZE_LEVEL
8KB End Test 6 828 PLSQL_V2_COMPATIBILITY
8KB End Test 6 832 PLSQL_WARNINGS
8KB End Test 6 813 _PMON_LOAD_CONSTANTS
8KB End Test 6 1104 _PRECOMPUTE_GID_VALUES
8KB End Test 6 998 _PREDICATE_ELIMINATION_ENABLED
8KB End Test 6 955 _PRED_MOVE_AROUND
8KB End Test 6 688 _PRESCOMM
8KB End Test 6 70 PRE_PAGE_SGA
8KB End Test 6 1098 _PRE_REWRITE_PUSH_PRED
8KB End Test 6 1153 _PRINT_REFRESH_SCHEDULE
8KB End Test 6 96 _PRIVATE_MEMORY_ADDRESS
8KB End Test 6 26 PROCESSES
8KB End Test 6 1148 _PROJECTION_PUSHDOWN
8KB End Test 6 1149 _PROJECTION_PUSHDOWN_DEBUG
8KB End Test 6 1007 _PROJECT_VIEW_COLUMNS
8KB End Test 6 964 _PUSH_JOIN_PREDICATE
8KB End Test 6 965 _PUSH_JOIN_UNION_VIEW
8KB End Test 6 966 _PUSH_JOIN_UNION_VIEW2
8KB End Test 6 979 _PX_ASYNC_GETGRANULE
8KB End Test 6 974 _PX_BROADCAST_FUDGE_FACTOR
8KB End Test 6 869 _PX_BUFFER_TTL
8KB End Test 6 1150 _PX_COMPILATION_DEBUG
8KB End Test 6 1151 _PX_COMPILATION_TRACE
8KB End Test 6 995 _PX_DYNAMIC_OPT
8KB End Test 6 996 _PX_DYNAMIC_SAMPLE_SIZE
8KB End Test 6 976 _PX_GRANULE_SIZE
8KB End Test 6 1044 _PX_INDEX_SAMPLING
8KB End Test 6 975 _PX_KXIB_TRACING
8KB End Test 6 864 _PX_LOAD_PUBLISH_INTERVAL
8KB End Test 6 1192 _PX_LOC_MSG_COST
8KB End Test 6 981 _PX_MAX_GRANULES_PER_SLAVE
8KB End Test 6 957 _PX_MINUS_INTERSECT
8KB End Test 6 980 _PX_MIN_GRANULES_PER_SLAVE
8KB End Test 6 1191 _PX_NET_MSG_COST
8KB End Test 6 983 _PX_NO_GRANULE_SORT
8KB End Test 6 982 _PX_NO_STEALING
8KB End Test 6 1197 _PX_NSS_PLANB
8KB End Test 6 984 _PX_PROC_CONSTRAIN
8KB End Test 6 1225 _PX_PWG_ENABLED
8KB End Test 6 997 _PX_ROWNUM_PD
8KB End Test 6 860 _PX_SEND_TIMEOUT
8KB End Test 6 1131 _PX_SLAVES_SHARE_CURSORS
8KB End Test 6 851 _PX_TRACE
8KB End Test 6 867 _PX_USE_LARGE_POOL
8KB End Test 6 977 _PX_XTGRANULE_SIZE
8KB End Test 6 1175 _QA_CONTROL
8KB End Test 6 1176 _QA_LRG_TYPE
8KB End Test 6 1022 _QUERY_COST_REWRITE
8KB End Test 6 883 _QUERY_EXECUTION_CACHE_MAX_SIZE
8KB End Test 6 1024 _QUERY_REWRITE_1
8KB End Test 6 1023 _QUERY_REWRITE_2
8KB End Test 6 1029 _QUERY_REWRITE_DRJ
8KB End Test 6 1020 QUERY_REWRITE_ENABLED
8KB End Test 6 1026 _QUERY_REWRITE_EXPRESSION
8KB End Test 6 1028 _QUERY_REWRITE_FPC
8KB End Test 6 1025 _QUERY_REWRITE_FUDGE
8KB End Test 6 1021 QUERY_REWRITE_INTEGRITY
8KB End Test 6 1027 _QUERY_REWRITE_JGMIGRATE
8KB End Test 6 1030 _QUERY_REWRITE_MAXDISJUNCT
8KB End Test 6 933 _QUERY_REWRITE_OR_ERROR
8KB End Test 6 1187 _QUERY_REWRITE_SETOPGRW_ENABLE
8KB End Test 6 1031 _QUERY_REWRITE_VOP_CLEANUP
8KB End Test 6 289 _RCFG_PARALLEL_FIXWRITE
8KB End Test 6 287 _RCFG_PARALLEL_REPLAY
8KB End Test 6 291 _RCFG_PARALLEL_VERIFY
8KB End Test 6 782 RDBMS_SERVER_DN
8KB End Test 6 553 READ_ONLY_OPEN_DELAYED
8KB End Test 6 88 _REALFREE_HEAP_MAX_SIZE
8KB End Test 6 90 _REALFREE_HEAP_MODE
8KB End Test 6 89 _REALFREE_HEAP_PAGESIZE_HINT
8KB End Test 6 476 _REAL_TIME_APPLY_ARCH_DELAY
8KB End Test 6 477 _REAL_TIME_APPLY_SIM
8KB End Test 6 642 _RECOVERABLE_RECOVERY_BATCH_PERCENT
8KB End Test 6 577 _RECOVERY_ASSERTS
8KB End Test 6 623 RECOVERY_PARALLELISM
8KB End Test 6 376 _RECOVERY_PERCENTAGE
8KB End Test 6 467 _RECOVERY_VERIFY_WRITES
8KB End Test 6 689 _RECURSIVE_IMU_TRANSACTIONS
8KB End Test 6 744 RECYCLEBIN
8KB End Test 6 462 _REDO_COMPATIBILITY_CHECK
8KB End Test 6 746 _RELEASE_INSERT_THRESHOLD
8KB End Test 6 310 _RELIABLE_BLOCK_SENDS
8KB End Test 6 472 REMOTE_ARCHIVE_ENABLE
8KB End Test 6 824 REMOTE_DEPENDENCIES_MODE
8KB End Test 6 812 REMOTE_LISTENER
8KB End Test 6 788 REMOTE_LOGIN_PASSWORDFILE
8KB End Test 6 784 REMOTE_OS_AUTHENT
8KB End Test 6 785 REMOTE_OS_ROLES
8KB End Test 6 958 _REMOVE_AGGR_SUBQUERY
8KB End Test 6 685 REPLICATION_DEPENDENCY_TRACKING
8KB End Test 6 30 RESOURCE_LIMIT
8KB End Test 6 195 _RESOURCE_MANAGER_ALWAYS_ON
8KB End Test 6 193 RESOURCE_MANAGER_PLAN
8KB End Test 6 634 _RESTORE_SPFILE
8KB End Test 6 737 RESUMABLE_TIMEOUT
8KB End Test 6 750 _REUSE_INDEX_LOOP
8KB End Test 6 1142 _RIGHT_OUTER_HASH_ENABLE
8KB End Test 6 636 _RMAN_IO_PRIORITY
8KB End Test 6 709 ROLLBACK_SEGMENTS
8KB End Test 6 711 _ROLLBACK_SEGMENT_COUNT
8KB End Test 6 710 _ROLLBACK_SEGMENT_INITIAL
8KB End Test 6 732 _ROLLBACK_STOPAT
8KB End Test 6 1108 _ROWSOURCE_EXECUTION_STATISTICS
8KB End Test 6 1109 _ROWSOURCE_STATISTICS_SAMPFREQ
8KB End Test 6 1235 _ROWSRC_TRACE_LEVEL
8KB End Test 6 755 _ROW_CACHE_CURSORS
8KB End Test 6 729 _ROW_CR
8KB End Test 6 683 _ROW_LOCKING
8KB End Test 6 1016 _SAMPLE_ROWS_PER_BLOCK
8KB End Test 6 197 _SECOND_SPARE_PARAMETER
8KB End Test 6 1245 _SELFJOIN_MV_DUPLICATES
8KB End Test 6 613 _SELFTUNE_CHECKPOINTING_LAG
8KB End Test 6 404 _SELFTUNE_CHECKPOINT_WRITE_PCT
8KB End Test 6 309 _SEND_AST_TO_FOREGROUND
8KB End Test 6 312 _SEND_CLOSE_WITH_BLOCK
8KB End Test 6 594 _SEND_REQUESTS_TO_PI
8KB End Test 6 684 _SERIALIZABLE
8KB End Test 6 1013 _SERIAL_DIRECT_READ
8KB End Test 6 624 _SERIAL_RECOVERY
8KB End Test 6 773 SERIAL_REUSE
8KB End Test 6 803 SERVICE_NAMES
8KB End Test 6 27 SESSIONS
8KB End Test 6 821 SESSION_CACHED_CURSORS
8KB End Test 6 850 _SESSION_CACHED_INSTANTIATIONS
8KB End Test 6 792 _SESSION_CONTEXT_SIZE
8KB End Test 6 33 _SESSION_IDLE_BIT_LATCHES
8KB End Test 6 44 _SESSION_IDLE_CHECK_INTERVAL
8KB End Test 6 822 _SESSION_KEPT_CURSOR_PINS
8KB End Test 6 902 SESSION_MAX_OPEN_FILES
8KB End Test 6 43 _SESSION_WAIT_HISTORY
8KB End Test 6 202 _SEVENTH_SPARE_PARAMETER
8KB End Test 6 66 SGA_MAX_SIZE
8KB End Test 6 333 SGA_TARGET
8KB End Test 6 890 SHADOW_CORE_DUMP
8KB End Test 6 71 SHARED_MEMORY_ADDRESS
8KB End Test 6 334 _SHARED_POOL_MAX_SIZE
8KB End Test 6 335 _SHARED_POOL_MINSIZE_ON
8KB End Test 6 118 _SHARED_POOL_RESERVED_MIN_ALLOC
8KB End Test 6 117 _SHARED_POOL_RESERVED_PCT
8KB End Test 6 116 SHARED_POOL_RESERVED_SIZE
8KB End Test 6 107 __SHARED_POOL_SIZE
8KB End Test 6 108 SHARED_POOL_SIZE
8KB End Test 6 806 SHARED_SERVERS
8KB End Test 6 810 SHARED_SERVER_SESSIONS
8KB End Test 6 50 _SHORT_STACK_TIMEOUT_MS
8KB End Test 6 921 _SHRUNK_AGGS_DISABLE_THRESHOLD
8KB End Test 6 920 _SHRUNK_AGGS_ENABLED
8KB End Test 6 321 _SIDE_CHANNEL_BATCH_SIZE
8KB End Test 6 322 _SIDE_CHANNEL_BATCH_TIMEOUT
8KB End Test 6 952 _SIMPLE_VIEW_MERGING
8KB End Test 6 82 _SIMULATOR_BUCKET_MINDELTA
8KB End Test 6 84 _SIMULATOR_INTERNAL_BOUND
8KB End Test 6 81 _SIMULATOR_LRU_REBALANCE_SIZTHR
8KB End Test 6 80 _SIMULATOR_LRU_REBALANCE_THRESH
8KB End Test 6 83 _SIMULATOR_LRU_SCAN_COUNT
8KB End Test 6 79 _SIMULATOR_PIN_INVAL_MAXCNT
8KB End Test 6 86 _SIMULATOR_RESERVED_HEAP_COUNT
8KB End Test 6 85 _SIMULATOR_RESERVED_OBJ_COUNT
8KB End Test 6 87 _SIMULATOR_SAMPLING_FACTOR
8KB End Test 6 78 _SIMULATOR_UPPER_BOUND_MULTIPLE
8KB End Test 6 51 _SINGLE_PROCESS
8KB End Test 6 201 _SIXTH_SPARE_PARAMETER
8KB End Test 6 206 _SKGXP_REAPING
8KB End Test 6 208 _SKGXP_UDP_ACH_REAPING_TIME
8KB End Test 6 207 _SKGXP_UDP_HIWAT_WARN
8KB End Test 6 215 _SKGXP_UDP_INTERFACE_DETECTION_TIME_SECS
8KB End Test 6 211 _SKGXP_UDP_KEEP_ALIVE_PING_TIMER_SECS
8KB End Test 6 210 _SKGXP_UDP_TIMED_WAIT_BUFFERING
8KB End Test 6 209 _SKGXP_UDP_TIMED_WAIT_SECONDS
8KB End Test 6 316 _SKIP_ASSUME_MSG
8KB End Test 6 1157 SKIP_UNUSABLE_INDEXES
8KB End Test 6 1037 _SLAVE_MAPPING_ENABLED
8KB End Test 6 1038 _SLAVE_MAPPING_GROUP_SIZE
8KB End Test 6 373 _SMALL_TABLE_THRESHOLD
8KB End Test 6 1092 _SMM_ADVICE_ENABLED
8KB End Test 6 1091 _SMM_ADVICE_LOG_SIZE
8KB End Test 6 1083 _SMM_AUTO_COST_ENABLED
8KB End Test 6 1082 _SMM_AUTO_MAX_IO_SIZE
8KB End Test 6 1081 _SMM_AUTO_MIN_IO_SIZE
8KB End Test 6 1090 _SMM_BOUND
8KB End Test 6 1084 _SMM_CONTROL
8KB End Test 6 1193 _SMM_FREEABLE_RETAIN
8KB End Test 6 1228 _SMM_ISORT_CAP
8KB End Test 6 1087 _SMM_MAX_SIZE
8KB End Test 6 1086 _SMM_MIN_SIZE
8KB End Test 6 1088 _SMM_PX_MAX_SIZE
8KB End Test 6 1089 _SMM_RETAIN_SIZE
8KB End Test 6 1085 _SMM_TRACE
8KB End Test 6 733 _SMON_INTERNAL_ERRLIMIT
8KB End Test 6 826 SMTP_OUT_SERVER
8KB End Test 6 723 _SMU_DEBUG_MODE
8KB End Test 6 719 _SMU_ERROR_SIMULATION_SITE
8KB End Test 6 720 _SMU_ERROR_SIMULATION_TYPE
8KB End Test 6 722 _SMU_TIMEOUTS
8KB End Test 6 918 SORT_AREA_RETAINED_SIZE
8KB End Test 6 917 SORT_AREA_SIZE
8KB End Test 6 934 _SORT_ELIMINATION_COST_RATIO
8KB End Test 6 919 _SORT_MULTIBLOCK_READ_COUNT
8KB End Test 6 128 SPFILE
8KB End Test 6 7 _SPIN_COUNT
8KB End Test 6 1167 _SPR_MAX_RULES
8KB End Test 6 1165 _SPR_PUSH_PRED_REFSPR
8KB End Test 6 1127 _SPR_USE_AW_AS
8KB End Test 6 1126 _SPR_USE_HASH_TABLE
8KB End Test 6 935 SQL92_SECURITY
8KB End Test 6 1048 _SQLEXEC_PROGRESSION_COST
8KB End Test 6 1397 SQLTUNE_CATEGORY
8KB End Test 6 1398 _SQLTUNE_CATEGORY_PARSED
8KB End Test 6 936 _SQL_CONNECT_CAPABILITY_OVERRIDE
8KB End Test 6 929 _SQL_CONNECT_CAPABILITY_TABLE
8KB End Test 6 1226 _SQL_HASH_DEBUG
8KB End Test 6 1207 _SQL_MODEL_UNFOLD_FORLOOPS
8KB End Test 6 927 SQL_TRACE
8KB End Test 6 1052 SQL_VERSION
8KB End Test 6 134 _STACK_GUARD_LEVEL
8KB End Test 6 507 STANDBY_ARCHIVE_DEST
8KB End Test 6 567 STANDBY_FILE_MANAGEMENT
8KB End Test 6 942 STAR_TRANSFORMATION_ENABLED
8KB End Test 6 54 _STATIC_BACKGROUNDS
8KB End Test 6 1121 STATISTICS_LEVEL
8KB End Test 6 1162 _STA_CONTROL
8KB End Test 6 1161 _STN_TRACE
8KB End Test 6 336 _STREAMS_POOL_MAX_SIZE
8KB End Test 6 114 STREAMS_POOL_SIZE
8KB End Test 6 113 __STREAMS_POOL_SIZE
8KB End Test 6 1055 _SUBQUERY_PRUNING_COST_FACTOR
8KB End Test 6 1057 _SUBQUERY_PRUNING_ENABLED
8KB End Test 6 1058 _SUBQUERY_PRUNING_MV_ENABLED
8KB End Test 6 1056 _SUBQUERY_PRUNING_REDUCTION
8KB End Test 6 1387 _SWRF_METRIC_FREQUENT_MODE
8KB End Test 6 1392 _SWRF_MMON_DBFUS
8KB End Test 6 1383 _SWRF_MMON_FLUSH
8KB End Test 6 1386 _SWRF_MMON_METRICS
8KB End Test 6 1391 _SWRF_ON_DISK_ENABLED
8KB End Test 6 1381 _SWRF_TEST_ACTION
8KB End Test 6 1394 _SWRF_TEST_DBFUS
8KB End Test 6 771 _SYNONYM_REPOINT_TRACING
8KB End Test 6 1382 _SYSAUX_TEST_PARAM
8KB End Test 6 1012 _SYSTEM_INDEX_CACHING
8KB End Test 6 843 _SYSTEM_TRIG_ENABLED
8KB End Test 6 879 _TABLE_LOOKUP_PREFETCH_SIZE
8KB End Test 6 881 _TABLE_LOOKUP_PREFETCH_THRESH
8KB End Test 6 1062 _TABLE_SCAN_COST_PLUS_ONE
8KB End Test 6 183 TAPE_ASYNCH_IO
8KB End Test 6 614 _TARGET_RBA_MAX_LAG_PERCENTAGE
8KB End Test 6 515 _TA_LNS_WAIT_FOR_ARCH_LOG
8KB End Test 6 680 _TDB_DEBUG_MODE
8KB End Test 6 1001 _TEMP_TRAN_BLOCK_THRESHOLD
8KB End Test 6 1002 _TEMP_TRAN_CACHE
8KB End Test 6 39 _TEST_KSUSIGSKIP
8KB End Test 6 122 _TEST_PARAM_1
8KB End Test 6 123 _TEST_PARAM_2
8KB End Test 6 124 _TEST_PARAM_3
8KB End Test 6 125 _TEST_PARAM_4
8KB End Test 6 126 _TEST_PARAM_5
8KB End Test 6 127 _TEST_PARAM_6
8KB End Test 6 198 _THIRD_SPARE_PARAMETER
8KB End Test 6 609 THREAD
8KB End Test 6 1407 _THRESHOLD_ALERTS_ENABLE
8KB End Test 6 29 TIMED_OS_STATISTICS
8KB End Test 6 28 TIMED_STATISTICS
8KB End Test 6 94 _TOTAL_LARGE_EXTENT_MEMORY
8KB End Test 6 870 _TQ_DUMP_PERIOD
8KB End Test 6 2 TRACEFILE_IDENTIFIER
8KB End Test 6 145 _TRACE_ARCHIVE
8KB End Test 6 147 _TRACE_BUFFERS
8KB End Test 6 427 _TRACE_BUFFER_FLUSHES
8KB End Test 6 431 _TRACE_BUFFER_GETS
8KB End Test 6 440 _TRACE_BUFFER_WAIT_TIMEOUTS
8KB End Test 6 151 _TRACE_BUFFER_WRAP_TIMESTAMP
8KB End Test 6 429 _TRACE_CR_BUFFER_CREATES
8KB End Test 6 143 TRACE_ENABLED
8KB End Test 6 146 _TRACE_EVENTS
8KB End Test 6 1 _TRACE_FILES_PUBLIC
8KB End Test 6 149 _TRACE_FILE_SIZE
8KB End Test 6 148 _TRACE_FLUSH_PROCESSES
8KB End Test 6 428 _TRACE_MULTI_BLOCK_READS
8KB End Test 6 233 _TRACE_NAVIGATION_SCOPE
8KB End Test 6 150 _TRACE_OPTIONS
8KB End Test 6 433 _TRACE_PIN_TIME
8KB End Test 6 144 _TRACE_PROCESSES
8KB End Test 6 706 TRANSACTIONS
8KB End Test 6 707 TRANSACTIONS_PER_ROLLBACK_SEGMENT
8KB End Test 6 714 _TRANSACTION_AUDITING
8KB End Test 6 734 _TRANSACTION_RECOVERY_SERVERS
8KB End Test 6 1231 _TRUNCATE_OPTIMIZATION_ENABLED
8KB End Test 6 1252 _TSM_CONNECT_STRING
8KB End Test 6 1253 _TSM_DISABLE_AUTO_CLEANUP
8KB End Test 6 638 _TTS_ALLOW_CHARSET_MISMATCH
8KB End Test 6 466 _TWO_PASS
8KB End Test 6 1123 _TWO_PASS_REVERSE_POLISH_ENABLED
8KB End Test 6 93 _UGA_CGA_LARGE_EXTENT_SIZE
8KB End Test 6 23 _ULTRAFAST_LATCH_STATISTICS
8KB End Test 6 730 _UNDO_AUTOTUNE
8KB End Test 6 724 _UNDO_DEBUG_MODE
8KB End Test 6 739 _UNDO_DEBUG_USAGE
8KB End Test 6 717 UNDO_MANAGEMENT
8KB End Test 6 731 UNDO_RETENTION
8KB End Test 6 718 UNDO_TABLESPACE
8KB End Test 6 1105 _UNION_REWRITE_FOR_GS
8KB End Test 6 953 _UNNEST_SUBQUERY
8KB End Test 6 633 _UNUSED_BLOCK_COMPRESSION
8KB End Test 6 893 USER_DUMP_DEST
8KB End Test 6 1054 _USE_COLUMN_STATS_FOR_FUNCTION
8KB End Test 6 73 USE_INDIRECT_DATA_BUFFERS
8KB End Test 6 74 _USE_ISM
8KB End Test 6 95 _USE_ISM_FOR_PGA
8KB End Test 6 1046 _USE_NOSEGMENT_INDEXES
8KB End Test 6 91 _USE_REALFREE_HEAP
8KB End Test 6 749 _USE_SEQ_PROCESS_CACHE
8KB End Test 6 13 _USE_VECTOR_POST
8KB End Test 6 825 UTL_FILE_DIR
8KB End Test 6 661 _VALIDATE_FLASHBACK_DATABASE
8KB End Test 6 897 _VENDOR_LIB_LOC
8KB End Test 6 663 _VERIFY_FLASHBACK_REDO
8KB End Test 6 725 _VERIFY_UNDO_QUOTA
8KB End Test 6 1216 _VERY_LARGE_PARTITIONED_TABLE
8KB End Test 6 423 _WAIT_FOR_SYNC
8KB End Test 6 747 _WALK_INSERT_THRESHOLD
8KB End Test 6 60 _WATCHPOINT_ON
8KB End Test 6 1230 _WINDOWFUNC_OPTIMIZATION_SETTINGS
8KB End Test 6 1080 WORKAREA_SIZE_POLICY
8KB End Test 6 430 _WRITE_CLONES
8KB End Test 6 1234 _XPL_PEEKED_BINDS_LOG_SIZE
8KB End Test 6 1218 _XPL_TRACE
8KB End Test 6 1336 _XSOLAPI_AUTO_MATERIALIZATION_BOUND
8KB End Test 6 1335 _XSOLAPI_AUTO_MATERIALIZATION_TYPE
8KB End Test 6 1332 _XSOLAPI_DEBUG_OUTPUT
8KB End Test 6 1325 _XSOLAPI_DENSIFY_CUBES
8KB End Test 6 1315 _XSOLAPI_DIMENSION_GROUP_CREATION
8KB End Test 6 1314 _XSOLAPI_FETCH_TYPE
8KB End Test 6 1352 _XSOLAPI_GENERATE_WITH_CLAUSE
8KB End Test 6 1345 _XSOLAPI_HIERARCHY_VALUE_TYPE
8KB End Test 6 1334 _XSOLAPI_LOAD_AT_PROCESS_START
8KB End Test 6 1337 _XSOLAPI_MATERIALIZATION_ROWCACHE_MIN_ROWS_FOR_USE
8KB End Test 6 1333 _XSOLAPI_MATERIALIZE_SOURCES
8KB End Test 6 1339 _XSOLAPI_METADATA_READER_MODE
8KB End Test 6 1340 _XSOLAPI_ODBO_MODE
8KB End Test 6 1351 _XSOLAPI_OPTIMIZE_SUPPRESSION
8KB End Test 6 1350 _XSOLAPI_PRECOMPUTE_SUBQUERY
8KB End Test 6 1349 _XSOLAPI_REMOVE_COLUMNS_FOR_MATERIALIZATION
8KB End Test 6 1341 _XSOLAPI_SET_NLS
8KB End Test 6 1338 _XSOLAPI_SOURCE_TRACE
8KB End Test 6 1324 _XSOLAPI_SQL_ALL_MULTI_JOIN_NON_BASE_HINTS
8KB End Test 6 1323 _XSOLAPI_SQL_ALL_NON_BASE_HINTS
8KB End Test 6 1317 _XSOLAPI_SQL_AUTO_DIMENSION_HINTS
8KB End Test 6 1316 _XSOLAPI_SQL_AUTO_MEASURE_HINTS
8KB End Test 6 1320 _XSOLAPI_SQL_DIMENSION_HINTS
8KB End Test 6 1353 _XSOLAPI_SQL_ENABLE_AW_JOIN
8KB End Test 6 1354 _XSOLAPI_SQL_ENABLE_AW_QDR_MERGE
8KB End Test 6 1318 _XSOLAPI_SQL_HINTS
8KB End Test 6 1319 _XSOLAPI_SQL_MEASURE_HINTS
8KB End Test 6 1326 _XSOLAPI_SQL_OPTIMIZE
8KB End Test 6 1330 _XSOLAPI_SQL_PREPARE_STMT_CACHE_SIZE
8KB End Test 6 1327 _XSOLAPI_SQL_REMOVE_COLUMNS
8KB End Test 6 1331 _XSOLAPI_SQL_RESULT_SET_CACHE_SIZE
8KB End Test 6 1328 _XSOLAPI_SQL_SYMMETRIC_PREDICATE
8KB End Test 6 1322 _XSOLAPI_SQL_TOP_DIMENSION_HINTS
8KB End Test 6 1321 _XSOLAPI_SQL_TOP_MEASURE_HINTS
8KB End Test 6 1329 _XSOLAPI_SQL_USE_BIND_VARIABLES
8KB End Test 6 1342 _XSOLAPI_STRINGIFY_ORDER_LEVELS
8KB End Test 6 1344 _XSOLAPI_SUPPRESSION_AW_MASK_THRESHOLD
8KB End Test 6 1343 _XSOLAPI_SUPPRESSION_CHUNK_SIZE
8KB End Test 6 1346 _XSOLAPI_USE_MODELS
8KB End Test 6 1347 _XSOLAPI_USE_OLAP_DML
8KB End Test 6 1348 _XSOLAPI_USE_OLAP_DML_FOR_RANK
8KB End Test 6 978 _XTBUFFER_SIZE
8KB End Test 6 639 _XTTS_ALLOW_PRE10
8KB End Test 6 640 _XTTS_SET_PLATFORM_INFO
8KB End Test 6 853 _XT_COVERAGE
8KB End Test 6 852 _XT_TRACE
8KB End Test 6 194 _YIELD_CHECK_INTERVAL

16KB End Test 3 101 _4031_DUMP_BITVEC


16KB End Test 3 103 _4031_DUMP_INTERVAL
16KB End Test 3 102 _4031_MAX_DUMPS
16KB End Test 3 104 _4031_SGA_DUMP_INTERVAL
16KB End Test 3 105 _4031_SGA_MAX_DUMPS
16KB End Test 3 308 _ABORT_RECOVERY_ON_JOIN
16KB End Test 3 226 _ACCEPT_VERSIONS
16KB End Test 3 247 ACTIVE_INSTANCE_COUNT
16KB End Test 3 248 _ACTIVE_STANDBY_FAST_RECONFIGURATION
16KB End Test 3 607 _ADAPTIVE_DIRECT_READ
16KB End Test 3 882 _ADAPTIVE_FETCH_ENABLED
16KB End Test 3 1408 _ADDM_AUTO_ENABLE
16KB End Test 3 1410 _ADDM_SKIPRULES
16KB End Test 3 1409 _ADDM_VERSION_CHECK
16KB End Test 3 1034 _ADD_STALE_MV_TO_DEPENDENCY_LIST
16KB End Test 3 848 _ADJUST_LITERAL_REPLACEMENT
16KB End Test 3 871 _AFFINITY_ON
16KB End Test 3 177 _AIOWAIT_TIMEOUTS
16KB End Test 3 1377 _ALERT_EXPIRATION
16KB End Test 3 1378 _ALERT_MESSAGE_CLEANUP
16KB End Test 3 1379 _ALERT_MESSAGE_PURGE
16KB End Test 3 1380 _ALERT_POST_BACKGROUND
16KB End Test 3 692 _ALLOCATE_CREATION_ORDER
16KB End Test 3 701 _ALLOCATION_UPDATE_INTERVAL
16KB End Test 3 1173 _ALLOW_COMMUTATIVITY
16KB End Test 3 569 _ALLOW_ERROR_SIMULATION
16KB End Test 3 1182 _ALLOW_LEVEL_WITHOUT_CONNECT_BY
16KB End Test 3 621 _ALLOW_READ_ONLY_CORRUPTION
16KB End Test 3 619 _ALLOW_RESETLOGS_CORRUPTION
16KB End Test 3 620 _ALLOW_TERMINAL_RECOVERY_CORRUPTION
16KB End Test 3 909 _ALL_SHARED_DBLINKS
16KB End Test 3 745 _ALTERNATE_IOT_LEAF_BLOCK_SPLIT_POINTS
16KB End Test 3 938 _ALWAYS_ANTI_JOIN
16KB End Test 3 1004 _ALWAYS_SEMI_JOIN
16KB End Test 3 940 _ALWAYS_STAR_TRANSFORMATION
16KB End Test 3 791 _APP_CTX_VERS
16KB End Test 3 1255 AQ_TM_PROCESSES
16KB End Test 3 1256 _AQ_TM_SCANLIMIT
16KB End Test 3 534 ARCHIVE_LAG_TARGET
16KB End Test 3 187 _ARCH_IO_SLAVES
16KB End Test 3 1122 _ARRAY_UPDATE_VECTOR_READ_ENABLED
16KB End Test 3 1403 _ASH_DISK_FILTER_RATIO
16KB End Test 3 1402 _ASH_DISK_WRITE_ENABLE
16KB End Test 3 1406 _ASH_DUMMY_TEST_PARAM
16KB End Test 3 1404 _ASH_EFLUSH_TRIGGER
16KB End Test 3 1401 _ASH_ENABLE
16KB End Test 3 1405 _ASH_SAMPLE_ALL
16KB End Test 3 1399 _ASH_SAMPLING_INTERVAL
16KB End Test 3 1400 _ASH_SIZE
16KB End Test 3 1367 _ASMLIB_TEST
16KB End Test 3 1369 _ASMSID
16KB End Test 3 1363 _ASM_ACD_CHUNKS
16KB End Test 3 1366 _ASM_ALLOW_ONLY_RAW_DISKS
16KB End Test 3 1368 _ASM_ALLOW_RESILVER_CORRUPTION
16KB End Test 3 1361 _ASM_AUSIZE
16KB End Test 3 1362 _ASM_BLKSIZE
16KB End Test 3 1359 ASM_DISKGROUPS
16KB End Test 3 1355 ASM_DISKSTRING
16KB End Test 3 1356 _ASM_DISK_REPAIR_TIME
16KB End Test 3 1373 _ASM_DROPTIMEOUT
16KB End Test 3 1374 _ASM_EMULMAX
16KB End Test 3 1375 _ASM_EMULTIMEOUT
16KB End Test 3 1376 _ASM_KFDPEVENT
16KB End Test 3 1364 _ASM_LIBRARIES
16KB End Test 3 1365 _ASM_MAXIO
16KB End Test 3 1360 ASM_POWER_LIMIT
16KB End Test 3 1372 _ASM_STRIPESIZE
16KB End Test 3 1371 _ASM_STRIPEWIDTH
16KB End Test 3 1370 _ASM_WAIT_TIME
16KB End Test 3 695 _ASSM_DEFAULT
16KB End Test 3 591 _ASYNC_RECOVERY_CLAIMS
16KB End Test 3 590 _ASYNC_RECOVERY_READS
16KB End Test 3 889 AUDIT_FILE_DEST
16KB End Test 3 793 AUDIT_SYS_OPERATIONS
16KB End Test 3 916 AUDIT_TRAIL
16KB End Test 3 592 _AVOID_PREPARE
16KB End Test 3 1384 _AWR_CORRUPT_MODE
16KB End Test 3 1390 _AWR_DISABLED_FLUSH_TABLES
16KB End Test 3 1388 _AWR_FLUSH_THRESHOLD_METRICS
16KB End Test 3 1389 _AWR_FLUSH_WORKLOAD_METRICS
16KB End Test 3 1393 _AWR_MMON_CPUUSAGE
16KB End Test 3 1385 _AWR_RESTRICT_MODE
16KB End Test 3 1396 _AWR_SQL_CHILD_LIMIT
16KB End Test 3 891 BACKGROUND_CORE_DUMP
16KB End Test 3 892 BACKGROUND_DUMP_DEST
16KB End Test 3 188 _BACKUP_DISK_IO_SLAVES
16KB End Test 3 190 _BACKUP_IO_POOL_SIZE
16KB End Test 3 627 _BACKUP_KGC_BUFSZ
16KB End Test 3 629 _BACKUP_KGC_NITERS
16KB End Test 3 628 _BACKUP_KGC_TYPE
16KB End Test 3 631 _BACKUP_KSFQ_BUFCNT
16KB End Test 3 630 _BACKUP_KSFQ_BUFSZ
16KB End Test 3 632 _BACKUP_MAX_GAP_SIZE
16KB End Test 3 189 BACKUP_TAPE_IO_SLAVES
16KB End Test 3 649 _BCT_BITMAPS_PER_FILE
16KB End Test 3 655 _BCT_BUFFER_ALLOCATION_MAX
16KB End Test 3 656 _BCT_BUFFER_ALLOCATION_MIN_EXTENTS
16KB End Test 3 654 _BCT_BUFFER_ALLOCATION_SIZE
16KB End Test 3 652 _BCT_CHUNK_SIZE
16KB End Test 3 653 _BCT_CRASH_RESERVE_SIZE
16KB End Test 3 650 _BCT_FILE_BLOCK_SIZE
16KB End Test 3 651 _BCT_FILE_EXTENT_SIZE
16KB End Test 3 657 _BCT_FIXTAB_FILE
16KB End Test 3 648 _BCT_INITIAL_PRIVATE_DBA_BUFFER_SIZE
16KB End Test 3 647 _BCT_PUBLIC_DBA_BUFFER_SIZE
16KB End Test 3 845 BITMAP_MERGE_AREA_SIZE
16KB End Test 3 1110 _BITMAP_OR_IMPROVEMENT_ENABLED
16KB End Test 3 937 BLANK_TRIMMING
16KB End Test 3 311 _BLOCKS_PER_CACHE_SERVER
16KB End Test 3 658 _BLOCK_CHANGE_TRACKING
16KB End Test 3 1199 _BLOOM_FILTER_DEBUG
16KB End Test 3 1198 _BLOOM_FILTER_ENABLED
16KB End Test 3 1033 _BT_MMV_QUERY_REWRITE_ENABLED
16KB End Test 3 441 _BUFFER_BUSY_WAIT_TIMEOUT
16KB End Test 3 409 BUFFER_POOL_KEEP
16KB End Test 3 410 BUFFER_POOL_RECYCLE
16KB End Test 3 1258 _BUFQ_FLOW_CONTROL_THRSH
16KB End Test 3 1259 _BUFQ_MAX_MSG_SZ
16KB End Test 3 1257 _BUFQ_STOP_FLOW_CONTROL
16KB End Test 3 1249 _BUILD_DEFERRED_MV_SKIPPING_MVLOG_UPDATE
16KB End Test 3 694 _BUMP_HIGHWATER_MARK_COUNT
16KB End Test 3 593 _BWR_FOR_FLUSHED_PI
16KB End Test 3 941 _B_TREE_BITMAP_PLANS
16KB End Test 3 1160 _CACHE_STATS_MONITOR
16KB End Test 3 330 _CGS_RECONFIG_TIMEOUT
16KB End Test 3 324 _CGS_SEND_TIMEOUT
16KB End Test 3 432 _CHECK_BLOCK_AFTER_CHECKSUM
16KB End Test 3 705 _CHECK_TS_THRESHOLD
16KB End Test 3 809 CIRCUITS
16KB End Test 3 716 _CLEANUP_ROLLBACK_ENTRIES
16KB End Test 3 910 _CLOSE_CACHED_OPEN_CURSORS
16KB End Test 3 554 CLUSTER_DATABASE
16KB End Test 3 557 CLUSTER_DATABASE_INSTANCES
16KB End Test 3 203 CLUSTER_INTERCONNECTS
16KB End Test 3 329 _CLUSTER_LIBRARY
16KB End Test 3 49 _COLLAPSE_WAIT_HISTORY
16KB End Test 3 721 _COLLECT_UNDO_STATS
16KB End Test 3 1129 _COLUMN_COMPRESSION_FACTOR
16KB End Test 3 943 _COLUMN_ELIMINATION_OFF
16KB End Test 3 1067 _COLUMN_TRACKING_LEVEL
16KB End Test 3 801 COMMIT_POINT_STRENGTH
16KB End Test 3 912 COMMIT_WRITE
16KB End Test 3 461 COMPATIBLE
16KB End Test 3 1233 _COMPILATION_CALL_HEAP_EXTENT_SIZE
16KB End Test 3 951 _COMPLEX_VIEW_MERGING
16KB End Test 3 355 _CONTROLFILE_BLOCK_SIZE
16KB End Test 3 354 _CONTROLFILE_ENQUEUE_DUMP
16KB End Test 3 352 _CONTROLFILE_ENQUEUE_TIMEOUT
16KB End Test 3 356 _CONTROLFILE_SECTION_INIT_SIZE
16KB End Test 3 357 _CONTROLFILE_SECTION_MAX_EXPAND
16KB End Test 3 353 _CONTROLFILE_UPDATE_CHECK
16KB End Test 3 351 CONTROL_FILES
16KB End Test 3 360 CONTROL_FILE_RECORD_KEEP_TIME
16KB End Test 3 956 _CONVERT_SET_TO_JOIN
16KB End Test 3 625 _COORD_MESSAGE_BUFFER
16KB End Test 3 895 CORE_DUMP_DEST
16KB End Test 3 713 _CORRUPTED_ROLLBACK_SEGMENTS
16KB End Test 3 1063 _COST_EQUALITY_SEMI_JOIN
16KB End Test 3 52 CPU_COUNT
16KB End Test 3 944 _CPU_TO_IO
16KB End Test 3 844 CREATE_BITMAP_AREA_SIZE
16KB End Test 3 772 CREATE_STORED_OUTLINES
16KB End Test 3 314 _CR_GRANT_GLOBAL_ROLE
16KB End Test 3 315 _CR_GRANT_LOCAL_ROLE
16KB End Test 3 588 _CR_SERVER_LOG_FLUSH
16KB End Test 3 1112 _CTAS_HWM_BROKERED_LOADS
16KB End Test 3 1145 _CURSOR_BIND_CAPTURE_AREA_SIZE
16KB End Test 3 1146 _CURSOR_BIND_CAPTURE_INTERVAL
16KB End Test 3 774 _CURSOR_CACHE_FRAME_BIND_MEMORY
16KB End Test 3 877 _CURSOR_DB_BUFFERS_PINNED
16KB End Test 3 775 _CURSOR_FEATURES_ENABLED
16KB End Test 3 1070 _CURSOR_PLAN_ENABLED
16KB End Test 3 1188 _CURSOR_PLAN_HASH_VERSION
16KB End Test 3 1194 _CURSOR_PLAN_UNPARSE_ENABLED
16KB End Test 3 847 CURSOR_SHARING
16KB End Test 3 820 CURSOR_SPACE_FOR_TIME
16KB End Test 3 778 _CURSOR_STATS_BUCKET
16KB End Test 3 779 _CURSOR_STATS_HEAP
16KB End Test 3 53 _DBG_PROC_STARTUP
16KB End Test 3 375 _DBWR_ASYNC_IO
16KB End Test 3 185 DBWR_IO_SLAVES
16KB End Test 3 400 _DBWR_SCAN_INTERVAL
16KB End Test 3 368 _DBWR_TRACING
16KB End Test 3 384 DB_16K_CACHE_SIZE
16KB End Test 3 381 DB_2K_CACHE_SIZE
16KB End Test 3 385 DB_32K_CACHE_SIZE
16KB End Test 3 382 DB_4K_CACHE_SIZE
16KB End Test 3 383 DB_8K_CACHE_SIZE
16KB End Test 3 416 _DB_AGING_COOL_COUNT
16KB End Test 3 418 _DB_AGING_FREEZE_CR
16KB End Test 3 414 _DB_AGING_HOT_CRITERIA
16KB End Test 3 415 _DB_AGING_STAY_COUNT
16KB End Test 3 417 _DB_AGING_TOUCH_TIME
16KB End Test 3 464 _DB_ALWAYS_CHECK_SYSTEM_TS
16KB End Test 3 437 _DB_BLOCK_ADJCHECK
16KB End Test 3 436 _DB_BLOCK_ADJCHK_LEVEL
16KB End Test 3 608 _DB_BLOCK_ALIGN_DIRECT_READ
16KB End Test 3 363 _DB_BLOCK_BUFFERS
16KB End Test 3 362 DB_BLOCK_BUFFERS
16KB End Test 3 424 _DB_BLOCK_CACHE_CLONE
16KB End Test 3 444 _DB_BLOCK_CACHE_HISTORY
16KB End Test 3 445 _DB_BLOCK_CACHE_HISTORY_LEVEL
16KB End Test 3 374 _DB_BLOCK_CACHE_NUM_UMAP
16KB End Test 3 364 _DB_BLOCK_CACHE_PROTECT
16KB End Test 3 365 _DB_BLOCK_CACHE_PROTECT_INTERNAL
16KB End Test 3 743 DB_BLOCK_CHECKING
16KB End Test 3 366 DB_BLOCK_CHECKSUM
16KB End Test 3 463 _DB_BLOCK_CHECK_FOR_DEBUG
16KB End Test 3 438 _DB_BLOCK_CHECK_OBJTYP
16KB End Test 3 439 _DB_BLOCK_DO_FULL_MBREADS
16KB End Test 3 419 _DB_BLOCK_HASH_BUCKETS
16KB End Test 3 420 _DB_BLOCK_HASH_LATCHES
16KB End Test 3 398 _DB_BLOCK_HI_PRIORITY_BATCH_SIZE
16KB End Test 3 392 _DB_BLOCK_KNOWN_CLEAN_PCT
16KB End Test 3 388 _DB_BLOCK_LRU_LATCHES
16KB End Test 3 426 _DB_BLOCK_MAX_CR_DBA
16KB End Test 3 393 _DB_BLOCK_MAX_SCAN_PCT
16KB End Test 3 397 _DB_BLOCK_MED_PRIORITY_BATCH_SIZE
16KB End Test 3 380 _DB_BLOCK_NUMA
16KB End Test 3 407 _DB_BLOCK_PREFETCH_LIMIT
16KB End Test 3 406 _DB_BLOCK_PREFETCH_QUOTA
16KB End Test 3 367 DB_BLOCK_SIZE
16KB End Test 3 446 _DB_BLOCK_TABLE_SCAN_BUFFER_SIZE
16KB End Test 3 435 _DB_BLOCK_TEMP_REDO
16KB End Test 3 425 _DB_BLOCK_TRACE_PROTECT
16KB End Test 3 449 DB_CACHE_ADVICE
16KB End Test 3 451 _DB_CACHE_ADVICE_BATCH_SIZE
16KB End Test 3 450 _DB_CACHE_ADVICE_SAMPLE_FACTOR
16KB End Test 3 442 _DB_CACHE_CRX_CHECK
16KB End Test 3 408 _DB_CACHE_PRE_WARM
16KB End Test 3 448 _DB_CACHE_PROCESS_CR_PIN_MAX
16KB End Test 3 379 DB_CACHE_SIZE
16KB End Test 3 378 __DB_CACHE_SIZE
16KB End Test 3 740 _DB_CHANGE_NOTIFICATION_ENABLE
16KB End Test 3 558 DB_CREATE_FILE_DEST
16KB End Test 3 559 DB_CREATE_ONLINE_LOG_DEST_1
16KB End Test 3 560 DB_CREATE_ONLINE_LOG_DEST_2
16KB End Test 3 561 DB_CREATE_ONLINE_LOG_DEST_3
16KB End Test 3 562 DB_CREATE_ONLINE_LOG_DEST_4
16KB End Test 3 563 DB_CREATE_ONLINE_LOG_DEST_5
16KB End Test 3 797 DB_DOMAIN
16KB End Test 3 434 _DB_FAST_OBJ_CHECK
16KB End Test 3 371 _DB_FAST_OBJ_CKPT
16KB End Test 3 370 _DB_FAST_OBJ_TRUNCATE
16KB End Test 3 548 DB_FILES
16KB End Test 3 179 _DB_FILE_DIRECT_IO_COUNT
16KB End Test 3 550 _DB_FILE_EXEC_READ_COUNT
16KB End Test 3 570 _DB_FILE_FORMAT_IO_BUFFERS
16KB End Test 3 549 DB_FILE_MULTIBLOCK_READ_COUNT
16KB End Test 3 358 DB_FILE_NAME_CONVERT
16KB End Test 3 552 _DB_FILE_NONCONTIG_MBLOCK_READ_COUNT
16KB End Test 3 551 _DB_FILE_OPTIMIZER_READ_COUNT
16KB End Test 3 660 DB_FLASHBACK_RETENTION_TARGET
16KB End Test 3 421 _DB_HANDLES
16KB End Test 3 422 _DB_HANDLES_CACHED
16KB End Test 3 443 _DB_HOT_BLOCK_TRACKING
16KB End Test 3 742 _DB_INDEX_BLOCK_CHECKING
16KB End Test 3 386 DB_KEEP_CACHE_SIZE
16KB End Test 3 394 _DB_LARGE_DIRTY_QUEUE
16KB End Test 3 377 _DB_LOST_WRITE_CHECKING
16KB End Test 3 452 _DB_MTTR_ADVICE
16KB End Test 3 455 _DB_MTTR_PARTITIONS
16KB End Test 3 454 _DB_MTTR_SAMPLE_FACTOR
16KB End Test 3 453 _DB_MTTR_SIM_TARGET
16KB End Test 3 456 _DB_MTTR_SIM_TRACE_SIZE
16KB End Test 3 457 _DB_MTTR_TRACE_TO_ALERT
16KB End Test 3 923 DB_NAME
16KB End Test 3 447 _DB_OBJ_CKPT_ORDERED
16KB End Test 3 372 _DB_OBJ_ENABLE_KSR
16KB End Test 3 411 _DB_PERCENT_HOT_DEFAULT
16KB End Test 3 412 _DB_PERCENT_HOT_KEEP
16KB End Test 3 413 _DB_PERCENT_HOT_RECYCLE
16KB End Test 3 389 _DB_PERCPU_CREATE_CACHESIZE
16KB End Test 3 564 DB_RECOVERY_FILE_DEST
16KB End Test 3 565 DB_RECOVERY_FILE_DEST_SIZE
16KB End Test 3 566 _DB_RECOVERY_TEMPORAL_FILE_DEST
16KB End Test 3 387 DB_RECYCLE_CACHE_SIZE
16KB End Test 3 741 _DB_ROW_OVERLAP_CHECKING
16KB End Test 3 390 _DB_TODEFER_CACHE_CREATE
16KB End Test 3 924 DB_UNIQUE_NAME
16KB End Test 3 396 _DB_WRITER_CHUNK_WRITES
16KB End Test 3 403 _DB_WRITER_COALESCE_AREA_SIZE
16KB End Test 3 402 _DB_WRITER_COALESCE_WRITE_LIMIT
16KB End Test 3 401 _DB_WRITER_FLUSH_IMU
16KB End Test 3 399 _DB_WRITER_HISTOGRAM_STATISTICS
16KB End Test 3 395 _DB_WRITER_MAX_WRITES
16KB End Test 3 391 DB_WRITER_PROCESSES
16KB End Test 3 405 _DB_WRITER_VERIFY_WRITES
16KB End Test 3 682 DDL_WAIT_FOR_LOCKS
16KB End Test 3 48 _DEAD_PROCESS_SCAN_INTERVAL
16KB End Test 3 896 _DEBUG_ENABLE
16KB End Test 3 817 _DEDICATED_SERVER_POLL_COUNT
16KB End Test 3 819 _DEDICATED_SERVER_POST_WAIT
16KB End Test 3 818 _DEDICATED_SERVER_POST_WAIT_CALL
16KB End Test 3 794 _DEFAULT_ENCRYPT_ALG
16KB End Test 3 1064 _DEFAULT_NON_EQUALITY_SEL_CHECK
16KB End Test 3 1186 _DELAY_INDEX_MAINTAIN
16KB End Test 3 1263 DG_BROKER_CONFIG_FILE1
16KB End Test 3 1264 DG_BROKER_CONFIG_FILE2
16KB End Test 3 804 __DG_BROKER_SERVICE_NAMES
16KB End Test 3 1261 DG_BROKER_START
16KB End Test 3 228 _DIAG_DAEMON
16KB End Test 3 213 _DIAG_DIAGNOSTICS
16KB End Test 3 1246 _DIMENSION_SKIP_NULL
16KB End Test 3 1211 _DISABLE_ADAPTIVE_SHRUNK_AGGREGATION
16KB End Test 3 1014 _DISABLE_DATALAYER_SAMPLING
16KB End Test 3 212 _DISABLE_DUPLEX_LINK
16KB End Test 3 1210 _DISABLE_FAST_AGGREGATION
16KB End Test 3 170 _DISABLE_FILE_LOCKS
16KB End Test 3 1189 _DISABLE_FUNCTION_BASED_INDEX
16KB End Test 3 225 _DISABLE_HEALTH_CHECK
16KB End Test 3 36 _DISABLE_IMAGE_CHECK
16KB End Test 3 610 _DISABLE_INCREMENTAL_CHECKPOINTS
16KB End Test 3 643 _DISABLE_INCREMENTAL_RECOVERY_CKPT
16KB End Test 3 130 _DISABLE_INSTANCE_PARAMS_CHECK
16KB End Test 3 214 _DISABLE_INTERFACE_CHECKING
16KB End Test 3 41 _DISABLE_KCBHXOR_OSD
16KB End Test 3 349 _DISABLE_LATCH_FREE_SCN_WRITES_VIA_32CAS
16KB End Test 3 350 _DISABLE_LATCH_FREE_SCN_WRITES_VIA_64CAS
16KB End Test 3 547 _DISABLE_LOGGING
16KB End Test 3 369 _DISABLE_MULTIPLE_BLOCK_SIZES
16KB End Test 3 898 _DISABLE_NTLOG_EVENTS
16KB End Test 3 172 _DISABLE_ODM
16KB End Test 3 641 _DISABLE_RECOVERABLE_RECOVERY
16KB End Test 3 468 _DISABLE_RECOVERY_READ_SKIP
16KB End Test 3 1015 _DISABLE_SAMPLE_IO_OPTIM
16KB End Test 3 911 _DISABLE_SAVEPOINT_RESET
16KB End Test 3 612 _DISABLE_SELFTUNE_CHECKPOINTING
16KB End Test 3 337 _DISABLE_STREAMS_POOL_AUTO_TUNING
16KB End Test 3 42 _DISABLE_SYSTEM_STATE
16KB End Test 3 738 _DISABLE_TXN_ALERT
16KB End Test 3 726 _DISCRETE_TRANSACTIONS_ENABLED
16KB End Test 3 182 DISK_ASYNCH_IO
16KB End Test 3 805 DISPATCHERS
16KB End Test 3 815 _DISPATCHER_RATE_SCALE
16KB End Test 3 814 _DISPATCHER_RATE_TTL
16KB End Test 3 959 _DISTINCT_VIEW_UNNESTING
16KB End Test 3 799 DISTRIBUTED_LOCK_TIMEOUT
16KB End Test 3 800 _DISTRIBUTED_RECOVERY_CONNECTION_HOLD_TIME
16KB End Test 3 275 _DLMTRACE
16KB End Test 3 284 _DLM_SEND_TIMEOUT
16KB End Test 3 681 DML_LOCKS
16KB End Test 3 1130 _DML_MONITORING_ENABLED
16KB End Test 3 1219 _DM_MAX_SHARED_POOL_PCT
16KB End Test 3 903 _DOMAIN_INDEX_BATCH_SIZE
16KB End Test 3 904 _DOMAIN_INDEX_DML_BATCH_SIZE
16KB End Test 3 1217 _DROP_TABLE_GRANULE
16KB End Test 3 1215 _DROP_TABLE_OPTIMIZATION_ENABLED
16KB End Test 3 1262 DRS_START
16KB End Test 3 873 _DSS_CACHE_FLUSH
16KB End Test 3 1163 _DS_IOCOUNT_IOSIZE
16KB End Test 3 1136 _DTREE_AREA_SIZE
16KB End Test 3 1139 _DTREE_BINNING_ENABLED
16KB End Test 3 1141 _DTREE_BINTEST_ID
16KB End Test 3 1138 _DTREE_COMPRESSBMP_ENABLED
16KB End Test 3 1140 _DTREE_MAX_SURROGATES
16KB End Test 3 1137 _DTREE_PRUNING_ENABLED
16KB End Test 3 635 _DUMMY_INSTANCE
16KB End Test 3 1125 _DUMP_COMMON_SUBEXPRESSIONS
16KB End Test 3 1128 _DUMP_CONNECT_BY_LOOP_DATA
16KB End Test 3 1147 _DUMP_CURSOR_HEAP_SIZES
16KB End Test 3 231 _DUMP_INTERVAL_LIMIT
16KB End Test 3 232 _DUMP_MAX_LIMIT
16KB End Test 3 823 _DUMP_QBC_TREE
16KB End Test 3 292 _DUMP_RCVR_IPC
16KB End Test 3 229 _DUMP_SYSTEM_STATE_SCOPE
16KB End Test 3 230 _DUMP_TRACE_SCOPE
16KB End Test 3 790 _DYNAMIC_RLS_POLICIES
16KB End Test 3 861 _DYNAMIC_STATS_THRESHOLD
16KB End Test 3 954 _ELIMINATE_COMMON_SUBEXPR
16KB End Test 3 715 _ENABLE_BLOCK_LEVEL_TRANSACTION_RECOVERY
16KB End Test 3 972 _ENABLE_CSCN_CACHING
16KB End Test 3 872 _ENABLE_DEFAULT_AFFINITY
16KB End Test 3 1208 _ENABLE_DML_LOCK_ESCALATION
16KB End Test 3 1240 _ENABLE_EXCHANGE_VALIDATION_USING_CHECK
16KB End Test 3 1178 _ENABLE_FAST_REF_AFTER_MV_TBS
16KB End Test 3 748 _ENABLE_HASH_OVERFLOW
16KB End Test 3 696 _ENABLE_HWM_SYNC
16KB End Test 3 174 _ENABLE_LIST_IO
16KB End Test 3 1254 _ENABLE_NATIVENET_TCPIP
16KB End Test 3 69 _ENABLE_NUMA_OPTIMIZATION
16KB End Test 3 1200 _ENABLE_REFRESH_SCHEDULE
16KB End Test 3 24 _ENABLE_RELIABLE_LATCH_WAITS
16KB End Test 3 224 _ENABLE_RLB
16KB End Test 3 1251 _ENABLE_ROW_SHIPPING
16KB End Test 3 67 _ENABLE_SHARED_POOL_DURATIONS
16KB End Test 3 698 _ENABLE_TABLESPACE_ALERTS
16KB End Test 3 1047 _ENABLE_TYPE_DEP_SELECTIVITY
16KB End Test 3 140 _ENQUEUE_DEBUG_MULTI_INSTANCE
16KB End Test 3 139 _ENQUEUE_HASH
16KB End Test 3 141 _ENQUEUE_HASH_CHAIN_LATCHES
16KB End Test 3 137 _ENQUEUE_LOCKS
16KB End Test 3 138 _ENQUEUE_RESOURCES
16KB End Test 3 57 EVENT
16KB End Test 3 1124 _EXPAND_AGGREGATES
16KB End Test 3 932 _EXPLAIN_REWRITE_MODE
16KB End Test 3 1205 _EXTENDED_PRUNING_ENABLED
16KB End Test 3 586 _FAIRNESS_THRESHOLD
16KB End Test 3 283 _FAIR_REMOTE_CVT
16KB End Test 3 523 FAL_CLIENT
16KB End Test 3 524 FAL_SERVER
16KB End Test 3 884 _FAST_DUAL_ENABLED
16KB End Test 3 967 _FAST_FULL_SCAN_ENABLED
16KB End Test 3 611 _FAST_START_INSTANCE_RECOVERY_TARGET
16KB End Test 3 616 FAST_START_IO_TARGET
16KB End Test 3 617 FAST_START_MTTR_TARGET
16KB End Test 3 735 FAST_START_PARALLEL_ROLLBACK
16KB End Test 3 1132 _FIC_ALGORITHM_SET
16KB End Test 3 1133 _FIC_AREA_SIZE
16KB End Test 3 1134 _FIC_MAX_LENGTH
16KB End Test 3 1135 _FIC_MIN_BMSIZE
16KB End Test 3 1152 _FIC_OUTOFMEM_CANDIDATES
16KB End Test 3 200 _FIFTH_SPARE_PARAMETER
16KB End Test 3 173 FILEIO_NETWORK_ADAPTERS
16KB End Test 3 222 _FILEMAP_DIR
16KB End Test 3 175 FILESYSTEMIO_OPTIONS
16KB End Test 3 221 FILE_MAPPING
16KB End Test 3 196 _FIRST_SPARE_PARAMETER
16KB End Test 3 915 FIXED_DATE
16KB End Test 3 888 _FIX_CONTROL
16KB End Test 3 662 _FLASHBACK_ALLOW_NOARCHIVELOG
16KB End Test 3 666 _FLASHBACK_BARRIER_INTERVAL
16KB End Test 3 671 _FLASHBACK_COPY_LATCHES
16KB End Test 3 668 _FLASHBACK_FUZZY_BARRIER
16KB End Test 3 674 _FLASHBACK_GENERATION_BUFFER_SIZE
16KB End Test 3 677 _FLASHBACK_HINT_BARRIER_PERCENT
16KB End Test 3 665 _FLASHBACK_LOGFILE_ENQUEUE_TIMEOUT
16KB End Test 3 676 _FLASHBACK_LOG_IO_ERROR_BEHAVIOR
16KB End Test 3 670 _FLASHBACK_LOG_MIN_SIZE
16KB End Test 3 669 _FLASHBACK_LOG_SIZE
16KB End Test 3 675 _FLASHBACK_MAX_LOG_SIZE
16KB End Test 3 673 _FLASHBACK_MAX_N_LOG_PER_THREAD
16KB End Test 3 672 _FLASHBACK_N_LOG_PER_THREAD
16KB End Test 3 667 _FLASHBACK_STANDBY_BARRIER_INTERVAL
16KB End Test 3 664 _FLASHBACK_VERBOSE_INFO
16KB End Test 3 679 _FLASHBACK_WRITE_SIZE_QM
16KB End Test 3 1120 _FORCE_DATEFOLD_TRUNC
16KB End Test 3 1247 _FORCE_REWRITE_ENABLE
16KB End Test 3 1077 _FORCE_TEMPTABLES_FOR_GSETS
16KB End Test 3 199 _FOURTH_SPARE_PARAMETER
16KB End Test 3 1035 _FULL_PWISE_JOIN_ENABLED
16KB End Test 3 1204 _GBY_HASH_AGGREGATION_ENABLED
16KB End Test 3 922 _GBY_ONEKEY_ENABLED
16KB End Test 3 313 _GCS_FAST_RECONFIG
16KB End Test 3 318 _GCS_LATCHES
16KB End Test 3 319 _GCS_PROCESS_IN_RECOVERY
16KB End Test 3 317 _GCS_RESOURCES
16KB End Test 3 236 GCS_SERVER_PROCESSES
16KB End Test 3 320 _GCS_SHADOW_LOCKS
16KB End Test 3 575 _GC_AFFINITY_LIMIT
16KB End Test 3 576 _GC_AFFINITY_MINIMUM
16KB End Test 3 574 _GC_AFFINITY_TIME
16KB End Test 3 606 _GC_ASYNC_MEMCPY
16KB End Test 3 599 _GC_CHECK_BSCN
16KB End Test 3 603 _GC_COALESCE_RECOVERY_READS
16KB End Test 3 582 _GC_DEFER_TIME
16KB End Test 3 601 _GC_DYNAMIC_AFFINITY_LOCKS
16KB End Test 3 580 _GC_ELEMENT_PERCENT
16KB End Test 3 571 GC_FILES_TO_LOCKS
16KB End Test 3 600 _GC_GLOBAL_LRU
16KB End Test 3 578 _GC_INTEGRITY_CHECKS
16KB End Test 3 604 _GC_KEEP_RECOVERY_BUFFERS
16KB End Test 3 581 _GC_LATCHES
16KB End Test 3 605 _GC_MAXIMUM_BIDS
16KB End Test 3 598 _GC_STATISTICS
16KB End Test 3 573 _GC_UNDO_AFFINITY
16KB End Test 3 602 _GC_UNDO_AFFINITY_LOCKS
16KB End Test 3 572 _GC_USE_CR
16KB End Test 3 579 _GC_VECTOR_READ
16KB End Test 3 1107 _GENERALIZED_PRUNING_ENABLED
16KB End Test 3 285 _GES_DD_DEBUG
16KB End Test 3 282 _GES_DIAGNOSTICS
16KB End Test 3 293 _GES_HEALTH_CHECK
16KB End Test 3 1206 _GLOBALINDEX_PNUM_FILTER_ENABLED
16KB End Test 3 796 GLOBAL_CONTEXT_POOL_SIZE
16KB End Test 3 798 GLOBAL_NAMES
16KB End Test 3 999 _GROUPBY_NOPUSHDOWN_CUT_RATIO
16KB End Test 3 1000 _GROUPBY_ORDERBY_COMBINE
16KB End Test 3 1093 _GS_ANTI_SEMI_JOIN_ALLOWED
16KB End Test 3 3 _HANG_ANALYSIS_NUM_CALL_STACKS
16KB End Test 3 227 _HANG_DETECTION
16KB End Test 3 568 _HARD_PROTECTION
16KB End Test 3 875 HASH_AREA_SIZE
16KB End Test 3 874 _HASH_JOIN_ENABLED
16KB End Test 3 876 _HASH_MULTIBLOCK_IO_COUNT
16KB End Test 3 191 _HIGH_SERVER_THRESHOLD
16KB End Test 3 72 HI_SHARED_MEMORY_ADDRESS
16KB End Test 3 1169 _HJ_BIT_FILTER_THRESHOLD
16KB End Test 3 1260 HS_AUTOREGISTER
16KB End Test 3 697 _HWM_SYNC_THRESHOLD
16KB End Test 3 971 _IDL_CONVENTIONAL_INDEX_MAINTENANCE
16KB End Test 3 1168 _IDXRB_ROWINCR
16KB End Test 3 926 IFILE
16KB End Test 3 753 _IGNORE_DESC_IN_INDEX
16KB End Test 3 458 _IMMEDIATE_COMMIT_PROPAGATION
16KB End Test 3 1049 _IMPROVED_OUTERJOIN_CARD
16KB End Test 3 1043 _IMPROVED_ROW_LENGTH_ENABLED
16KB End Test 3 325 _IMR_ACTIVE
16KB End Test 3 328 _IMR_DISK_VOTING_INTERVAL
16KB End Test 3 326 _IMR_MAX_RECONFIG_DELAY
16KB End Test 3 327 _IMR_SPLITBRAIN_RES_WAIT
16KB End Test 3 728 _IMU_POOLS
16KB End Test 3 644 _INCREMENTAL_RECOVERY_CKPT_MIN_BATCH
16KB End Test 3 1045 _INDEX_JOIN_ENABLED
16KB End Test 3 1019 _INDEX_PREFETCH_FACTOR
16KB End Test 3 340 _INIT_GRANULE_INTERVAL
16KB End Test 3 913 _INIT_SQL_FILE
16KB End Test 3 5 _INJECT_STARTUP_FAULT
16KB End Test 3 906 _INSERT_ENABLE_HWM_BROKERED
16KB End Test 3 56 INSTANCE_GROUPS
16KB End Test 3 802 INSTANCE_NAME
16KB End Test 3 691 INSTANCE_NUMBER
16KB End Test 3 129 INSTANCE_TYPE
16KB End Test 3 700 _INST_LOCKING_PERIOD
16KB End Test 3 587 _INTERCONNECT_CHECKSUM
16KB End Test 3 1111 _INTRAPART_PDML_ENABLED
16KB End Test 3 1113 _INTRAPART_PDML_RANDOMLOCAL_ENABLED
16KB End Test 3 727 _IN_MEMORY_UNDO
16KB End Test 3 4 _IOR_SERIALIZE_FAULT
16KB End Test 3 181 _IOSLAVE_BATCH_COUNT
16KB End Test 3 180 _IOSLAVE_ISSUE_COUNT
16KB End Test 3 178 _IO_SHARED_POOL_SIZE
16KB End Test 3 184 _IO_SLAVES_DISABLED
16KB End Test 3 120 JAVA_MAX_SESSIONSPACE_SIZE
16KB End Test 3 111 __JAVA_POOL_SIZE
16KB End Test 3 112 JAVA_POOL_SIZE
16KB End Test 3 119 JAVA_SOFT_SESSIONSPACE_LIMIT
16KB End Test 3 840 _JOB_QUEUE_INTERVAL
16KB End Test 3 839 JOB_QUEUE_PROCESSES
16KB End Test 3 585 _KCL_COMMIT
16KB End Test 3 597 _KCL_CONSERVATIVE_LOG_FLUSH
16KB End Test 3 583 _KCL_DEBUG
16KB End Test 3 584 _KCL_INDEX_SPLIT
16KB End Test 3 596 _KCL_UNDO_GROUPING
16KB End Test 3 595 _KCL_UNDO_LOCKS
16KB End Test 3 751 _KDBL_ENABLE_POST_ALLOCATION
16KB End Test 3 754 _KEEP_REMOTE_COLUMN_SIZE
16KB End Test 3 816 _KERNEL_MESSAGE_NETWORK_DRIVER
16KB End Test 3 1357 _KFFMAP_HASH_SIZE
16KB End Test 3 1358 _KFFMOP_HASH_SIZE
16KB End Test 3 121 _KGHDSIDX_COUNT
16KB End Test 3 767 _KGLSIM_MAXMEM_PERCENT
16KB End Test 3 765 _KGL_BUCKET_COUNT
16KB End Test 3 761 _KGL_FIXED_EXTENTS
16KB End Test 3 768 _KGL_HASH_COLLISION
16KB End Test 3 760 _KGL_HEAP_SIZE
16KB End Test 3 763 _KGL_KEEP_CACHE_PCT
16KB End Test 3 764 _KGL_KEEP_CACHE_RETAIN_PCT
16KB End Test 3 770 _KGL_LARGE_HEAP_WARNING_THRESHOLD
16KB End Test 3 759 _KGL_LATCH_COUNT
16KB End Test 3 758 _KGL_MULTI_INSTANCE_INVALIDATION
16KB End Test 3 756 _KGL_MULTI_INSTANCE_LOCK
16KB End Test 3 757 _KGL_MULTI_INSTANCE_PIN
16KB End Test 3 762 _KGL_SESSION_CACHED_OBJECTS
16KB End Test 3 769 _KGL_TIME_TO_WAIT_FOR_LOCKS
16KB End Test 3 776 _KGX_LATCHES
16KB End Test 3 361 _KILL_CONTROLFILE_ENQUEUE_BLOCKER
16KB End Test 3 294 _KILL_ENQUEUE_BLOCKER
16KB End Test 3 1195 _KILL_JAVA_THREADS_ON_EOC
16KB End Test 3 846 _KKFI_TRACE
16KB End Test 3 777 _KKS_USE_MUTEX_PIN
16KB End Test 3 849 _KOLFUSESLF
16KB End Test 3 1221 _KQL_SUBHEAP_TRACE
16KB End Test 3 59 _KSDXDOCMD_DEFAULT_TIMEOUT_MS
16KB End Test 3 64 _KSDXW_CINI_FLG
16KB End Test 3 65 _KSDXW_NBUFS
16KB End Test 3 62 _KSDXW_NUM_PGW
16KB End Test 3 61 _KSDXW_NUM_SGW
16KB End Test 3 63 _KSDXW_STACK_DEPTH
16KB End Test 3 132 _KSD_TEST_PARAM
16KB End Test 3 133 _KSE_DIE_TIMEOUT
16KB End Test 3 135 _KSE_PC_TABLE_SIZE
16KB End Test 3 171 _KSFD_VERIFY_WRITE
16KB End Test 3 142 _KSI_TRACE
16KB End Test 3 218 _KSMG_GRANULE_LOCKING_STATUS
16KB End Test 3 217 _KSMG_GRANULE_SIZE
16KB End Test 3 219 _KSMG_LOCK_CHECK_INTERVAL
16KB End Test 3 220 _KSMG_LOCK_REACQUIRE_COUNT
16KB End Test 3 35 _KSUITM_DONT_KILL_DUMPER
16KB End Test 3 34 _KSU_DIAG_KILL_TIME
16KB End Test 3 205 _KSXP_DIAGMODE
16KB End Test 3 216 _KSXP_REPORTING_PROCESS
16KB End Test 3 204 _KSXP_SEND_TIMEOUT
16KB End Test 3 690 _KTC_DEBUG
16KB End Test 3 687 _KTC_LATCHES
16KB End Test 3 708 _KTU_LATCHES
16KB End Test 3 854 _KU_TRACE
16KB End Test 3 115 _LARGE_POOL_MIN_ALLOC
16KB End Test 3 109 __LARGE_POOL_SIZE
16KB End Test 3 110 LARGE_POOL_SIZE
16KB End Test 3 699 _LAST_ALLOCATION_PERIOD
16KB End Test 3 22 _LATCH_CLASSES
16KB End Test 3 14 _LATCH_CLASS_0
16KB End Test 3 15 _LATCH_CLASS_1
16KB End Test 3 16 _LATCH_CLASS_2
16KB End Test 3 17 _LATCH_CLASS_3
16KB End Test 3 18 _LATCH_CLASS_4
16KB End Test 3 19 _LATCH_CLASS_5
16KB End Test 3 20 _LATCH_CLASS_6
16KB End Test 3 21 _LATCH_CLASS_7
16KB End Test 3 8 _LATCH_MISS_STAT_SID
16KB End Test 3 6 _LATCH_RECOVERY_ALIGNMENT
16KB End Test 3 780 LDAP_DIRECTORY_ACCESS
16KB End Test 3 752 _LDR_IO_SIZE
16KB End Test 3 1042 _LEFT_NESTED_LOOPS_RANDOM
16KB End Test 3 526 _LGWR_ASYNC_BROADCASTS
16KB End Test 3 525 _LGWR_ASYNC_IO
16KB End Test 3 527 _LGWR_DELAY_WRITE
16KB End Test 3 186 _LGWR_IO_SLAVES
16KB End Test 3 512 _LGWR_MAX_NS_WT
16KB End Test 3 521 _LGWR_NS_NL_MAX
16KB End Test 3 520 _LGWR_NS_NL_MIN
16KB End Test 3 519 _LGWR_NS_SIM_ERR
16KB End Test 3 518 _LGWR_TA_SIM_ERR
16KB End Test 3 766 _LIBRARY_CACHE_ADVICE
16KB End Test 3 31 LICENSE_MAX_SESSIONS
16KB End Test 3 789 LICENSE_MAX_USERS
16KB End Test 3 32 LICENSE_SESSIONS_WARNING
16KB End Test 3 545 _LIGHTWEIGHT_HDRS
16KB End Test 3 1061 _LIKE_WITH_BIND_AS_EQUALITY
16KB End Test 3 240 _LM_ACTIVATE_LMS_THRESHOLD
16KB End Test 3 264 _LM_CACHE_LVL0_CLEANUP
16KB End Test 3 262 _LM_CACHE_RES_CLEANUP
16KB End Test 3 263 _LM_CACHE_RES_TYPE
16KB End Test 3 307 _LM_CHECKSUM_BATCH_MSG
16KB End Test 3 256 _LM_CONTIGUOUS_RES_COUNT
16KB End Test 3 273 _LM_DD_INTERVAL
16KB End Test 3 274 _LM_DD_SCAN_INTERVAL
16KB End Test 3 254 _LM_DRM_MAX_REQUESTS
16KB End Test 3 253 _LM_DRM_WINDOW
16KB End Test 3 255 _LM_DRM_XLATCH
16KB End Test 3 237 _LM_DYNAMIC_LMS
16KB End Test 3 331 _LM_DYNAMIC_LOAD
16KB End Test 3 250 _LM_DYNAMIC_REMASTERING
16KB End Test 3 272 _LM_ENQUEUE_FREELIST
16KB End Test 3 271 _LM_ENQ_LOCK_FREELIST
16KB End Test 3 249 _LM_ENQ_RCFG
16KB End Test 3 279 _LM_FILE_AFFINITY
16KB End Test 3 286 _LM_GLOBAL_POSTS
16KB End Test 3 241 _LM_LMD_WAITTIME
16KB End Test 3 235 _LM_LMS
16KB End Test 3 242 _LM_LMS_WAITTIME
16KB End Test 3 245 _LM_LOCKS
16KB End Test 3 246 _LM_MASTER_WEIGHT
16KB End Test 3 238 _LM_MAX_LMS
16KB End Test 3 239 _LM_MIN_LMS
16KB End Test 3 295 _LM_MSG_BATCH_SIZE
16KB End Test 3 297 _LM_MSG_CACHE_THRESHOLDS
16KB End Test 3 298 _LM_MSG_CLEANUP_INTERVAL
16KB End Test 3 260 _LM_NODE_JOIN_OPT
16KB End Test 3 261 _LM_NON_FAULT_TOLERANT
16KB End Test 3 259 _LM_NUM_PCMHV_LATCHES
16KB End Test 3 257 _LM_NUM_PT_BUCKETS
16KB End Test 3 258 _LM_NUM_PT_LATCHES
16KB End Test 3 302 _LM_PROCESS_BATCHING
16KB End Test 3 243 _LM_PROCS
16KB End Test 3 277 _LM_PROC_FREEZE_TIMEOUT
16KB End Test 3 270 _LM_RCFG_TIMEOUT
16KB End Test 3 266 _LM_RCV_BUFFER_SIZE
16KB End Test 3 244 _LM_RESS
16KB End Test 3 281 _LM_RES_HASH_BUCKET
16KB End Test 3 252 _LM_RES_PART
16KB End Test 3 306 _LM_SENDPROXY_RESERVE
16KB End Test 3 265 _LM_SEND_BUFFERS
16KB End Test 3 299 _LM_SEND_MODE
16KB End Test 3 301 _LM_SEND_QUEUE_BATCHING
16KB End Test 3 300 _LM_SEND_QUEUE_LENGTH
16KB End Test 3 280 _LM_SHARE_LOCK_OPT
16KB End Test 3 303 _LM_SQ_BATCH_FACTOR
16KB End Test 3 304 _LM_SQ_BATCH_TYPE
16KB End Test 3 305 _LM_SQ_BATCH_WAITTICK
16KB End Test 3 268 _LM_SYNC_TIMEOUT
16KB End Test 3 296 _LM_TICKETS
16KB End Test 3 269 _LM_TICKET_ACTIVE_SENDBACK
16KB End Test 3 276 _LM_TX_DELTA
16KB End Test 3 278 _LM_VALIDATE_RESOURCE_TYPE
16KB End Test 3 251 _LM_XIDS
16KB End Test 3 1103 _LOAD_WITHOUT_COMPILE
16KB End Test 3 1039 _LOCAL_COMMUNICATION_COSTING_ENABLED
16KB End Test 3 1040 _LOCAL_COMMUNICATION_RATIO
16KB End Test 3 811 LOCAL_LISTENER
16KB End Test 3 25 LOCK_NAME_SPACE
16KB End Test 3 75 LOCK_SGA
16KB End Test 3 76 _LOCK_SGA_AREAS
16KB End Test 3 637 LOGMNR_MAX_PERSISTENT_SESSIONS
16KB End Test 3 470 _LOG_ARCHIVE_AVOID_MEMCPY
16KB End Test 3 478 _LOG_ARCHIVE_BUFFERS
16KB End Test 3 479 _LOG_ARCHIVE_BUFFER_SIZE
16KB End Test 3 480 _LOG_ARCHIVE_CALLOUT
16KB End Test 3 474 _LOG_ARCHIVE_COMPRESS_ENABLE
16KB End Test 3 473 LOG_ARCHIVE_CONFIG
16KB End Test 3 505 _LOG_ARCHIVE_DELTA_SYNC_WAIT
16KB End Test 3 481 LOG_ARCHIVE_DEST
16KB End Test 3 483 LOG_ARCHIVE_DEST_1
16KB End Test 3 492 LOG_ARCHIVE_DEST_10
16KB End Test 3 484 LOG_ARCHIVE_DEST_2
16KB End Test 3 485 LOG_ARCHIVE_DEST_3
16KB End Test 3 486 LOG_ARCHIVE_DEST_4
16KB End Test 3 487 LOG_ARCHIVE_DEST_5
16KB End Test 3 488 LOG_ARCHIVE_DEST_6
16KB End Test 3 489 LOG_ARCHIVE_DEST_7
16KB End Test 3 490 LOG_ARCHIVE_DEST_8
16KB End Test 3 491 LOG_ARCHIVE_DEST_9
16KB End Test 3 493 LOG_ARCHIVE_DEST_STATE_1
16KB End Test 3 502 LOG_ARCHIVE_DEST_STATE_10
16KB End Test 3 494 LOG_ARCHIVE_DEST_STATE_2
16KB End Test 3 495 LOG_ARCHIVE_DEST_STATE_3
16KB End Test 3 496 LOG_ARCHIVE_DEST_STATE_4
16KB End Test 3 497 LOG_ARCHIVE_DEST_STATE_5
16KB End Test 3 498 LOG_ARCHIVE_DEST_STATE_6
16KB End Test 3 499 LOG_ARCHIVE_DEST_STATE_7
16KB End Test 3 500 LOG_ARCHIVE_DEST_STATE_8
16KB End Test 3 501 LOG_ARCHIVE_DEST_STATE_9
16KB End Test 3 482 LOG_ARCHIVE_DUPLEX_DEST
16KB End Test 3 510 LOG_ARCHIVE_FORMAT
16KB End Test 3 509 LOG_ARCHIVE_LOCAL_FIRST
16KB End Test 3 503 LOG_ARCHIVE_MAX_PROCESSES
16KB End Test 3 506 LOG_ARCHIVE_MIN_SUCCEED_DEST
16KB End Test 3 522 _LOG_ARCHIVE_NETWORK_REDO_SIZE
16KB End Test 3 504 _LOG_ARCHIVE_NET_TIMEOUT
16KB End Test 3 471 _LOG_ARCHIVE_PROT_AUTO_DEMOTE
16KB End Test 3 469 _LOG_ARCHIVE_SECURITY_ENABLED
16KB End Test 3 475 LOG_ARCHIVE_START
16KB End Test 3 508 LOG_ARCHIVE_TRACE
16KB End Test 3 618 _LOG_BLOCKS_DURING_BACKUP
16KB End Test 3 528 LOG_BUFFER
16KB End Test 3 536 _LOG_BUFFERS_CORRUPT
16KB End Test 3 535 _LOG_BUFFERS_DEBUG
16KB End Test 3 622 LOG_CHECKPOINTS_TO_ALERT
16KB End Test 3 531 LOG_CHECKPOINT_INTERVAL
16KB End Test 3 465 _LOG_CHECKPOINT_RECOVERY_CHECK
16KB End Test 3 532 LOG_CHECKPOINT_TIMEOUT
16KB End Test 3 686 _LOG_COMMITTIME_BLOCK_CLEANOUT
16KB End Test 3 537 _LOG_DEBUG_MULTI_INSTANCE
16KB End Test 3 659 _LOG_DELETION_POLICY
16KB End Test 3 530 _LOG_EVENT_QUEUES
16KB End Test 3 359 LOG_FILE_NAME_CONVERT
16KB End Test 3 529 _LOG_IO_SIZE
16KB End Test 3 539 _LOG_PARALLELISM
16KB End Test 3 541 _LOG_PARALLELISM_DYNAMIC
16KB End Test 3 540 _LOG_PARALLELISM_MAX
16KB End Test 3 544 _LOG_PRIVATE_MUL
16KB End Test 3 542 _LOG_PRIVATE_PARALLELISM
16KB End Test 3 543 _LOG_PRIVATE_PARALLELISM_MUL
16KB End Test 3 538 _LOG_SIMULTANEOUS_COPIES
16KB End Test 3 693 _LOG_SPACE_ERRORS
16KB End Test 3 533 _LOG_SWITCH_TIMEOUT
16KB End Test 3 38 _LONGOPS_ENABLED
16KB End Test 3 192 _LOW_SERVER_THRESHOLD
16KB End Test 3 323 _MASTER_DIRECT_SENDS
16KB End Test 3 1073 _MAV_REFRESH_CONSISTENT_READ
16KB End Test 3 1100 _MAV_REFRESH_DOUBLE_COUNT_PREVENTED
16KB End Test 3 1074 _MAV_REFRESH_OPT
16KB End Test 3 1075 _MAV_REFRESH_UNIONALL_TABLES
16KB End Test 3 513 _MAX_ARCH_LNS_WAIT
16KB End Test 3 459 MAX_COMMIT_PROPAGATION_DELAY
16KB End Test 3 808 MAX_DISPATCHERS
16KB End Test 3 894 MAX_DUMP_FILE_SIZE
16KB End Test 3 783 MAX_ENABLED_ROLES
16KB End Test 3 10 _MAX_EXPONENTIAL_SLEEP
16KB End Test 3 514 _MAX_LNS_SHUTDOWN_ARCHIVAL_TIME
16KB End Test 3 234 _MAX_PROTOCOL_SUPPORT
16KB End Test 3 511 _MAX_RFS_CONNECTIONS
16KB End Test 3 807 MAX_SHARED_SERVERS
16KB End Test 3 704 _MAX_SHRINK_OBJ_STATS
16KB End Test 3 9 _MAX_SLEEP_HOLDING_LATCH
16KB End Test 3 645 _MEDIA_RECOVERY_READ_BATCH
16KB End Test 3 646 _MEDIA_RECOVERY_REAP_TIME
16KB End Test 3 346 _MEMORY_BROKER_LOG_STAT_ENTRIES
16KB End Test 3 348 _MEMORY_BROKER_MARGINAL_UTILITY_BC
16KB End Test 3 347 _MEMORY_BROKER_MARGINAL_UTILITY_SP
16KB End Test 3 342 _MEMORY_BROKER_SHRINK_HEAPS
16KB End Test 3 343 _MEMORY_BROKER_SHRINK_JAVA_HEAPS
16KB End Test 3 344 _MEMORY_BROKER_SHRINK_STREAMS_POOL
16KB End Test 3 345 _MEMORY_BROKER_SHRINK_TIMEOUT
16KB End Test 3 341 _MEMORY_BROKER_STAT_INTERVAL
16KB End Test 3 338 _MEMORY_MANAGEMENT_TRACING
16KB End Test 3 339 _MEMORY_SANITY_CHECK
16KB End Test 3 98 _MEM_ANNOTATION_PR_LEV
16KB End Test 3 99 _MEM_ANNOTATION_SCALE
16KB End Test 3 97 _MEM_ANNOTATION_SH_LEV
16KB End Test 3 100 _MEM_ANNOTATION_STORE
16KB End Test 3 106 _MEM_STD_EXTENT_SIZE
16KB End Test 3 136 _MESSAGES
16KB End Test 3 1071 _MINIMAL_STATS_AGGREGATION
16KB End Test 3 702 _MINIMUM_BLOCKS_TO_SHRINK
16KB End Test 3 703 _MINIMUM_EXTENTS_TO_SHRINK
16KB End Test 3 460 _MINIMUM_GIGA_SCN
16KB End Test 3 546 _MIRROR_REDO_BUFFERS
16KB End Test 3 1032 _MMV_QUERY_REWRITE_ENABLED
16KB End Test 3 626 _MULTIPLE_INSTANCE_RECOVERY
16KB End Test 3 880 _MULTI_JOIN_KEY_TABLE_LOOKUP
16KB End Test 3 1159 _MV_REFRESH_ANA
16KB End Test 3 1158 _MV_REFRESH_COSTING
16KB End Test 3 1076 _MV_REFRESH_DELTA_FRACTION
16KB End Test 3 1072 _MV_REFRESH_EUT
16KB End Test 3 1177 _MV_REFRESH_FORCE_PARALLEL_QUERY
16KB End Test 3 1102 _MV_REFRESH_NEW_SETUP_DISABLED
16KB End Test 3 1174 _MV_REFRESH_REBUILD_PERCENTAGE
16KB End Test 3 1069 _MV_REFRESH_SELECTIONS
16KB End Test 3 1094 _MV_REFRESH_USE_STATS
16KB End Test 3 1164 _MV_REFSCHED_TIMEINCR
16KB End Test 3 1227 _MV_ROLLING_INV
16KB End Test 3 1395 _MWIN_SCHEDULE
16KB End Test 3 169 _NCHAR_IMP_CNV
16KB End Test 3 905 _NCHAR_IMP_CONV
16KB End Test 3 1017 _NCMB_READAHEAD_ENABLED
16KB End Test 3 1018 _NCMB_READAHEAD_TRACING
16KB End Test 3 1006 _NESTED_LOOP_FUDGE
16KB End Test 3 1106 _NESTED_MAV_FAST_ONCOMMIT_ENABLED
16KB End Test 3 885 _NEWSORT_ENABLED
16KB End Test 3 887 _NEWSORT_ORDERED_PCT
16KB End Test 3 886 _NEWSORT_TYPE
16KB End Test 3 1065 _NEW_INITIAL_JOIN_ORDERS
16KB End Test 3 950 _NEW_SORT_COST_ESTIMATE
16KB End Test 3 160 NLS_CALENDAR
16KB End Test 3 166 NLS_COMP
16KB End Test 3 157 NLS_CURRENCY
16KB End Test 3 156 NLS_DATE_FORMAT
16KB End Test 3 155 NLS_DATE_LANGUAGE
16KB End Test 3 165 NLS_DUAL_CURRENCY
16KB End Test 3 159 NLS_ISO_CURRENCY
16KB End Test 3 152 NLS_LANGUAGE
16KB End Test 3 167 NLS_LENGTH_SEMANTICS
16KB End Test 3 168 NLS_NCHAR_CONV_EXCP
16KB End Test 3 158 NLS_NUMERIC_CHARACTERS
16KB End Test 3 154 NLS_SORT
16KB End Test 3 153 NLS_TERRITORY
16KB End Test 3 162 NLS_TIMESTAMP_FORMAT
16KB End Test 3 164 NLS_TIMESTAMP_TZ_FORMAT
16KB End Test 3 161 NLS_TIME_FORMAT
16KB End Test 3 163 NLS_TIME_TZ_FORMAT
16KB End Test 3 332 _NOTIFY_CRS
16KB End Test 3 901 _NO_OBJECTS
16KB End Test 3 1008 _NO_OR_EXPANSION
16KB End Test 3 615 _NO_RECOVERY_THROUGH_RESETLOGS
16KB End Test 3 516 _NS_MAX_FLUSH_WT
16KB End Test 3 517 _NS_MAX_SEND_DELAY
16KB End Test 3 77 _NUMA_INSTANCE_MAPPING
16KB End Test 3 68 _NUMA_POOL_SIZE
16KB End Test 3 55 _NUMBER_CACHED_ATTRIBUTES
16KB End Test 3 37 _NUM_LONGOP_CHILD_LATCHES
16KB End Test 3 786 O7_DICTIONARY_ACCESSIBILITY
16KB End Test 3 900 OBJECT_CACHE_MAX_SIZE_PERCENT
16KB End Test 3 899 OBJECT_CACHE_OPTIMAL_SIZE
16KB End Test 3 223 _OBJECT_STATISTICS
16KB End Test 3 712 _OFFLINE_ROLLBACK_SEGMENTS
16KB End Test 3 267 _OGMS_HOME
16KB End Test 3 1265 _OLAPI_HISTORY_RETENTION
16KB End Test 3 1268 _OLAPI_IFACE_OBJECT_HISTORY
16KB End Test 3 1269 _OLAPI_IFACE_OBJECT_HISTORY_RETENTION
16KB End Test 3 1271 _OLAPI_IFACE_OPERATION_HISTORY_RETENTION
16KB End Test 3 1270 _OLAPI_INTERFACE_OPERATION_HISTORY
16KB End Test 3 1272 _OLAPI_MEMORY_OPERATION_HISTORY
16KB End Test 3 1274 _OLAPI_MEMORY_OPERATION_HISTORY_PAUSE_AT_SEQNO
16KB End Test 3 1273 _OLAPI_MEMORY_OPERATION_HISTORY_RETENTION
16KB End Test 3 1266 _OLAPI_SESSION_HISTORY
16KB End Test 3 1267 _OLAPI_SESSION_HISTORY_RETENTION
16KB End Test 3 1281 _OLAP_AGGREGATE_BUFFER_SIZE
16KB End Test 3 1292 _OLAP_AGGREGATE_FLAGS
16KB End Test 3 1290 _OLAP_AGGREGATE_FUNCTION_CACHE_ENABLED
16KB End Test 3 1289 _OLAP_AGGREGATE_FUNCTION_MERGE_THRESHOLD
16KB End Test 3 1287 _OLAP_AGGREGATE_MAX_THREAD_TUPLES
16KB End Test 3 1282 _OLAP_AGGREGATE_MIN_BUFFER_SIZE
16KB End Test 3 1284 _OLAP_AGGREGATE_MIN_THREAD_STATUS
16KB End Test 3 1291 _OLAP_AGGREGATE_MULTIPATH_HIER
16KB End Test 3 1285 _OLAP_AGGREGATE_STATLEN_THRESH
16KB End Test 3 1288 _OLAP_AGGREGATE_STORE_PROBABILITY
16KB End Test 3 1286 _OLAP_AGGREGATE_WORKLIST_MAX
16KB End Test 3 1283 _OLAP_AGGREGATE_WORK_PER_THREAD
16KB End Test 3 1294 _OLAP_ALLOCATE_ERRORLOG_FORMAT
16KB End Test 3 1276 _OLAP_CONTINUOUS_TRACE_FILE
16KB End Test 3 1296 _OLAP_DBGOUTFILE_ECHO_TO_EVENTLOG
16KB End Test 3 1302 _OLAP_DIMENSION_COREHASH_CLASS
16KB End Test 3 1301 _OLAP_DIMENSION_COREHASH_MAX
16KB End Test 3 1297 _OLAP_EIF_EXPORT_LOB_SIZE
16KB End Test 3 1311 _OLAP_LMGEN_DIM_SIZE
16KB End Test 3 1312 _OLAP_LMGEN_MEAS_SIZE
16KB End Test 3 1300 _OLAP_OBJECT_HASH_CLASS
16KB End Test 3 1305 _OLAP_PAGE_POOL_EXPAND_RATE
16KB End Test 3 1304 _OLAP_PAGE_POOL_HI
16KB End Test 3 1307 _OLAP_PAGE_POOL_HIT_TARGET
16KB End Test 3 1303 _OLAP_PAGE_POOL_LOW
16KB End Test 3 1308 _OLAP_PAGE_POOL_PRESSURE
16KB End Test 3 1306 _OLAP_PAGE_POOL_SHRINK_RATE
16KB End Test 3 1275 OLAP_PAGE_POOL_SIZE
16KB End Test 3 1280 _OLAP_PARALLEL_UPDATE_SMALL_GROUP
16KB End Test 3 1279 _OLAP_PARALLEL_UPDATE_SMALL_THRESHOLD
16KB End Test 3 1278 _OLAP_PARALLEL_UPDATE_THRESHOLD
16KB End Test 3 1295 _OLAP_POUTLOG_ECHO_TO_EVENTLOG
16KB End Test 3 1299 _OLAP_SESSCACHE_ENABLED
16KB End Test 3 1298 _OLAP_SORT_BUFFER_SIZE
16KB End Test 3 1310 _OLAP_STATBOOL_COREBITS
16KB End Test 3 1309 _OLAP_STATBOOL_THRESHOLD
16KB End Test 3 1277 _OLAP_TABLE_FUNCTION_STATISTICS
16KB End Test 3 1313 _OLAP_WRAP_ERRORS
16KB End Test 3 878 _OLD_CONNECT_BY_ENABLED
16KB End Test 3 795 _OLS_CLEANUP_TASK
16KB End Test 3 176 _OMF
16KB End Test 3 1066 _ONESIDE_COLSTAT_FOR_EQUIJOINS
16KB End Test 3 925 OPEN_CURSORS
16KB End Test 3 907 OPEN_LINKS
16KB End Test 3 908 OPEN_LINKS_PER_INSTANCE
16KB End Test 3 1050 _OPTIMIZER_ADJUST_FOR_NULLS
16KB End Test 3 1116 _OPTIMIZER_AUTOSTATS_JOB
16KB End Test 3 1237 _OPTIMIZER_BETTER_INLIST_COSTING
16KB End Test 3 1166 _OPTIMIZER_BLOCK_SIZE
16KB End Test 3 949 _OPTIMIZER_CACHE_STATS
16KB End Test 3 1201 _OPTIMIZER_CARTESIAN_ENABLED
16KB End Test 3 963 _OPTIMIZER_CBQT_FACTOR
16KB End Test 3 1229 _OPTIMIZER_CBQT_NO_SIZE_RESTRICTION
16KB End Test 3 1185 _OPTIMIZER_CEIL_COST
16KB End Test 3 1053 _OPTIMIZER_CHOOSE_PERMUTATION
16KB End Test 3 1248 _OPTIMIZER_COMPLEX_PRED_SELECTIVITY
16KB End Test 3 1115 _OPTIMIZER_COMPUTE_INDEX_STATS
16KB End Test 3 1119 _OPTIMIZER_CONNECT_BY_COST_BASED
16KB End Test 3 1172 _OPTIMIZER_CORRECT_SQ_SELECTIVITY
16KB End Test 3 961 _OPTIMIZER_COST_BASED_TRANSFORMATION
16KB End Test 3 1171 _OPTIMIZER_COST_FILTER_PRED
16KB End Test 3 1222 _OPTIMIZER_COST_HJSMJ_MULTIMATCH
16KB End Test 3 946 _OPTIMIZER_COST_MODEL
16KB End Test 3 1051 _OPTIMIZER_DEGREE
16KB End Test 3 1180 _OPTIMIZER_DIM_SUBQ_JOIN_SEL
16KB End Test 3 1181 _OPTIMIZER_DISABLE_STRANS_SANITY_CHECKS
16KB End Test 3 1097 OPTIMIZER_DYNAMIC_SAMPLING
16KB End Test 3 1096 _OPTIMIZER_DYN_SMP_BLKS
16KB End Test 3 1232 _OPTIMIZER_ENHANCED_FILTER_PUSH
16KB End Test 3 945 _OPTIMIZER_EXTENDED_CURSOR_SHARING
16KB End Test 3 914 OPTIMIZER_FEATURES_ENABLE
16KB End Test 3 1118 _OPTIMIZER_FILTER_PRED_PULLUP
16KB End Test 3 1183 _OPTIMIZER_IGNORE_HINTS
16KB End Test 3 1011 OPTIMIZER_INDEX_CACHING
16KB End Test 3 1010 OPTIMIZER_INDEX_COST_ADJ
16KB End Test 3 1190 _OPTIMIZER_INVALIDATION_PERIOD
16KB End Test 3 1203 _OPTIMIZER_JOIN_ELIMINATION_ENABLED
16KB End Test 3 1196 _OPTIMIZER_JOIN_ORDER_CONTROL
16KB End Test 3 969 _OPTIMIZER_JOIN_SEL_SANITY_CHECK
16KB End Test 3 1009 _OPTIMIZER_MAX_PERMUTATIONS
16KB End Test 3 1239 _OPTIMIZER_MIN_CACHE_BLOCKS
16KB End Test 3 1143 _OPTIMIZER_MJC_ENABLED
16KB End Test 3 930 OPTIMIZER_MODE
16KB End Test 3 931 _OPTIMIZER_MODE_FORCE
16KB End Test 3 1220 _OPTIMIZER_MULTIPLE_CENV
16KB End Test 3 1099 _OPTIMIZER_NEW_JOIN_CARD_COMPUTATION
16KB End Test 3 1243 _OPTIMIZER_ORDER_BY_ELIMINATION_ENABLED
16KB End Test 3 1241 _OPTIMIZER_OR_EXPANSION
16KB End Test 3 1242 _OPTIMIZER_OUTER_TO_ANTI_ENABLED
16KB End Test 3 1155 _OPTIMIZER_PERCENT_PARALLEL
16KB End Test 3 960 _OPTIMIZER_PUSH_DOWN_DISTINCT
16KB End Test 3 1117 _OPTIMIZER_PUSH_PRED_COST_BASED
16KB End Test 3 1184 _OPTIMIZER_RANDOM_PLAN
16KB End Test 3 1236 _OPTIMIZER_ROWNUM_PRED_BASED_FKR
16KB End Test 3 1170 _OPTIMIZER_SAVE_STATS
16KB End Test 3 1156 _OPTIMIZER_SEARCH_LIMIT
16KB End Test 3 1224 OPTIMIZER_SECURE_VIEW_MERGING
16KB End Test 3 1238 _OPTIMIZER_SELF_INDUCED_CACHE_COST
16KB End Test 3 968 _OPTIMIZER_SKIP_SCAN_ENABLED
16KB End Test 3 1250 _OPTIMIZER_SKIP_SCAN_GUESS
16KB End Test 3 1144 _OPTIMIZER_SORTMERGE_JOIN_ENABLED
16KB End Test 3 962 _OPTIMIZER_SQU_BOTTOMUP
16KB End Test 3 1202 _OPTIMIZER_STARPLAN_ENABLED
16KB End Test 3 1244 _OPTIMIZER_STAR_TRAN_IN_WITH_CLAUSE
16KB End Test 3 948 _OPTIMIZER_SYSTEM_STATS_USAGE
16KB End Test 3 855 _OPTIMIZER_TRACE
16KB End Test 3 1223 _OPTIMIZER_TRANSITIVITY_RETAIN
16KB End Test 3 1154 _OPTIMIZER_UNDO_CHANGES
16KB End Test 3 947 _OPTIMIZER_UNDO_COST_CHANGE
16KB End Test 3 1114 _OPTIM_ADJUST_FOR_PART_SKEWS
16KB End Test 3 1179 _OPTIM_DICT_STATS_AT_DB_CR_UPG
16KB End Test 3 970 _OPTIM_ENHANCE_NNULL_DETECTION
16KB End Test 3 1095 _OPTIM_NEW_DEFAULT_JOIN_SEL
16KB End Test 3 1068 _OPTIM_PEEK_USER_BINDS
16KB End Test 3 58 _ORADEBUG_FORCE
16KB End Test 3 1005 _ORDERED_NESTED_LOOP
16KB End Test 3 1003 _ORDERED_SEMIJOIN
16KB End Test 3 1060 _OR_EXPAND_NVL_PREDICATE
16KB End Test 3 928 OS_AUTHENT_PREFIX
16KB End Test 3 781 OS_ROLES
16KB End Test 3 40 _OS_SCHED_HIGH_PRIORITY
16KB End Test 3 12 _OTHER_WAIT_EVENT_EXCLUSION
16KB End Test 3 11 _OTHER_WAIT_THRESHOLD
16KB End Test 3 1214 _OUTLINE_BITMAP_TREE
16KB End Test 3 1041 _PARALLELISM_COST_FUDGE_FACTOR
16KB End Test 3 988 _PARALLEL_ADAPTIVE_MAX_USERS
16KB End Test 3 985 PARALLEL_ADAPTIVE_MULTI_USER
16KB End Test 3 987 PARALLEL_AUTOMATIC_TUNING
16KB End Test 3 973 _PARALLEL_BROADCAST_ENABLED
16KB End Test 3 842 _PARALLEL_DEFAULT_MAX_INSTANCES
16KB End Test 3 866 _PARALLEL_EXECUTION_MESSAGE_ALIGN
16KB End Test 3 865 PARALLEL_EXECUTION_MESSAGE_SIZE
16KB End Test 3 863 _PARALLEL_FAKE_CLASS_PCT
16KB End Test 3 290 _PARALLEL_FIXWRITE_BUCKET
16KB End Test 3 862 PARALLEL_INSTANCE_GROUP
16KB End Test 3 989 _PARALLEL_LOAD_BALANCING
16KB End Test 3 990 _PARALLEL_LOAD_BAL_UNIT
16KB End Test 3 857 PARALLEL_MAX_SERVERS
16KB End Test 3 868 _PARALLEL_MIN_MESSAGE_POOL
16KB End Test 3 841 PARALLEL_MIN_PERCENT
16KB End Test 3 856 PARALLEL_MIN_SERVERS
16KB End Test 3 736 _PARALLEL_RECOVERY_STOPAT
16KB End Test 3 288 _PARALLEL_REPLAY_MSG_LIMIT
16KB End Test 3 555 PARALLEL_SERVER
16KB End Test 3 858 _PARALLEL_SERVER_IDLE_TIME
16KB End Test 3 556 PARALLEL_SERVER_INSTANCES
16KB End Test 3 859 _PARALLEL_SERVER_SLEEP_TIME
16KB End Test 3 991 _PARALLEL_SLAVE_ACQUISITION_WAIT
16KB End Test 3 986 PARALLEL_THREADS_PER_CPU
16KB End Test 3 1059 _PARALLEL_TXN_GLOBAL
16KB End Test 3 131 _PARAMETER_TABLE_BLOCK_SIZE
16KB End Test 3 1036 _PARTIAL_PWISE_JOIN_ENABLED
16KB End Test 3 939 _PARTITION_VIEW_ENABLED
16KB End Test 3 787 _PASSWORDFILE_ENQUEUE_TIMEOUT
16KB End Test 3 1101 _PCT_REFRESH_DOUBLE_COUNT_PREVENTED
16KB End Test 3 993 _PDML_GIM_SAMPLING
16KB End Test 3 994 _PDML_GIM_STAGGERED
16KB End Test 3 992 _PDML_SLAVES_DIFF_PART
16KB End Test 3 678 _PERCENT_FLASHBACK_BUF_PARTIAL_FULL
16KB End Test 3 1078 PGA_AGGREGATE_TARGET
16KB End Test 3 92 _PGA_LARGE_EXTENT_SIZE
16KB End Test 3 1079 _PGA_MAX_SIZE
16KB End Test 3 589 _PING_LEVEL
16KB End Test 3 45 _PKT_ENABLE
16KB End Test 3 47 _PKT_PMON_INTERVAL
16KB End Test 3 46 _PKT_START
16KB End Test 3 1213 _PLAN_OUTLINE_DATA
16KB End Test 3 834 _PLSQL_ANON_BLOCK_CODE_TYPE
16KB End Test 3 1209 _PLSQL_CACHE_ENABLE
16KB End Test 3 837 PLSQL_CCFLAGS
16KB End Test 3 833 PLSQL_CODE_TYPE
16KB End Test 3 829 PLSQL_COMPILER_FLAGS
16KB End Test 3 835 PLSQL_DEBUG
16KB End Test 3 827 _PLSQL_DUMP_BUFFER_EVENTS
16KB End Test 3 1212 _PLSQL_MINIMUM_CACHE_HIT_PERCENT
16KB End Test 3 830 PLSQL_NATIVE_LIBRARY_DIR
16KB End Test 3 831 PLSQL_NATIVE_LIBRARY_SUBDIR_COUNT
16KB End Test 3 838 _PLSQL_NVL_OPTIMIZE
16KB End Test 3 836 PLSQL_OPTIMIZE_LEVEL
16KB End Test 3 828 PLSQL_V2_COMPATIBILITY
16KB End Test 3 832 PLSQL_WARNINGS
16KB End Test 3 813 _PMON_LOAD_CONSTANTS
16KB End Test 3 1104 _PRECOMPUTE_GID_VALUES
16KB End Test 3 998 _PREDICATE_ELIMINATION_ENABLED
16KB End Test 3 955 _PRED_MOVE_AROUND
16KB End Test 3 688 _PRESCOMM
16KB End Test 3 70 PRE_PAGE_SGA
16KB End Test 3 1098 _PRE_REWRITE_PUSH_PRED
16KB End Test 3 1153 _PRINT_REFRESH_SCHEDULE
16KB End Test 3 96 _PRIVATE_MEMORY_ADDRESS
16KB End Test 3 26 PROCESSES
16KB End Test 3 1148 _PROJECTION_PUSHDOWN
16KB End Test 3 1149 _PROJECTION_PUSHDOWN_DEBUG
16KB End Test 3 1007 _PROJECT_VIEW_COLUMNS
16KB End Test 3 964 _PUSH_JOIN_PREDICATE
16KB End Test 3 965 _PUSH_JOIN_UNION_VIEW
16KB End Test 3 966 _PUSH_JOIN_UNION_VIEW2
16KB End Test 3 979 _PX_ASYNC_GETGRANULE
16KB End Test 3 974 _PX_BROADCAST_FUDGE_FACTOR
16KB End Test 3 869 _PX_BUFFER_TTL
16KB End Test 3 1150 _PX_COMPILATION_DEBUG
16KB End Test 3 1151 _PX_COMPILATION_TRACE
16KB End Test 3 995 _PX_DYNAMIC_OPT
16KB End Test 3 996 _PX_DYNAMIC_SAMPLE_SIZE
16KB End Test 3 976 _PX_GRANULE_SIZE
16KB End Test 3 1044 _PX_INDEX_SAMPLING
16KB End Test 3 975 _PX_KXIB_TRACING
16KB End Test 3 864 _PX_LOAD_PUBLISH_INTERVAL
16KB End Test 3 1192 _PX_LOC_MSG_COST
16KB End Test 3 981 _PX_MAX_GRANULES_PER_SLAVE
16KB End Test 3 957 _PX_MINUS_INTERSECT
16KB End Test 3 980 _PX_MIN_GRANULES_PER_SLAVE
16KB End Test 3 1191 _PX_NET_MSG_COST
16KB End Test 3 983 _PX_NO_GRANULE_SORT
16KB End Test 3 982 _PX_NO_STEALING
16KB End Test 3 1197 _PX_NSS_PLANB
16KB End Test 3 984 _PX_PROC_CONSTRAIN
16KB End Test 3 1225 _PX_PWG_ENABLED
16KB End Test 3 997 _PX_ROWNUM_PD
16KB End Test 3 860 _PX_SEND_TIMEOUT
16KB End Test 3 1131 _PX_SLAVES_SHARE_CURSORS
16KB End Test 3 851 _PX_TRACE
16KB End Test 3 867 _PX_USE_LARGE_POOL
16KB End Test 3 977 _PX_XTGRANULE_SIZE
16KB End Test 3 1175 _QA_CONTROL
16KB End Test 3 1176 _QA_LRG_TYPE
16KB End Test 3 1022 _QUERY_COST_REWRITE
16KB End Test 3 883 _QUERY_EXECUTION_CACHE_MAX_SIZE
16KB End Test 3 1024 _QUERY_REWRITE_1
16KB End Test 3 1023 _QUERY_REWRITE_2
16KB End Test 3 1029 _QUERY_REWRITE_DRJ
16KB End Test 3 1020 QUERY_REWRITE_ENABLED
16KB End Test 3 1026 _QUERY_REWRITE_EXPRESSION
16KB End Test 3 1028 _QUERY_REWRITE_FPC
16KB End Test 3 1025 _QUERY_REWRITE_FUDGE
16KB End Test 3 1021 QUERY_REWRITE_INTEGRITY
16KB End Test 3 1027 _QUERY_REWRITE_JGMIGRATE
16KB End Test 3 1030 _QUERY_REWRITE_MAXDISJUNCT
16KB End Test 3 933 _QUERY_REWRITE_OR_ERROR
16KB End Test 3 1187 _QUERY_REWRITE_SETOPGRW_ENABLE
16KB End Test 3 1031 _QUERY_REWRITE_VOP_CLEANUP
16KB End Test 3 289 _RCFG_PARALLEL_FIXWRITE
16KB End Test 3 287 _RCFG_PARALLEL_REPLAY
16KB End Test 3 291 _RCFG_PARALLEL_VERIFY
16KB End Test 3 782 RDBMS_SERVER_DN
16KB End Test 3 553 READ_ONLY_OPEN_DELAYED
16KB End Test 3 88 _REALFREE_HEAP_MAX_SIZE
16KB End Test 3 90 _REALFREE_HEAP_MODE
16KB End Test 3 89 _REALFREE_HEAP_PAGESIZE_HINT
16KB End Test 3 476 _REAL_TIME_APPLY_ARCH_DELAY
16KB End Test 3 477 _REAL_TIME_APPLY_SIM
16KB End Test 3 642 _RECOVERABLE_RECOVERY_BATCH_PERCENT
16KB End Test 3 577 _RECOVERY_ASSERTS
16KB End Test 3 623 RECOVERY_PARALLELISM
16KB End Test 3 376 _RECOVERY_PERCENTAGE
16KB End Test 3 467 _RECOVERY_VERIFY_WRITES
16KB End Test 3 689 _RECURSIVE_IMU_TRANSACTIONS
16KB End Test 3 744 RECYCLEBIN
16KB End Test 3 462 _REDO_COMPATIBILITY_CHECK
16KB End Test 3 746 _RELEASE_INSERT_THRESHOLD
16KB End Test 3 310 _RELIABLE_BLOCK_SENDS
16KB End Test 3 472 REMOTE_ARCHIVE_ENABLE
16KB End Test 3 824 REMOTE_DEPENDENCIES_MODE
16KB End Test 3 812 REMOTE_LISTENER
16KB End Test 3 788 REMOTE_LOGIN_PASSWORDFILE
16KB End Test 3 784 REMOTE_OS_AUTHENT
16KB End Test 3 785 REMOTE_OS_ROLES
16KB End Test 3 958 _REMOVE_AGGR_SUBQUERY
16KB End Test 3 685 REPLICATION_DEPENDENCY_TRACKING
16KB End Test 3 30 RESOURCE_LIMIT
16KB End Test 3 195 _RESOURCE_MANAGER_ALWAYS_ON
16KB End Test 3 193 RESOURCE_MANAGER_PLAN
16KB End Test 3 634 _RESTORE_SPFILE
16KB End Test 3 737 RESUMABLE_TIMEOUT
16KB End Test 3 750 _REUSE_INDEX_LOOP
16KB End Test 3 1142 _RIGHT_OUTER_HASH_ENABLE
16KB End Test 3 636 _RMAN_IO_PRIORITY
16KB End Test 3 709 ROLLBACK_SEGMENTS
16KB End Test 3 711 _ROLLBACK_SEGMENT_COUNT
16KB End Test 3 710 _ROLLBACK_SEGMENT_INITIAL
16KB End Test 3 732 _ROLLBACK_STOPAT
16KB End Test 3 1108 _ROWSOURCE_EXECUTION_STATISTICS
16KB End Test 3 1109 _ROWSOURCE_STATISTICS_SAMPFREQ
16KB End Test 3 1235 _ROWSRC_TRACE_LEVEL
16KB End Test 3 755 _ROW_CACHE_CURSORS
16KB End Test 3 729 _ROW_CR
16KB End Test 3 683 _ROW_LOCKING
16KB End Test 3 1016 _SAMPLE_ROWS_PER_BLOCK
16KB End Test 3 197 _SECOND_SPARE_PARAMETER
16KB End Test 3 1245 _SELFJOIN_MV_DUPLICATES
16KB End Test 3 613 _SELFTUNE_CHECKPOINTING_LAG
16KB End Test 3 404 _SELFTUNE_CHECKPOINT_WRITE_PCT
16KB End Test 3 309 _SEND_AST_TO_FOREGROUND
16KB End Test 3 312 _SEND_CLOSE_WITH_BLOCK
16KB End Test 3 594 _SEND_REQUESTS_TO_PI
16KB End Test 3 684 _SERIALIZABLE
16KB End Test 3 1013 _SERIAL_DIRECT_READ
16KB End Test 3 624 _SERIAL_RECOVERY
16KB End Test 3 773 SERIAL_REUSE
16KB End Test 3 803 SERVICE_NAMES
16KB End Test 3 27 SESSIONS
16KB End Test 3 821 SESSION_CACHED_CURSORS
16KB End Test 3 850 _SESSION_CACHED_INSTANTIATIONS
16KB End Test 3 792 _SESSION_CONTEXT_SIZE
16KB End Test 3 33 _SESSION_IDLE_BIT_LATCHES
16KB End Test 3 44 _SESSION_IDLE_CHECK_INTERVAL
16KB End Test 3 822 _SESSION_KEPT_CURSOR_PINS
16KB End Test 3 902 SESSION_MAX_OPEN_FILES
16KB End Test 3 43 _SESSION_WAIT_HISTORY
16KB End Test 3 202 _SEVENTH_SPARE_PARAMETER
16KB End Test 3 66 SGA_MAX_SIZE
16KB End Test 3 333 SGA_TARGET
16KB End Test 3 890 SHADOW_CORE_DUMP
16KB End Test 3 71 SHARED_MEMORY_ADDRESS
16KB End Test 3 334 _SHARED_POOL_MAX_SIZE
16KB End Test 3 335 _SHARED_POOL_MINSIZE_ON
16KB End Test 3 118 _SHARED_POOL_RESERVED_MIN_ALLOC
16KB End Test 3 117 _SHARED_POOL_RESERVED_PCT
16KB End Test 3 116 SHARED_POOL_RESERVED_SIZE
16KB End Test 3 107 __SHARED_POOL_SIZE
16KB End Test 3 108 SHARED_POOL_SIZE
16KB End Test 3 806 SHARED_SERVERS
16KB End Test 3 810 SHARED_SERVER_SESSIONS
16KB End Test 3 50 _SHORT_STACK_TIMEOUT_MS
16KB End Test 3 921 _SHRUNK_AGGS_DISABLE_THRESHOLD
16KB End Test 3 920 _SHRUNK_AGGS_ENABLED
16KB End Test 3 321 _SIDE_CHANNEL_BATCH_SIZE
16KB End Test 3 322 _SIDE_CHANNEL_BATCH_TIMEOUT
16KB End Test 3 952 _SIMPLE_VIEW_MERGING
16KB End Test 3 82 _SIMULATOR_BUCKET_MINDELTA
16KB End Test 3 84 _SIMULATOR_INTERNAL_BOUND
16KB End Test 3 81 _SIMULATOR_LRU_REBALANCE_SIZTHR
16KB End Test 3 80 _SIMULATOR_LRU_REBALANCE_THRESH
16KB End Test 3 83 _SIMULATOR_LRU_SCAN_COUNT
16KB End Test 3 79 _SIMULATOR_PIN_INVAL_MAXCNT
16KB End Test 3 86 _SIMULATOR_RESERVED_HEAP_COUNT
16KB End Test 3 85 _SIMULATOR_RESERVED_OBJ_COUNT
16KB End Test 3 87 _SIMULATOR_SAMPLING_FACTOR
16KB End Test 3 78 _SIMULATOR_UPPER_BOUND_MULTIPLE
16KB End Test 3 51 _SINGLE_PROCESS
16KB End Test 3 201 _SIXTH_SPARE_PARAMETER
16KB End Test 3 206 _SKGXP_REAPING
16KB End Test 3 208 _SKGXP_UDP_ACH_REAPING_TIME
16KB End Test 3 207 _SKGXP_UDP_HIWAT_WARN
16KB End Test 3 215 _SKGXP_UDP_INTERFACE_DETECTION_TIME_SECS
16KB End Test 3 211 _SKGXP_UDP_KEEP_ALIVE_PING_TIMER_SECS
16KB End Test 3 210 _SKGXP_UDP_TIMED_WAIT_BUFFERING
16KB End Test 3 209 _SKGXP_UDP_TIMED_WAIT_SECONDS
16KB End Test 3 316 _SKIP_ASSUME_MSG
16KB End Test 3 1157 SKIP_UNUSABLE_INDEXES
16KB End Test 3 1037 _SLAVE_MAPPING_ENABLED
16KB End Test 3 1038 _SLAVE_MAPPING_GROUP_SIZE
16KB End Test 3 373 _SMALL_TABLE_THRESHOLD
16KB End Test 3 1092 _SMM_ADVICE_ENABLED
16KB End Test 3 1091 _SMM_ADVICE_LOG_SIZE
16KB End Test 3 1083 _SMM_AUTO_COST_ENABLED
16KB End Test 3 1082 _SMM_AUTO_MAX_IO_SIZE
16KB End Test 3 1081 _SMM_AUTO_MIN_IO_SIZE
16KB End Test 3 1090 _SMM_BOUND
16KB End Test 3 1084 _SMM_CONTROL
16KB End Test 3 1193 _SMM_FREEABLE_RETAIN
16KB End Test 3 1228 _SMM_ISORT_CAP
16KB End Test 3 1087 _SMM_MAX_SIZE
16KB End Test 3 1086 _SMM_MIN_SIZE
16KB End Test 3 1088 _SMM_PX_MAX_SIZE
16KB End Test 3 1089 _SMM_RETAIN_SIZE
16KB End Test 3 1085 _SMM_TRACE
16KB End Test 3 733 _SMON_INTERNAL_ERRLIMIT
16KB End Test 3 826 SMTP_OUT_SERVER
16KB End Test 3 723 _SMU_DEBUG_MODE
16KB End Test 3 719 _SMU_ERROR_SIMULATION_SITE
16KB End Test 3 720 _SMU_ERROR_SIMULATION_TYPE
16KB End Test 3 722 _SMU_TIMEOUTS
16KB End Test 3 918 SORT_AREA_RETAINED_SIZE
16KB End Test 3 917 SORT_AREA_SIZE
16KB End Test 3 934 _SORT_ELIMINATION_COST_RATIO
16KB End Test 3 919 _SORT_MULTIBLOCK_READ_COUNT
16KB End Test 3 128 SPFILE
16KB End Test 3 7 _SPIN_COUNT
16KB End Test 3 1167 _SPR_MAX_RULES
16KB End Test 3 1165 _SPR_PUSH_PRED_REFSPR
16KB End Test 3 1127 _SPR_USE_AW_AS
16KB End Test 3 1126 _SPR_USE_HASH_TABLE
16KB End Test 3 935 SQL92_SECURITY
16KB End Test 3 1048 _SQLEXEC_PROGRESSION_COST
16KB End Test 3 1397 SQLTUNE_CATEGORY
16KB End Test 3 1398 _SQLTUNE_CATEGORY_PARSED
16KB End Test 3 936 _SQL_CONNECT_CAPABILITY_OVERRIDE
16KB End Test 3 929 _SQL_CONNECT_CAPABILITY_TABLE
16KB End Test 3 1226 _SQL_HASH_DEBUG
16KB End Test 3 1207 _SQL_MODEL_UNFOLD_FORLOOPS
16KB End Test 3 927 SQL_TRACE
16KB End Test 3 1052 SQL_VERSION
16KB End Test 3 134 _STACK_GUARD_LEVEL
16KB End Test 3 507 STANDBY_ARCHIVE_DEST
16KB End Test 3 567 STANDBY_FILE_MANAGEMENT
16KB End Test 3 942 STAR_TRANSFORMATION_ENABLED
16KB End Test 3 54 _STATIC_BACKGROUNDS
16KB End Test 3 1121 STATISTICS_LEVEL
16KB End Test 3 1162 _STA_CONTROL
16KB End Test 3 1161 _STN_TRACE
16KB End Test 3 336 _STREAMS_POOL_MAX_SIZE
16KB End Test 3 114 STREAMS_POOL_SIZE
16KB End Test 3 113 __STREAMS_POOL_SIZE
16KB End Test 3 1055 _SUBQUERY_PRUNING_COST_FACTOR
16KB End Test 3 1057 _SUBQUERY_PRUNING_ENABLED
16KB End Test 3 1058 _SUBQUERY_PRUNING_MV_ENABLED
16KB End Test 3 1056 _SUBQUERY_PRUNING_REDUCTION
16KB End Test 3 1387 _SWRF_METRIC_FREQUENT_MODE
16KB End Test 3 1392 _SWRF_MMON_DBFUS
16KB End Test 3 1383 _SWRF_MMON_FLUSH
16KB End Test 3 1386 _SWRF_MMON_METRICS
16KB End Test 3 1391 _SWRF_ON_DISK_ENABLED
16KB End Test 3 1381 _SWRF_TEST_ACTION
16KB End Test 3 1394 _SWRF_TEST_DBFUS
16KB End Test 3 771 _SYNONYM_REPOINT_TRACING
16KB End Test 3 1382 _SYSAUX_TEST_PARAM
16KB End Test 3 1012 _SYSTEM_INDEX_CACHING
16KB End Test 3 843 _SYSTEM_TRIG_ENABLED
16KB End Test 3 879 _TABLE_LOOKUP_PREFETCH_SIZE
16KB End Test 3 881 _TABLE_LOOKUP_PREFETCH_THRESH
16KB End Test 3 1062 _TABLE_SCAN_COST_PLUS_ONE
16KB End Test 3 183 TAPE_ASYNCH_IO
16KB End Test 3 614 _TARGET_RBA_MAX_LAG_PERCENTAGE
16KB End Test 3 515 _TA_LNS_WAIT_FOR_ARCH_LOG
16KB End Test 3 680 _TDB_DEBUG_MODE
16KB End Test 3 1001 _TEMP_TRAN_BLOCK_THRESHOLD
16KB End Test 3 1002 _TEMP_TRAN_CACHE
16KB End Test 3 39 _TEST_KSUSIGSKIP
16KB End Test 3 122 _TEST_PARAM_1
16KB End Test 3 123 _TEST_PARAM_2
16KB End Test 3 124 _TEST_PARAM_3
16KB End Test 3 125 _TEST_PARAM_4
16KB End Test 3 126 _TEST_PARAM_5
16KB End Test 3 127 _TEST_PARAM_6
16KB End Test 3 198 _THIRD_SPARE_PARAMETER
16KB End Test 3 609 THREAD
16KB End Test 3 1407 _THRESHOLD_ALERTS_ENABLE
16KB End Test 3 29 TIMED_OS_STATISTICS
16KB End Test 3 28 TIMED_STATISTICS
16KB End Test 3 94 _TOTAL_LARGE_EXTENT_MEMORY
16KB End Test 3 870 _TQ_DUMP_PERIOD
16KB End Test 3 2 TRACEFILE_IDENTIFIER
16KB End Test 3 145 _TRACE_ARCHIVE
16KB End Test 3 147 _TRACE_BUFFERS
16KB End Test 3 427 _TRACE_BUFFER_FLUSHES
16KB End Test 3 431 _TRACE_BUFFER_GETS
16KB End Test 3 440 _TRACE_BUFFER_WAIT_TIMEOUTS
16KB End Test 3 151 _TRACE_BUFFER_WRAP_TIMESTAMP
16KB End Test 3 429 _TRACE_CR_BUFFER_CREATES
16KB End Test 3 143 TRACE_ENABLED
16KB End Test 3 146 _TRACE_EVENTS
16KB End Test 3 1 _TRACE_FILES_PUBLIC
16KB End Test 3 149 _TRACE_FILE_SIZE
16KB End Test 3 148 _TRACE_FLUSH_PROCESSES
16KB End Test 3 428 _TRACE_MULTI_BLOCK_READS
16KB End Test 3 233 _TRACE_NAVIGATION_SCOPE
16KB End Test 3 150 _TRACE_OPTIONS
16KB End Test 3 433 _TRACE_PIN_TIME
16KB End Test 3 144 _TRACE_PROCESSES
16KB End Test 3 706 TRANSACTIONS
16KB End Test 3 707 TRANSACTIONS_PER_ROLLBACK_SEGMENT
16KB End Test 3 714 _TRANSACTION_AUDITING
16KB End Test 3 734 _TRANSACTION_RECOVERY_SERVERS
16KB End Test 3 1231 _TRUNCATE_OPTIMIZATION_ENABLED
16KB End Test 3 1252 _TSM_CONNECT_STRING
16KB End Test 3 1253 _TSM_DISABLE_AUTO_CLEANUP
16KB End Test 3 638 _TTS_ALLOW_CHARSET_MISMATCH
16KB End Test 3 466 _TWO_PASS
16KB End Test 3 1123 _TWO_PASS_REVERSE_POLISH_ENABLED
16KB End Test 3 93 _UGA_CGA_LARGE_EXTENT_SIZE
16KB End Test 3 23 _ULTRAFAST_LATCH_STATISTICS
16KB End Test 3 730 _UNDO_AUTOTUNE
16KB End Test 3 724 _UNDO_DEBUG_MODE
16KB End Test 3 739 _UNDO_DEBUG_USAGE
16KB End Test 3 717 UNDO_MANAGEMENT
16KB End Test 3 731 UNDO_RETENTION
16KB End Test 3 718 UNDO_TABLESPACE
16KB End Test 3 1105 _UNION_REWRITE_FOR_GS
16KB End Test 3 953 _UNNEST_SUBQUERY
16KB End Test 3 633 _UNUSED_BLOCK_COMPRESSION
16KB End Test 3 893 USER_DUMP_DEST
16KB End Test 3 1054 _USE_COLUMN_STATS_FOR_FUNCTION
16KB End Test 3 73 USE_INDIRECT_DATA_BUFFERS
16KB End Test 3 74 _USE_ISM
16KB End Test 3 95 _USE_ISM_FOR_PGA
16KB End Test 3 1046 _USE_NOSEGMENT_INDEXES
16KB End Test 3 91 _USE_REALFREE_HEAP
16KB End Test 3 749 _USE_SEQ_PROCESS_CACHE
16KB End Test 3 13 _USE_VECTOR_POST
16KB End Test 3 825 UTL_FILE_DIR
16KB End Test 3 661 _VALIDATE_FLASHBACK_DATABASE
16KB End Test 3 897 _VENDOR_LIB_LOC
16KB End Test 3 663 _VERIFY_FLASHBACK_REDO
16KB End Test 3 725 _VERIFY_UNDO_QUOTA
16KB End Test 3 1216 _VERY_LARGE_PARTITIONED_TABLE
16KB End Test 3 423 _WAIT_FOR_SYNC
16KB End Test 3 747 _WALK_INSERT_THRESHOLD
16KB End Test 3 60 _WATCHPOINT_ON
16KB End Test 3 1230 _WINDOWFUNC_OPTIMIZATION_SETTINGS
16KB End Test 3 1080 WORKAREA_SIZE_POLICY
16KB End Test 3 430 _WRITE_CLONES
16KB End Test 3 1234 _XPL_PEEKED_BINDS_LOG_SIZE
16KB End Test 3 1218 _XPL_TRACE
16KB End Test 3 1336 _XSOLAPI_AUTO_MATERIALIZATION_BOUND
16KB End Test 3 1335 _XSOLAPI_AUTO_MATERIALIZATION_TYPE
16KB End Test 3 1332 _XSOLAPI_DEBUG_OUTPUT
16KB End Test 3 1325 _XSOLAPI_DENSIFY_CUBES
16KB End Test 3 1315 _XSOLAPI_DIMENSION_GROUP_CREATION
16KB End Test 3 1314 _XSOLAPI_FETCH_TYPE
16KB End Test 3 1352 _XSOLAPI_GENERATE_WITH_CLAUSE
16KB End Test 3 1345 _XSOLAPI_HIERARCHY_VALUE_TYPE
16KB End Test 3 1334 _XSOLAPI_LOAD_AT_PROCESS_START
16KB End Test 3 1337 _XSOLAPI_MATERIALIZATION_ROWCACHE_MIN_ROWS_FOR_USE
16KB End Test 3 1333 _XSOLAPI_MATERIALIZE_SOURCES
16KB End Test 3 1339 _XSOLAPI_METADATA_READER_MODE
16KB End Test 3 1340 _XSOLAPI_ODBO_MODE
16KB End Test 3 1351 _XSOLAPI_OPTIMIZE_SUPPRESSION
16KB End Test 3 1350 _XSOLAPI_PRECOMPUTE_SUBQUERY
16KB End Test 3 1349 _XSOLAPI_REMOVE_COLUMNS_FOR_MATERIALIZATION
16KB End Test 3 1341 _XSOLAPI_SET_NLS
16KB End Test 3 1338 _XSOLAPI_SOURCE_TRACE
16KB End Test 3 1324 _XSOLAPI_SQL_ALL_MULTI_JOIN_NON_BASE_HINTS
16KB End Test 3 1323 _XSOLAPI_SQL_ALL_NON_BASE_HINTS
16KB End Test 3 1317 _XSOLAPI_SQL_AUTO_DIMENSION_HINTS
16KB End Test 3 1316 _XSOLAPI_SQL_AUTO_MEASURE_HINTS
16KB End Test 3 1320 _XSOLAPI_SQL_DIMENSION_HINTS
16KB End Test 3 1353 _XSOLAPI_SQL_ENABLE_AW_JOIN
16KB End Test 3 1354 _XSOLAPI_SQL_ENABLE_AW_QDR_MERGE
16KB End Test 3 1318 _XSOLAPI_SQL_HINTS
16KB End Test 3 1319 _XSOLAPI_SQL_MEASURE_HINTS
16KB End Test 3 1326 _XSOLAPI_SQL_OPTIMIZE
16KB End Test 3 1330 _XSOLAPI_SQL_PREPARE_STMT_CACHE_SIZE
16KB End Test 3 1327 _XSOLAPI_SQL_REMOVE_COLUMNS
16KB End Test 3 1331 _XSOLAPI_SQL_RESULT_SET_CACHE_SIZE
16KB End Test 3 1328 _XSOLAPI_SQL_SYMMETRIC_PREDICATE
16KB End Test 3 1322 _XSOLAPI_SQL_TOP_DIMENSION_HINTS
16KB End Test 3 1321 _XSOLAPI_SQL_TOP_MEASURE_HINTS
16KB End Test 3 1329 _XSOLAPI_SQL_USE_BIND_VARIABLES
16KB End Test 3 1342 _XSOLAPI_STRINGIFY_ORDER_LEVELS
16KB End Test 3 1344 _XSOLAPI_SUPPRESSION_AW_MASK_THRESHOLD
16KB End Test 3 1343 _XSOLAPI_SUPPRESSION_CHUNK_SIZE
16KB End Test 3 1346 _XSOLAPI_USE_MODELS
16KB End Test 3 1347 _XSOLAPI_USE_OLAP_DML
16KB End Test 3 1348 _XSOLAPI_USE_OLAP_DML_FOR_RANK
16KB End Test 3 978 _XTBUFFER_SIZE
16KB End Test 3 639 _XTTS_ALLOW_PRE10
16KB End Test 3 640 _XTTS_SET_PLATFORM_INFO
16KB End Test 3 853 _XT_COVERAGE
16KB End Test 3 852 _XT_TRACE
16KB End Test 3 194 _YIELD_CHECK_INTERVAL
Value Type Is Default Can be ModCan be ModModified Adjusted Oracle's Description
67194879 3 1 1 IMMEDIAT 0 0 bitvec to specify dumps prior to 4031 error
300 3 1 1 IMMEDIAT 0 0 Dump 4031 error once for each n-second int
100 3 1 1 IMMEDIAT 0 0 Maximum number of 4031 dumps for this pro
3600 3 1 1 IMMEDIAT 0 0 Dump 4031 SGA heapdump error once for e
10 3 1 1 IMMEDIAT 0 0 Maximum number of SGA heapdumps
0 1 1 0 IMMEDIAT 0 0 if TRUE, abort recovery on join reconfigurati
2 1 0 IMMEDIAT 0 0 List of parameters for rolling operation
3 1 0 0 0 0 number of active instances in the cluster dat
1 1 1 0 0 0 0 if TRUE optimize dlm reconfiguration for acti
1 1 1 0 0 0 0 Adaptive Direct Read
1 1 1 1 IMMEDIAT 0 0 enable/disable adaptive fetch in parallel grou
1 1 1 0 IMMEDIAT 0 0 governs whether ADDM gets run automatica
2 1 0 IMMEDIAT 0 0 comma-separated list of ADDM nodes to ski
1 1 1 0 IMMEDIAT 0 0 governs whether ADDM checks the input AW
1 1 1 1 IMMEDIAT 0 0 add stale mv to dependency list
0 1 1 1 IMMEDIAT 0 0 If TRUE, we will adjust the SQL/PLUS outpu
1 1 1 0 0 0 0 enable/disable affinity at run time
100 3 1 0 0 0 0 Number of aiowait timeouts before error is re
604800 3 1 0 0 0 0 seconds before an alert message is moved t
1 3 1 0 IMMEDIAT 0 0 Enable Alert Message Cleanup
1 3 1 0 IMMEDIAT 0 0 Enable Alert Message Purge
1 3 1 0 IMMEDIAT 0 0 Enable Background Alert Posting
0 1 1 0 0 0 0 should files be examined in creation order du
3 3 1 1 0 0 0 interval at which successful search in L1 sho
1 1 1 1 IMMEDIAT 0 0 allow for commutativity of +, * when compari
0 1 1 0 0 0 0 Allow error simulation for testing
0 1 1 1 IMMEDIAT 0 0 allow level without connect by
0 1 1 0 IMMEDIAT 0 0 allow read-only open even if database is cor
0 1 1 0 0 0 0 allow resetlogs even if it will cause corruption
0 1 1 0 0 0 0 Finish terminal recovery even if it may cause
2 1 0 0 0 0 treat all dblinks as shared
1 1 1 1 IMMEDIAT 0 0 enable alternate index-organized table leaf-b
CHOOSE 2 1 1 IMMEDIAT 0 0 always use this method for anti-join when po
CHOOSE 2 1 1 IMMEDIAT 0 0 always use this method for semi-join when p
0 1 1 1 IMMEDIAT 0 0 always favor use of star transformation
0 1 1 0 0 0 0 enable app ctx versioning
1 3 0 0 IMMEDIAT 0 0 number of AQ Time Managers to start
0 3 1 0 IMMEDIAT 0 0 scan limit for Time Managers to clean up IOT
0 3 1 0 IMMEDIAT 0 0 Maximum number of seconds of redos the s
0 3 1 0 0 0 0 ARCH I/O slaves
0 1 1 1 IMMEDIAT 0 0 Enable array update vector read
10 3 1 0 IMMEDIAT 0 0 Ratio of the number of in-memory samples t
1 1 1 0 IMMEDIAT 0 0 To enable or disable Active Session History
0 3 1 0 IMMEDIAT 0 0 Oracle internal dummy ASH parameter used
66 3 1 0 IMMEDIAT 0 0 The percentage above which if the in-memo
1 1 1 0 IMMEDIAT 0 0 To enable or disable Active Session samplin
0 1 1 0 IMMEDIAT 0 0 To enable or disable sampling every connec
1000 3 1 0 0 0 0 Time interval between two successive Active
1048618 6 1 0 IMMEDIAT 0 0 To set the size of the in-memory Active Sess
0 3 1 0 0 0 0 Osmlib test event
asm 2 1 0 0 0 0 ASM instance id
1 3 1 0 0 0 0 initial ACD chunks created
1 1 1 0 0 0 0 Discovery only raw devices
0 1 1 0 0 0 0 Enable disk resilvering for external redundan
1048576 3 1 0 0 0 0 allocation unit size
4096 3 1 0 0 0 0 metadata block size
2 1 0 IMMEDIAT 0 0 disk groups to mount automatically
2 1 0 IMMEDIAT 0 0 disk set locations for discovery
14400 3 1 1 IMMEDIAT 0 0 seconds to wait before dropping a failing dis
60 3 1 0 0 0 0 timeout before offlined disks get dropped (in
10000 3 1 0 0 0 0 max number of concurrent disks to emulate
0 3 1 0 0 0 0 timeout before emulation begins (in 3s ticks)
0 3 1 0 0 0 0 KFDP event
ufs 2 1 0 0 0 0 library search order for discovery
1048576 3 1 0 0 0 0 Maximum size of individual I/O request
1 3 1 1 IMMEDIAT 0 0 number of processes for disk rebalancing
131072 3 1 1 0 0 0 ASM file stripe size
8 3 1 1 0 0 0 ASM file stripe width
18 3 1 0 IMMEDIAT 0 0 Max/imum time to wait before asmb exits
1 1 1 0 0 0 0 ASSM default
1 1 1 0 IMMEDIAT 0 0 if TRUE, issue recovery claims asynchronou
1 1 1 0 0 0 0 if TRUE, issue recovery reads asynchronous
C:\ORACLE\P 2 1 0 DEFERRE 0 0 Directory in which auditing files are to reside
0 1 1 0 0 0 0 enable sys auditing
NONE 2 1 0 0 0 0 enable system auditing
1 1 1 0 IMMEDIAT 0 0 if TRUE, do not prepare a buffer when the m
0 1 1 0 0 0 0 AWR Corrupt Mode
2 1 0 IMMEDIAT 0 0 Disable flushing of specified AWR tables
0 1 1 0 IMMEDIAT 0 0 Enable/Disable Flushing AWR Workload Me
0 1 1 0 IMMEDIAT 0 0 Enable/Disable Flushing AWR Workload Me
1 1 1 0 IMMEDIAT 0 0 Enable/disable AWR MMON CPU Usage Tra
0 1 1 0 0 0 0 AWR Restrict Mode
200 3 1 0 IMMEDIAT 0 0 Setting for AWR SQL Child Limit
partial 2 0 0 0 0 0 Core Size for Background Processes
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 Detached process dump directory
0 3 1 0 DEFERRE 0 0 BACKUP Disk I/O slaves
1048576 3 1 0 0 0 0 memory to reserve from the large pool
0 3 1 1 IMMEDIAT 0 0 specifies buffer size to be used for kgc comp
0 3 1 1 IMMEDIAT 0 0 specifies number of iterations used for kgc c
0 3 1 1 IMMEDIAT 0 0 specifies compression type used for kgc com
0 3 1 1 IMMEDIAT 0 0 number of the ksfq buffers used for backup/r
0 3 1 1 IMMEDIAT 0 0 size of the ksfq buffer used for backup/restor
4294967294 3 1 1 IMMEDIAT 0 0 largest gap in an incremental/optimized back
0 1 1 0 DEFERRE 0 0 BACKUP Tape I/O slaves
8 3 1 1 IMMEDIAT 0 0 number of bitmaps to store for each datafile
104857600 3 1 1 IMMEDIAT 0 0 maximum size of all change tracking buffer a
1 3 1 1 IMMEDIAT 0 0 mininum number of extents to allocate per b
2097152 3 1 1 IMMEDIAT 0 0 size of one change tracking buffer allocation
0 3 1 1 IMMEDIAT 0 0 change tracking datafile chunk size, in bytes
262144 3 1 0 0 0 0 change tracking reserved crash recovery SG
0 3 1 1 IMMEDIAT 0 0 block size of change tracking file, in bytes
0 3 1 1 IMMEDIAT 0 0 extent size of change tracking file, in bytes
2 1 1 IMMEDIAT 0 0 change tracking file for fixed tables
0 3 1 1 IMMEDIAT 0 0 initial number of entries in the private change
0 3 1 1 IMMEDIAT 0 0 total size of all public change tracking dba bu
1048576 3 1 0 0 0 0 maximum memory allow for BITMAP MERG
1 1 1 1 IMMEDIAT 0 0 controls extensions to partition pruning for ge
0 1 1 0 0 0 0 blank trimming semantics parameter
128 3 1 0 0 0 0 number of consecutive blocks per global cac
1 1 1 1 IMMEDIAT 0 0 change tracking possible
0 3 1 1 IMMEDIAT 0 0 debug level for bloom filtering
1 1 1 1 IMMEDIAT 0 0 enables or disables bloom filter
1 1 1 1 IMMEDIAT 0 0 allow rewrites with multiple MVs and base ta
100 3 1 1 IMMEDIAT 0 0 buffer busy wait time in centiseconds
2 1 0 0 0 0 Number of database blocks/latches in keep b
2 1 0 0 0 0 Number of database blocks/latches in recycl
0 3 1 0 IMMEDIAT 0 0 flow control threshold value
0 3 1 0 IMMEDIAT 0 0 maximum size of the message allowed in me
0 1 1 0 IMMEDIAT 0 0 Stop enforcing flow control for buffered queu
0 1 1 1 IMMEDIAT 0 0 DEFERRED MV creation skipping MV log se
0 3 1 1 0 0 0 how many blocks should we allocate per free
1 1 1 0 IMMEDIAT 0 0 if TRUE, generate a BWR for a flushed PI
1 1 1 1 IMMEDIAT 0 0 enable the use of bitmap plans for tables w.
0 1 1 0 IMMEDIAT 0 0 if TRUE, enable cache stats monitoring
120 3 1 0 0 0 0 CGS reconfiguration timeout interval
300 3 1 0 0 0 0 CGS send timeout value
1 1 1 0 IMMEDIAT 0 0 perform block check after checksum if both a
0 3 1 1 IMMEDIAT 0 0 check tablespace thresholds
3 1 0 IMMEDIAT 0 0 max number of circuits
100 3 1 0 0 0 0 no. of undo entries to apply per transaction c
0 1 1 1 0 0 0 close cursors cached by PL/SQL at each com
0 1 0 0 0 0 0 if TRUE startup in cluster database mode
1 3 1 0 0 0 0 number of instances to use for sizing cluster
2 1 0 0 0 0 interconnects for RAC use
clss 2 1 0 0 0 0 cluster library selection
0 1 1 1 IMMEDIAT 0 0 collapse wait history
1 1 1 0 DEFERRE 0 0 Collect Statistics v$undostat
0 3 1 1 0 0 0 Column compression ratio
0 1 1 1 IMMEDIAT 0 0 turn off predicate-only column elimination
1 3 1 1 IMMEDIAT 0 0 column usage tracking
1 3 1 0 0 0 0 Bias this node has toward not preparing in a
2 1 1 IMMEDIAT 0 0 transaction commit log write behaviour
10.2.0.2.0 2 0 0 0 0 0 Database will be completely compatible with
16384 3 1 1 IMMEDIAT 0 0 Size of the compilation call heaps extents
1 1 1 1 IMMEDIAT 0 0 enable complex view merging
0 3 1 0 0 0 0 control file block size in bytes
0 1 1 0 IMMEDIAT 0 0 dump the system states after controlfile enqu
900 3 1 0 0 0 0 control file enqueue timeout in seconds
3 1 0 0 0 0 control file initial section size
3 1 0 0 0 0 control file max expansion rate
OFF 2 1 0 IMMEDIAT 0 0 controlfile update sanity check
C:\ORACLE\O 2 0 0 0 0 0 control file names list
7 3 0 0 IMMEDIAT 0 0 control file record keep time in days
0 1 1 1 IMMEDIAT 0 0 enables conversion of set operator to join
0 3 1 0 0 0 0 parallel recovery coordinator side extra mess
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 Core dump directory
2 1 0 0 0 0 corrupted undo segment list
1 1 1 1 IMMEDIAT 0 0 enables costing of equality semi-join
2 3 1 0 IMMEDIAT 0 0 number of CPUs for this instance
0 3 1 1 IMMEDIAT 0 0 divisor for converting CPU cost to I/O cost
8388608 3 1 0 0 0 0 size of create bitmap buffer for bitmap index
2 1 1 IMMEDIAT 0 0 create stored outlines for DML statements
1 1 1 0 IMMEDIAT 0 0 if TRUE, grant lock for CR requests when blo
AUTO 2 1 0 IMMEDIAT 0 0 turn 3-way CR grants off, make it automatic,
1 1 1 0 IMMEDIAT 0 0 if TRUE, flush redo log before serving a CR
1 1 1 1 IMMEDIAT 0 0 Enable HWM brokered CTAS
400 3 1 0 IMMEDIAT 0 0 maximum size of the cursor bind capture are
900 3 1 0 IMMEDIAT 0 0 interval (in seconds) between two bind captu
0 1 1 0 0 0 0 frame & bind buffer caching
393 3 1 1 DEFERRE 0 0 additional number of buffers a cursor can pin
2 3 1 0 0 0 0 Shared cursor features enabled bits.
1 1 1 1 IMMEDIAT 0 0 enable collection and display of cursor plans
1 3 1 1 IMMEDIAT 0 0 version of cursor plan hash value
1 1 1 1 IMMEDIAT 0 0 enables/disables using unparse to build proj
EXACT 2 0 1 IMMEDIAT 0 0 cursor sharing mode
1 1 0 0 0 0 0 use more memory in order to get faster exec
15 3 1 0 0 0 0 Hash table buckets for cursor stats (2^).
4 3 1 0 0 0 0 Heaps/latches for cursor stats.
0 1 1 0 0 0 0 debug process startup
1 1 1 0 IMMEDIAT 0 0 Enable dbwriter asynchronous writes
0 3 1 0 0 0 0 DBWR I/O slaves
300 3 1 0 IMMEDIAT 0 0 dbwriter scan interval
0 3 1 0 IMMEDIAT 0 0 Enable dbwriter tracing
0 6 1 0 IMMEDIAT 0 0 Size of cache for 16K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 2K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 32K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 4K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 8K buffers
1 3 1 0 0 0 0 Touch count set when buffer cooled
0 1 1 0 0 0 0 Make CR buffers always be too cold to keep
2 3 1 0 0 0 0 Touch count which sends a buffer to head of
0 3 1 0 0 0 0 Touch count set when buffer moved to head
3 3 1 0 0 0 0 Touch count which sends a buffer to head of
1 1 1 0 IMMEDIAT 0 0 Always perform block check and checksum f
1 1 1 0 IMMEDIAT 0 0 adjacent cache buffer checks - low blkchk ov
79445760 3 1 0 IMMEDIAT 0 0 adjacent cache buffer check level
1 1 1 0 0 0 0 Align Direct Reads
83000 3 1 0 0 0 0 Number of database blocks cached in memo
0 3 1 0 0 0 0 Number of database blocks cached in memo
0 1 1 0 0 0 0 Always clone data blocks on get (for debugg
0 3 1 0 0 0 0 buffer header tracing (non-zero only when de
2 3 1 0 0 0 0 buffer header tracing level
0 3 1 0 0 0 0 number of unmapped buffers (for tracking sw
0 2 1 0 0 0 0 protect database blocks (true only when deb
0 3 1 0 0 0 0 protect database blocks (for strictly internal u
0 2 0 1 IMMEDIAT 0 0 header checking and data and index block c
typical 2 0 0 IMMEDIAT 0 0 store checksum in db blocks and check durin
0 1 1 0 IMMEDIAT 0 0 Check more and dump block before image fo
1 1 1 0 IMMEDIAT 0 0 check objd and typ on cache disk read
0 1 1 0 IMMEDIAT 0 0 do full block read even if some blocks are in
262144 3 1 0 0 0 0 Number of database block hash buckets
1024 3 1 0 0 0 0 Number of database block hash latches
0 3 1 0 0 0 0 Fraction of writes for high priority reasons
2 3 1 0 0 0 0 Initial Percentage of buffers to maintain know
8 3 1 0 0 0 0 number of lru latches
6 3 1 0 0 0 0 Maximum Allowed Number of CR buffers pe
40 3 1 0 0 0 0 Percentage of buffers to inspect when lookin
0 3 1 0 0 0 0 Fraction of writes for medium priority reason
1 3 1 0 0 0 0 Number of NUMA nodes
0 3 1 0 IMMEDIAT 0 0 Prefetch limit in blocks
10 3 1 0 IMMEDIAT 0 0 Prefetch quota as a percent of cache size
8192 3 0 0 0 0 0 Size of database block in bytes
4194304 6 1 0 0 0 0 Size of shared table scan read buffer
0 1 1 0 IMMEDIAT 0 0 generate redo for temp blocks
0 1 1 0 IMMEDIAT 0 0 trace buffer protect calls
on 2 0 0 IMMEDIAT 0 0 Buffer cache sizing advisory
128 3 1 0 0 0 0 cache advisory simulation batch size
4 3 1 0 0 0 0 cache advisory sampling factor
0 1 1 0 0 0 0 check for costly crx examination functions
1 1 1 0 0 0 0 Buffer Cache Pre-Warm Enabled : hidden pa
3 1 1 IMMEDIAT 0 0 maximum number of cr pins a process may h
0 6 1 0 IMMEDIAT 0 0 Size of DEFAULT buffer pool for standard bl
696254464 6 0 0 IMMEDIAT 0 0 Actual size of DEFAULT buffer pool for stand
1 1 1 1 IMMEDIAT 0 0 enable db change notification
2 1 1 IMMEDIAT 0 0 default database location
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #1
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #2
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #3
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #4
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #5
world 2 0 0 0 0 0 directory part of global database name store
0 1 1 0 IMMEDIAT 0 0 enable fast object drop sanity check
1 1 1 0 IMMEDIAT 0 0 enable fast object checkpoint
1 1 1 0 IMMEDIAT 0 0 enable fast object truncate
200 3 0 0 0 0 0 max allowable # db files
1048576 3 1 0 DEFERRE 0 0 Sequential I/O buf size
128 3 1 1 IMMEDIAT 0 0 multiblock read count for regular clients
4 3 1 0 IMMEDIAT 0 0 Block formatting I/O buf count
128 3 1 1 IMMEDIAT 0 0 db block to be read each IO
2 1 1 0 0 0 datafile name convert patterns and strings fo
11 3 1 0 0 0 0 number of noncontiguous db blocks to be pr
8 3 1 1 IMMEDIAT 0 0 multiblock read count for regular clients
1440 3 0 0 IMMEDIAT 0 0 Maximum Flashback Database log retention
1050 3 1 0 0 0 0 System-wide simultaneous buffer operations
5 3 1 0 0 0 0 Buffer handles cached each process
0 1 1 1 IMMEDIAT 0 0 track hot blocks for hash latch contention
1 1 1 1 IMMEDIAT 0 0 index block checking override parameter
0 6 1 0 IMMEDIAT 0 0 Size of KEEP buffer pool for standard block
25 3 1 0 0 0 0 Number of buffers which force dirty queue to
0 1 1 0 0 0 0 Enable scn based lost write detection mecha
OFF 2 1 0 IMMEDIAT 0 0 MTTR advisory
0 3 1 0 0 0 0 number of partitions for MTTR advisory
64 3 1 0 0 0 0 MTTR simulation sampling factor
2 1 0 IMMEDIAT 0 0 MTTR simulation targets
256 3 1 0 0 0 0 MTTR simulation trace size
0 1 1 0 0 0 0 dump trace entries to alert file
test16 2 0 0 0 0 0 database name specified in CREATE DATA
0 1 1 0 0 0 0 fast object checkpoint ordered by lrba
1 1 1 0 0 0 0 enable ksr in object checkpoint/reuse
50 3 1 0 0 0 0 Percent of default buffer pool considered hot
0 3 1 0 0 0 0 Percent of keep buffer pool considered hot
0 3 1 0 0 0 0 Percent of recycle buffer pool considered ho
2 3 1 0 0 0 0 size of cache created per cpu in deferred ca
C:\oracle\fla 2 0 0 IMMEDIAT 0 0 default database recovery file location
1.468E+10 6 0 0 IMMEDIAT 0 0 database recovery files size limit
2 1 0 IMMEDIAT 0 0 default database recovery temporal file locat
0 6 1 0 IMMEDIAT 0 0 Size of RECYCLE buffer pool for standard b
1 1 1 1 IMMEDIAT 0 0 row overlap checking override parameter for
1 1 1 0 0 0 0 buffer cache deferred create
test16 2 0 0 0 0 0 Database Unique Name
0 3 1 0 0 0 0 Number of writes DBWR should wait for
1048576 6 1 0 0 0 0 Size of memory allocated to dbwriter for coa
131072 3 1 0 IMMEDIAT 0 0 Limit on size of coalesced write
1 1 1 0 0 0 0 If FALSE, DBWR will not downgrade IMU txn
0 1 1 0 0 0 0 maintain dbwr histogram statistics in x$kcbb
0 3 1 0 0 0 0 Max number of outstanding DB Writer IOs
1 3 0 0 0 0 0 number of background database writer proc
0 1 1 0 0 0 0 Enable lost write detection mechanism
0 1 1 1 IMMEDIAT 0 0 Disable NOWAIT DML lock acquisitions
10 3 1 0 IMMEDIAT 0 0 PMON dead process scan interval
0 1 1 1 IMMEDIAT 0 0 wait for debug
10 3 1 0 0 0 0 dedicated server poll count
0 1 1 0 0 0 0 dedicated server post/wait
0 1 1 0 0 0 0 dedicated server post/wait call
0 3 1 0 0 0 0 default encryption algorithm
1 1 1 1 IMMEDIAT 0 0 sanity check on default selectivity for like/ran
1 1 1 1 0 0 0 delays index maintenance until after MV is re
C:\ORACLE\P 2 1 0 IMMEDIAT 0 0 data guard broker configuration file #1
C:\ORACLE\P 2 1 0 IMMEDIAT 0 0 data guard broker configuration file #2
test16_XPT 2 1 0 IMMEDIAT 0 0 service names for broker use
0 1 1 0 IMMEDIAT 0 0 start Data Guard broker framework (DMON p
1 1 1 0 0 0 0 start DIAG daemon
1 1 1 1 IMMEDIAT 0 0 Turn off diag diagnostics
1 1 1 1 IMMEDIAT 0 0 control dimension skip when null feature
0 1 1 1 IMMEDIAT 0 0 adaptive shrunk aggregation
0 1 1 1 IMMEDIAT 0 0 disable datalayer sampling
0 1 1 1 IMMEDIAT 0 0 Turn off connection duplexing
0 1 1 1 IMMEDIAT 0 0 fast aggregation
0 1 1 0 0 0 0 disable file locks for control, data, redo log fi
0 1 1 1 IMMEDIAT 0 0 disable function-based index matching
0 1 1 0 0 0 0 Disable Health Check
0 1 1 0 IMMEDIAT 0 0 Disable Oracle executable image checking
0 1 1 0 IMMEDIAT 0 0 Disable incremental checkpoints for thread r
0 1 1 0 IMMEDIAT 0 0 Disable incremental recovery checkpoint me
0 1 1 0 0 0 0 disable instance type check for ksp
0 1 1 0 0 0 0 disable interface checking at startup
0 1 1 0 IMMEDIAT 0 0 disable kcbh(c)xor OSD functionality
0 1 1 0 0 0 0 disable latch-free SCN writes using 32-bit co
0 1 1 0 0 0 0 disable latch-free SCN writes using 64-bit co
0 1 1 0 IMMEDIAT 0 0 Disable logging
0 1 1 0 0 0 0 disable multiple block size support (for debu
0 1 1 0 0 0 0 Disable logging to NT event log
0 1 1 0 0 0 0 disable odm feature
0 1 1 1 IMMEDIAT 0 0 Disable the new recoverable recovery mech
0 1 1 0 IMMEDIAT 0 0 Disable the read optimization during media r
0 1 1 1 IMMEDIAT 0 0 disable row sampling IO optimization
0 1 1 0 0 0 0 disable the fix for bug 1402161
0 1 1 0 IMMEDIAT 0 0 Disable self-tune checkpointing
0 1 1 0 IMMEDIAT 0 0 disable streams pool auto tuning
4294967294 3 1 0 IMMEDIAT 0 0 disable system state dump
0 3 1 0 IMMEDIAT 0 0 disable txn layer alert
0 1 1 0 0 0 0 enable OLTP mode
1 1 1 0 0 0 0 Use asynch I/O for random access devices
2 1 0 IMMEDIAT 0 0 specifications of dispatchers
2 1 0 0 0 0 scale to display rate statistic (100ths of a sec
2 1 0 0 0 0 time-to-live for rate statistic (100ths of a seco
0 1 1 1 IMMEDIAT 0 0 enables unnesting of in subquery into distinc
60 3 1 0 0 0 0 number of seconds a distributed transaction
200 3 1 0 0 0 0 number of seconds RECO holds outbound c
2 1 0 0 0 0 Trace string of global enqueue type(s)
30000 3 1 0 0 0 0 DLM send timeout value
1036 3 1 0 0 0 0 dml locks - one for each table modified in a t
1 1 1 0 IMMEDIAT 0 0 enable modification monitoring
1 3 1 1 IMMEDIAT 0 0 max percentage of the shared pool to use fo
2000 3 1 0 0 0 0 maximum number of rows from one call to do
200 3 1 0 0 0 0 maximum number of rows for one call to dom
256 3 1 1 IMMEDIAT 0 0 drop_table_granule
1 1 1 1 IMMEDIAT 0 0 reduce SGA memory use during drop of a pa
0 1 1 0 IMMEDIAT 0 0 start DG Broker monitor (DMON process)
0 1 1 0 IMMEDIAT 0 0 enable full cache flush for parallel execution
6553664 3 1 1 IMMEDIAT 0 0 Dynamic Sampling Service defaults: #IOs an
131072 3 1 1 IMMEDIAT 0 0 size of Decision Tree Classification work are
1 1 1 1 IMMEDIAT 0 0 Decision Tree Binning Enabled
0 3 1 1 IMMEDIAT 0 0 Decision Tree Binning Test ID
1 1 1 1 IMMEDIAT 0 0 Decision Tree Using Compressed Bitmaps E
1 3 1 1 IMMEDIAT 0 0 maximum number of surrogates
1 1 1 1 IMMEDIAT 0 0 Decision Tree Pruning Enabled
0 1 1 0 0 0 0 dummy instance started by RMAN
0 1 1 1 IMMEDIAT 0 0 dump common subexpressions
0 1 1 1 IMMEDIAT 0 0 dump connect by loop error message into trc
0 1 1 1 0 0 0 dump comp/exec heap sizes to tryace file
120 3 1 0 0 0 0 trace dump time interval limit (in seconds)
5 3 1 0 0 0 0 max number of dump within dump interval
0 3 1 1 0 0 0 dump top level query parse tree to trace
1 1 1 0 IMMEDIAT 0 0 if TRUE enables IPC dump at instance evict
local 2 1 0 0 0 0 scope of sysstate dump during instance term
global 2 1 0 0 0 0 scope of trace dump during a process crash
1 1 1 0 0 0 0 rls policies are dynamic
30 3 1 0 0 0 0 delay threshold (in seconds) between sendin
1 1 1 1 IMMEDIAT 0 0 enables elimination of common sub-express
1 1 1 0 DEFERRE 0 0 enable block level recovery
0 1 1 0 0 0 0 enable commit SCN caching for all transactio
0 3 1 0 0 0 0 to enable default implementation of affinity o
1 1 1 1 IMMEDIAT 0 0 enable dml lock escalation against partitione
1 1 1 1 IMMEDIAT 0 0 use check constraints on the table for valida
0 1 1 1 0 0 0 enable fast refresh after move tablespace
0 1 1 1 IMMEDIAT 0 0 TRUE - enable hash cluster overflow based
1 1 1 0 IMMEDIAT 0 0 enable HWM synchronization
0 1 1 0 0 0 0 Enable List I/O
0 1 1 0 0 0 0 Enable skgxp driver usage for native net
1 1 1 0 0 0 0 Enable NUMA specific optimizations
1 1 1 1 IMMEDIAT 0 0 enable or disable MV refresh scheduling (rev
1 1 1 0 IMMEDIAT 0 0 Enable reliable latch waits
1 1 1 0 IMMEDIAT 0 0 enable RLB metrics processing
0 1 1 1 IMMEDIAT 0 0 use the row shipping optimization for wide ta
0 1 1 0 0 0 0 temporary to disable/enable kgh policy
1 1 1 0 IMMEDIAT 0 0 enable tablespace alerts
1 1 1 1 IMMEDIAT 0 0 enable type dependent selectivity estimates
0 1 1 0 0 0 0 debug enqueue multi instance
507 3 1 0 0 0 0 enqueue hash table length
2 3 1 0 0 0 0 enqueue hash chain latches
3000 3 1 0 0 0 0 locks for managed enqueues
1256 3 1 0 0 0 0 resources for enqueues
2 1 0 0 0 0 debug event control - default null string
1 1 1 1 IMMEDIAT 0 0 expand aggregates
0 1 1 1 IMMEDIAT 0 0 allow additional messages to be generated d
1 1 1 1 IMMEDIAT 0 0 do runtime pruning in iterator if set to TRUE
4 3 1 0 IMMEDIAT 0 0 number of times to CR serve before downgra
0 1 1 0 0 0 0 if TRUE enables fair remote convert
2 1 0 IMMEDIAT 0 0 FAL client
2 1 0 IMMEDIAT 0 0 FAL server list
1 1 1 1 IMMEDIAT 0 0 enable/disable fast dual
1 1 1 1 IMMEDIAT 0 0 enable/disable index fast full scan
0 3 1 0 IMMEDIAT 0 0 cluster availability target time in RAC environ
0 3 1 0 IMMEDIAT 0 0 Upper bound on recovery reads
0 3 1 0 IMMEDIAT 0 0 MTTR target of forward crash recovery in se
LOW 2 1 0 IMMEDIAT 0 0 max number of parallel recovery slaves that
automatic 2 1 1 0 0 0 Set Frequent Itemset Counting Algorithm
131072 3 1 1 IMMEDIAT 0 0 size of Frequent Itemset Counting work area
20 3 1 1 DEFERRE 0 0 Frequent Itemset Counting Maximum Itemse
1024 3 1 1 DEFERRE 0 0 Frequent Itemset Counting Minimum BITMA
0 1 1 1 DEFERRE 0 0 Frequent Itemset Counting Out Of Memory C
2 1 1 IMMEDIAT 0 0 fifth spare parameter - string
2 1 0 0 0 0 Network Adapters for File I/O
2 1 0 0 0 0 FILEMAP directory
2 1 0 0 0 0 IO operations on filesystem files
0 1 1 0 IMMEDIAT 0 0 enable file mapping
3 1 1 IMMEDIAT 0 0 first spare parameter - integer
2 1 0 IMMEDIAT 0 0 fixed SYSDATE value
2 1 1 IMMEDIAT 0 0 bug fix control parameter
0 1 1 0 IMMEDIAT 0 0 Allow enabling flashback on noarchivelog da
1800 3 1 0 0 0 0 Flashback barrier interval in seconds
10 3 1 0 0 0 0 Number of flashback copy latches
1 1 1 0 IMMEDIAT 0 0 Use flashback fuzzy barrier
8388608 3 1 0 0 0 0 flashback generation buffer size
20 3 1 0 0 0 0 Flashback hint barrier percent
600 3 1 0 0 0 0 flashback logfile enqueue timeout for opens
0 3 1 0 IMMEDIAT 0 0 Specify Flashback log I/O error behavior
100 3 1 0 0 0 0 Minimum flashback log size
1000 3 1 0 0 0 0 Flashback log size
0 6 1 0 IMMEDIAT 0 0 Maximum flashback log size in bytes (OS lim
2048 3 1 0 0 0 0 Maximum number of flashback logs per flash
128 3 1 0 0 0 0 Desired number of flashback logs per flashb
1800 3 1 0 0 0 0 Flashback standby barrier interval in second
0 1 1 0 IMMEDIAT 0 0 Print verbose information about flashback da
4 3 1 0 IMMEDIAT 0 0 Desired flashback write size in quarter MB
0 1 1 1 IMMEDIAT 0 0 force use of trunc for datefolding rewrite
0 1 1 1 IMMEDIAT 0 0 control new query rewrite features
0 1 1 1 IMMEDIAT 0 0 executes concatenation of rollups using tem
2 1 1 IMMEDIAT 0 0 fourth spare parameter - string
1 1 1 1 IMMEDIAT 0 0 enable full partition-wise join when TRUE
1 1 1 1 IMMEDIAT 0 0 enable group-by and aggregation using hash
1 1 1 1 DEFERRE 0 0 enable use of one comparison of all group b
1 1 1 0 0 0 0 if TRUE, enable fast reconfiguration for gcs l
0 3 1 0 0 0 0 number of gcs resource hash latches to be a
1 1 1 0 IMMEDIAT 0 0 if TRUE, process gcs requests during instan
3 1 0 0 0 0 number of gcs resources to be allocated
0 3 1 0 0 0 0 number of background gcs server processes
3 1 0 0 0 0 number of pcm shadow locks to be allocated
50 3 1 0 IMMEDIAT 0 0 dynamic affinity limit
1200 3 1 0 IMMEDIAT 0 0 dynamic affinity minimum activity per minute
10 3 1 0 0 0 0 if non zero, enable dynamic object affinity
0 1 1 0 0 0 0 if TRUE, use async memcpy
1 1 1 0 IMMEDIAT 0 0 if TRUE, check for stale blocks
1 1 1 0 IMMEDIAT 0 0 if TRUE, coalesce recovery reads
3 3 1 0 IMMEDIAT 0 0 how long to defer down converts for hot buff
1 1 1 0 0 0 0 if TRUE, get dynamic affinity locks
103 3 1 0 0 0 0 global cache element percent
2 1 0 0 0 0 mapping between file numbers and global ca
AUTO 2 1 0 IMMEDIAT 0 0 turn global lru off, make it automatic, or turn
1 3 1 0 0 0 0 set the integrity check level
1 1 1 0 0 0 0 if TRUE, make recovery buffers current
8 3 1 0 0 0 0 number of latches per LMS process
0 3 1 0 0 0 0 maximum number of bids which can be prep
1 1 1 0 IMMEDIAT 0 0 if TRUE, kcl statistics are maintained
1 1 1 0 0 0 0 if TRUE, enable dynamic undo affinity
1 1 1 0 0 0 0 if TRUE, get affinity locks for undo
1 1 1 0 0 0 0 if TRUE, allow CR pins on PI and WRITING
1 1 1 0 0 0 0 if TRUE, vector read current buffers
1 1 1 1 IMMEDIAT 0 0 controls extensions to partition pruning for ge
1 3 1 0 IMMEDIAT 0 0 if 1 or higher enables GES deadlock detectio
1 1 1 0 IMMEDIAT 0 0 if TRUE enables GES diagnostics
1 3 1 0 IMMEDIAT 0 0 if greater than 0 enables GES system health
1 1 1 1 IMMEDIAT 0 0 enables filter for global index with partition e
2 1 0 0 0 0 Global Application Context Pool Size in Byte
0 1 0 1 IMMEDIAT 0 0 enforce that database links have same name
3 3 1 1 IMMEDIAT 0 0 groupby nopushdown cut ratio
5000 3 1 1 IMMEDIAT 0 0 groupby/orderby don't combine threshold
1 1 1 1 IMMEDIAT 0 0 enable anti/semi join for the GS query
3 3 1 0 IMMEDIAT 0 0 hang analysis num call stacks
0 3 1 0 0 0 0 Hang Management detection interval
0 1 1 0 0 0 0 if TRUE enable H.A.R.D specific format chan
131072 3 1 1 0 0 0 size of in-memory hash work area
1 1 1 1 0 0 0 enable/disable hash join
0 3 1 1 IMMEDIAT 0 0 number of blocks hash join will read/write at
0 3 1 0 IMMEDIAT 0 0 high server thresholds
0 3 1 0 0 0 0 SGA starting address (high order 32-bits on
50 3 1 1 0 0 0 hash-join bit filtering threshold (0 always ena
1 1 1 0 IMMEDIAT 0 0 enable automatic server DD updates in HS a
10 3 1 1 IMMEDIAT 0 0 HWM synchronization threshold in percentag
1 1 1 0 0 0 0 enable conventional index maintenance for i
100000000 3 1 1 IMMEDIAT 0 0 proportionality constant for dop vs. rows in in
4 1 0 0 0 0 include file in init.ora
0 1 1 0 IMMEDIAT 0 0 ignore DESC in indexes, sort those columns
1 1 1 0 IMMEDIAT 0 0 if TRUE, propagate commit SCN immediatel
1 1 1 1 IMMEDIAT 0 0 improved outer-join cardinality calculation
1 1 1 1 IMMEDIAT 0 0 enable the improvements for computing the
1 1 1 0 0 0 0 Activate Instance Membership Recovery fea
3 3 1 0 0 0 0 Maximum wait for IMR disk voting (seconds)
300 3 1 0 0 0 0 Maximum Reconfiguration delay (seconds)
600 3 1 0 0 0 0 Maximum wait for split-brain resolution (seco
3 3 1 0 0 0 0 in memory undo pools
30 3 1 0 IMMEDIAT 0 0 Minimum number of writes for incremental re
1 1 1 1 IMMEDIAT 0 0 enable the use of index joins
100 3 1 1 IMMEDIAT 0 0 index prefetching factor
10 3 1 0 IMMEDIAT 0 0 number of granules to process for deferred c
%ORACLE_HO 2 1 0 0 0 0 File containing SQL statements to execute u
0 3 1 0 0 0 0 inject fault in the startup code
1 1 1 0 IMMEDIAT 0 0 during parallel inserts high water marks are b
2 1 0 0 0 0 list of instance group names
test16 2 0 0 0 0 0 instance name supported by the instance
0 3 1 0 0 0 0 instance number
RDBMS 2 1 0 0 0 0 type of instance to be executed
5 3 1 1 0 0 0 period an instance can retain a newly acquir
1 1 1 0 0 0 0 if TRUE, checksum interconnect blocks
1 1 1 1 IMMEDIAT 0 0 Enable intra-partition updates/deletes
1 1 1 1 IMMEDIAT 0 0 Enable intra-partition updates/deletes with ra
1 1 1 1 IMMEDIAT 0 0 Make in memory undo for top level transactio
0 3 1 0 0 0 0 inject fault in the ior serialize code
1 3 1 0 DEFERRE 0 0 Per attempt IOs picked
500 3 1 0 DEFERRE 0 0 IOs issued before completion check
4194304 6 1 0 0 0 0 Size of I/O buffer pool from SGA
0 1 1 0 0 0 0 Do not use I/O slaves
0 3 1 0 0 0 0 max allowed size in bytes of a Java sessions
8388608 6 0 0 IMMEDIAT 0 0 Actual size in bytes of java pool
8388608 6 0 0 IMMEDIAT 0 0 size in bytes of java pool
0 3 1 0 0 0 0 warning limit on size in bytes of a Java sessi
5 3 1 0 0 0 0 Wakeup interval in seconds for job queue co
10 3 0 0 IMMEDIAT 0 0 number of job queue slave processes
1 1 1 0 IMMEDIAT 0 0 if TRUE, call kjbcommit
0 1 1 0 IMMEDIAT 0 0 if TRUE, conservatively log flush before CR
1 1 1 0 0 0 0 if TRUE, record le history
1 1 1 0 IMMEDIAT 0 0 if TRUE, reject pings on blocks in middle of a
32 3 1 0 0 0 0 grouping for undo block locks
128 3 1 0 0 0 0 number of locks per undo segment
0 1 1 0 IMMEDIAT 0 0 allocate dbas after populating data buffers
0 1 1 0 0 0 0 remote column size does not get modified
0 1 1 0 0 0 0 kernel message network driver
1024 3 1 0 0 0 0 size of kffmap_hash table
2048 3 1 0 0 0 0 size of kffmop_hash table
1 3 1 0 0 0 0 max kghdsidx count
5 3 1 0 0 0 0 max percentage of shared pool size to be us
9 3 1 0 0 0 0 index to the bucket count array
1 1 1 0 0 0 0 fixed extent size for library cache memory al
0 1 1 0 0 0 0 whether KGL hash collision is possible
1024 3 1 0 0 0 0 extent size for library cache heap 0
30 3 1 0 0 0 0 KGL keep cache minimum threshold
20 3 1 0 0 0 0 KGL keep cache retain threshold
52428800 3 1 0 0 0 0 maximum heap size before KGL writes warn
0 3 1 0 0 0 0 number of library cache latches
1 1 1 0 0 0 0 whether KGL to support multi-instance invali
1 1 1 0 0 0 0 whether KGL to support multi-instance locks
1 1 1 0 0 0 0 whether KGL to support multi-instance pins
10 3 1 0 0 0 0 maximum length of the KGL object cache lru
15 3 1 0 0 0 0 time to wait for locks and pins before timing
512 3 1 0 0 0 0 # of mutex latches if CAS is not supported.
1 1 1 0 IMMEDIAT 0 0 enable killing controlfile enqueue blocker on
1 3 1 0 0 0 0 if greater than 0 enables killing enqueue bloc
0 1 1 0 IMMEDIAT 0 0 Kill Java threads and do sessionspace migra
0 1 1 1 0 0 0 trace expression substitution
1 1 1 0 0 0 0 Turning on this will make KKS use mutex for
0 1 1 1 0 0 0 allow kolf to use slffopen
0 3 1 1 0 0 0 tracing level for library cache subheap level
30000 3 1 1 IMMEDIAT 0 0 default timeout for internal oradebug comma
0 3 1 0 0 0 0 ksdxw context initialization flag
1000 3 1 0 0 0 0 ksdxw number of buffers in buffered mode
10 3 1 0 0 0 0 number of watchpoints on a per-process bas
10 3 1 0 0 0 0 number of watchpoints to be shared by all pr
4 3 1 0 0 0 0 number of PCs to collect in the stack when w
999 3 1 1 DEFERRE 0 0 KSD test parmeter
60000 3 1 0 IMMEDIAT 0 0 amount of time a dying process is spared by
256 3 1 0 IMMEDIAT 0 0 kse pc table cache size
0 1 1 0 0 0 0 verify asynchronous writes issued through ks
2 1 0 0 0 0 KSI trace string of lock type(s)
1 3 1 0 0 0 0 granule locking status
8388608 3 1 0 0 0 0 granule size in bytes
3 1 0 0 0 0 timeout action interval in minutes
5 3 1 0 0 0 0 repeat count for acquisition of locks
0 1 1 0 IMMEDIAT 0 0 delay inst. termination to allow processes to
5 3 1 0 IMMEDIAT 0 0 number of seconds ksuitm waits before killin
OFF 2 1 1 IMMEDIAT 0 0 set to OFF to disable automatic slowsend dia
LMD0 2 1 0 0 0 0 reporting process for KSXP
300 3 1 0 0 0 0 set timeout for sends queued with the inter-in
0 3 1 0 IMMEDIAT 0 0 for ktc debug
0 3 1 0 0 0 0 number of ktc latches
0 3 1 0 0 0 0 number of KTU latches
none 2 1 1 0 0 0 datapump trace parameter
16000 6 1 0 0 0 0 minimum allocation size in bytes for the large
8388608 6 0 0 IMMEDIAT 0 0 Actual size in bytes of large pool
0 6 1 0 IMMEDIAT 0 0 size in bytes of large pool
5 3 1 1 0 0 0 period over which an instance can retain an
2 1 0 0 0 0 latch classes override
2 1 0 0 0 0 latch class 0
2 1 0 0 0 0 latch class 1
2 1 0 0 0 0 latch class 2
2 1 0 0 0 0 latch class 3
2 1 0 0 0 0 latch class 4
2 1 0 0 0 0 latch class 5
2 1 0 0 0 0 latch class 6
2 1 0 0 0 0 latch class 7
0 3 1 1 IMMEDIAT 0 0 Sid of process for which to collect latch stats
998 3 1 0 0 0 0 align latch recovery structures
NONE 2 1 0 IMMEDIAT 0 0 RDBMS's LDAP access option
262144 3 1 1 IMMEDIAT 0 0 size of write IOs used during a load operatio
1 1 1 1 IMMEDIAT 0 0 enable random distribution method for left of
1 1 1 0 IMMEDIAT 0 0 LGWR Asynchronous Broadcasts enabling b
0 1 1 0 0 0 0 LGWR Asynchronous IO enabling boolean fl
0 1 1 0 0 0 0 LGWR write delay for debugging
0 3 1 0 0 0 0 LGWR I/O slaves
1 3 1 0 0 0 0 Maximum wait time for lgwr to allow NetServ
1000 3 1 0 0 0 0 Variable to simulate network latency or buffe
500 3 1 0 0 0 0 Variable to simulate network latency or buffe
0 3 1 0 IMMEDIAT 0 0 Variable to simulate errors lgwrns
0 3 1 0 IMMEDIAT 0 0 Variable to simulate errors lgwr true async
1 1 1 0 IMMEDIAT 0 0 whether KGL advice should be turned on
0 3 1 0 IMMEDIAT 0 0 maximum number of non-system user sessio
0 3 1 0 IMMEDIAT 0 0 maximum number of named users that can b
0 3 1 0 IMMEDIAT 0 0 warning level for number of non-system user
1 1 1 0 0 0 0 Lightweight headers for redo
0 1 1 1 IMMEDIAT 0 0 treat LIKE predicate with bind as an equality
100 3 1 0 IMMEDIAT 0 0 threshold value to activate an additional lms
0 3 1 0 0 0 0 how often to cleanup level 0 cache res (in se
25 3 1 0 0 0 0 percentage of cached resources should be c
TMHWDI 2 1 0 0 0 0 cache resource: string of lock types(s)
0 1 1 0 0 0 0 GES checksum batch messages
128 3 1 0 0 0 0 number of contiguous blocks that will hash to
60 3 1 0 0 0 0 dd time interval in seconds
5 3 1 0 IMMEDIAT 0 0 dd scan interval in seconds
100 3 1 0 0 0 0 dynamic remastering maximum affinity reque
0 3 1 0 0 0 0 dynamic remastering bucket window size
0 3 1 0 0 0 0 dynamic remastering forced exclusive latche
0 1 1 0 0 0 0 dynamic lms invocation
1 1 1 0 0 0 0 dynamic load adjustment
0 1 1 0 0 0 0 if TRUE enables dynamic remastering
3 3 1 0 0 0 0 Number of enqueue freelist
3 1 0 0 0 0 Number of ges enqueue element freelist
1 1 1 0 0 0 0 if TRUE enables enqueue reconfiguration
2 1 0 0 0 0 mapping between file id and master instance
1 1 1 0 0 0 0 if TRUE deliver global posts to remote nodes
8 3 1 0 0 0 0 default wait time for lmd in centiseconds
0 3 1 0 0 0 0 number of background gcs server processes
8 3 1 0 0 0 0 default wait time for lms in centiseconds
12000 3 1 0 0 0 0 number of enqueues configured for cluster d
1 3 1 0 0 0 0 master resource weight for this instance
0 3 1 0 0 0 0 max. number of background global cache se
0 3 1 0 0 0 0 min. number of background global cache ser
0 3 1 0 0 0 0 GES batch message size
2 1 0 0 0 0 GES message buffer caching threshold
3000 3 1 0 0 0 0 GES message buffer cleanup interval time
0 1 1 0 0 0 0 cluster database node join optimization in re
0 1 1 0 0 0 0 disable cluster database fault-tolerance mod
0 3 1 0 0 0 0 number of latches covering the PCM HV buc
4096 3 1 0 0 0 0 number of buckets in the object affinity hash
128 3 1 0 0 0 0 number of latches in the object affinity hash
1 1 1 0 0 0 0 GES implicit process batching for IPC messa
320 3 1 0 0 0 0 number of client processes configured for clu
300 3 1 0 0 0 0 reconfiguration: process freeze timeout
180000 3 1 0 0 0 0 Reconfiguration timeout
32768 3 1 0 0 0 0 the size of receive buffer
6000 3 1 0 0 0 0 number of resources configured for cluster d
0 3 1 0 0 0 0 number of resource hash buckets
128 3 1 0 0 0 0 number of resource partition configured for g
25 3 1 0 0 0 0 GES percentage of send proxy reserve of se
10000 3 1 0 0 0 0 number of cluster database send buffers
auto 2 1 0 0 0 0 GES send mode
1 1 1 0 0 0 0 GES send queue message batching
5000 3 1 0 0 0 0 GES send queue maximum length
0 1 1 0 0 0 0 if TRUE enables share lock optimization
2 3 1 0 0 0 0 GES send queue minimum batching factor
auto 2 1 0 0 0 0 GES send queue batching mechanism
3 3 1 0 0 0 0 GES send queue batching waittime in tick
3 1 0 0 0 0 Synchronization timeout for DLM reconfigura
1000 3 1 0 0 0 0 GES messaging tickets
3 1 0 0 0 0 Flow control ticket active sendback threshold
16 3 1 0 0 0 0 TX lock localization delta
0 1 1 0 0 0 0 if TRUE enables resource name validation
352 3 1 0 0 0 0 number of transaction IDs configured for clus
none 2 1 1 IMMEDIAT 0 0 Load PL/SQL or Database objects without co
1 1 1 1 IMMEDIAT 0 0 enable local communication costing when TR
50 3 1 1 IMMEDIAT 0 0 set the ratio between global and local comm
2 1 0 IMMEDIAT 0 0 local listener
2 1 0 0 0 0 lock name space used for generating lock na
0 1 1 0 0 0 0 Lock entire SGA in physical memory
0 3 1 0 0 0 0 Lock specified areas of the SGA in physical
1 3 1 0 0 0 0 maximum number of threads to mine
1 1 1 0 0 0 0 log archive avoid memcpy
4 3 1 0 0 0 0 Number of buffers to allocate for archiving
2048 3 1 0 0 0 0 Size of each archival buffer in log file blocks
2 1 0 IMMEDIAT 0 0 archival callout
0 1 1 0 0 0 0 Bypass database rules for enabling archivelo
2 1 0 IMMEDIAT 0 0 log archive config parameter
0 3 1 0 IMMEDIAT 0 0 iterative sleep time in centiseconds seconds
2 1 0 IMMEDIAT 0 0 archival destination text string
2 1 1 IMMEDIAT 0 0 archival destination #1 text string
2 1 1 IMMEDIAT 0 0 archival destination #10 text string
2 1 1 IMMEDIAT 0 0 archival destination #2 text string
2 1 1 IMMEDIAT 0 0 archival destination #3 text string
2 1 1 IMMEDIAT 0 0 archival destination #4 text string
2 1 1 IMMEDIAT 0 0 archival destination #5 text string
2 1 1 IMMEDIAT 0 0 archival destination #6 text string
2 1 1 IMMEDIAT 0 0 archival destination #7 text string
2 1 1 IMMEDIAT 0 0 archival destination #8 text string
2 1 1 IMMEDIAT 0 0 archival destination #9 text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #1 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #10 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #2 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #3 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #4 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #5 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #6 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #7 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #8 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #9 state text string
2 1 0 IMMEDIAT 0 0 duplex archival destination text string
arc%s_%r.%t 2 0 0 0 0 0 archival destination format
1 1 1 0 IMMEDIAT 0 0 Establish EXPEDITE attribute default value
2 3 1 0 IMMEDIAT 0 0 maximum number of active ARCH processes
1 3 1 1 IMMEDIAT 0 0 minimum number of archive destinations tha
10 3 1 0 IMMEDIAT 0 0 Log archive network redo buffer size used by
0 3 1 0 IMMEDIAT 0 0 maximum network wait time in seconds whe
0 1 1 0 IMMEDIAT 0 0 log archive protection auto demotion
1 1 1 0 0 0 0 log archive security enabled
0 1 1 0 0 0 0 start archival process on SGA initialization
0 3 1 0 IMMEDIAT 0 0 Establish archivelog operation tracing level
1 1 1 0 0 0 0 log block images when changed during back
6984704 3 0 0 0 0 0 redo circular buffer size
0 1 1 0 0 0 0 corrupt redo buffers before write
0 1 1 0 0 0 0 debug redo buffers (slows things down)
0 1 0 0 IMMEDIAT 0 0 log checkpoint begin/end to alert file
65536 3 0 0 IMMEDIAT 0 0 # redo blocks checkpoint threshold
0 3 1 0 0 0 0 # redo blocks to verify after checkpoint
3600 3 0 0 IMMEDIAT 0 0 Maximum time interval between checkpoints
0 1 1 0 IMMEDIAT 0 0 Log commit-time block cleanout
0 1 1 0 0 0 0 debug redo multi instance code
mandatory 2 1 0 0 0 0 archivelog deletion policy for mandatory/all d
0 3 1 0 0 0 0 number of the log writer event queues
2 1 0 0 0 0 logfile name convert patterns and strings for
0 3 1 0 0 0 0 automatically initiate log write if this many re
1 3 1 0 0 0 0 Number of log buffer strands
1 1 1 0 0 0 0 Enable dynamic strands
2 3 1 0 0 0 0 Maximum number of log buffer strands
5 3 1 0 0 0 0 Private strand multiplier for log space preallo
0 1 1 0 IMMEDIAT 0 0 Number of private log buffer strands for zero
10 3 1 0 0 0 0 Active sessions multiplier to deduce number
4 3 1 0 0 0 0 number of simultaneous copies into redo buf
1 1 1 0 0 0 0 should we report space errors to alert log
0 3 1 0 IMMEDIAT 0 0 Maximum number of seconds redos in the cu
1 1 1 0 IMMEDIAT 0 0 longops stats enabled
0 3 1 0 IMMEDIAT 0 0 low server thresholds
31 3 1 0 IMMEDIAT 0 0 direct sends for messages from master (DFS
1 1 1 1 IMMEDIAT 0 0 refresh materialized views using consistent r
0 1 1 1 IMMEDIAT 0 0 materialized view MAV refreshes avoid doub
0 3 1 1 IMMEDIAT 0 0 optimizations during refresh of materialized v
3 3 1 1 IMMEDIAT 0 0 # tables for union all expansion during mater
120 3 1 0 0 0 0 Maximum wait by ARCH to allow NetServer
0 3 1 0 0 0 0 Max age of new snapshot in .01 seconds
3 1 0 IMMEDIAT 0 0 max number of dispatchers
202400 2 0 1 IMMEDIAT 0 0 Maximum size (blocks) of dump file
150 3 1 0 0 0 0 max number of roles a user can have enable
0 3 1 0 0 0 0 max sleep during exponential backoff
30 3 1 0 0 0 0 Maximum time spent by LNS to archive last
10000 3 1 0 0 0 0 Max occurrence protocols supported in a pro
0 3 1 0 0 0 0 maximum number of connections used for re
3 1 0 IMMEDIAT 0 0 max number of shared servers
0 3 1 1 0 0 0 number of segments for which shrink stats w
4 3 1 0 0 0 0 max time to sleep while holding a latch
128 3 1 0 0 0 0 media recovery block read batch
3 3 1 0 0 0 0 media recovery reap time
5 3 1 0 0 0 0 memory broker num stat entries
10 3 1 0 IMMEDIAT 0 0 Marginal Utility threshold pct for bc
4 3 1 0 IMMEDIAT 0 0 Marginal Utility threshold pct for sp
0 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink shared
900 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink java po
900 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink stream
60000000 3 1 0 IMMEDIAT 0 0 memory broker policy to timeout shrink share
30 3 1 0 IMMEDIAT 0 0 memory broker statistics gathering interval
0 3 1 0 IMMEDIAT 0 0 trace memory management activity
0 3 1 0 IMMEDIAT 0 0 partial granule sanity check
0 3 1 0 0 0 0 private memory annotation collection level
1 3 1 0 0 0 0 memory annotation pre-allocation scaling
0 3 1 0 0 0 0 shared memory annotation collection level
0 1 1 0 0 0 0 memory annotation in-memory store
4096 3 1 0 0 0 0 standard extent size for fixed-size-extent hea
420 3 1 0 0 0 0 message queue resources - dependent on #
1 1 1 1 IMMEDIAT 0 0 prohibit stats aggregation at compile/partition
0 3 1 1 0 0 0 minimum number freeable blocks for shrink t
1 3 1 1 0 0 0 minimum number freeable extents for shrink
0 3 1 0 0 0 0 Minimum SCN to start with in 2^30 units
0 1 1 0 0 0 0 Save buffers for debugging redo corruptions
1 1 1 1 IMMEDIAT 0 0 allow rewrites with multiple MVs and/or base
0 1 1 0 0 0 0 use multiple instances for media recovery
1 1 1 0 0 0 0 TRUE iff multi-join-key table lookup prefetch
0 3 1 1 0 0 0 what percent to analyze after complete/PCT
rule 2 1 1 0 0 0 refresh decision based on cost or on rules
10 3 1 1 IMMEDIAT 0 0 delta mv as fractional percentage of size of m
1 1 1 1 IMMEDIAT 0 0 refresh materialized views using EUT(partitio
0 3 1 1 0 0 0 force materialized view refreshes to use para
0 1 1 1 IMMEDIAT 0 0 materialized view MV refresh new setup disa
10 3 1 1 IMMEDIAT 0 0 minimum percentage change required in MV
1 1 1 1 IMMEDIAT 0 0 create materialized views with selections and
1 1 1 1 IMMEDIAT 0 0 pass cardinality hints to refresh queries
300000 3 1 1 IMMEDIAT 0 0 proportionality constant for dop vs. time in M
0 1 1 1 IMMEDIAT 0 0 create/alter mv uses rolling cursor invalidatio
1 1 1 0 IMMEDIAT 0 0 Enable/disable Maintenance Window Sched
1 1 1 1 IMMEDIAT 0 0 NLS allow Implicit Conversion between CHA
1 1 1 1 IMMEDIAT 0 0 should implicit conversion bewteen clob and
0 3 1 1 IMMEDIAT 0 0 enable multi-block readahead for an index sc
0 3 1 1 IMMEDIAT 0 0 turn on multi-block readahead tracing
100 3 1 1 IMMEDIAT 0 0 nested loop fudge
1 1 1 1 IMMEDIAT 0 0 nested MAV refresh fast on commit allowed
1 1 1 1 IMMEDIAT 0 0 controls whether new sorts can be used as s
63 3 1 1 IMMEDIAT 0 0 controls when new sort avoids sorting ordere
0 3 1 1 IMMEDIAT 0 0 specifies options for the new sort algorithm
1 1 1 1 IMMEDIAT 0 0 enable initial join orders based on new order
1 1 1 1 IMMEDIAT 0 0 enables the use of new cost estimate for sor
2 1 1 0 0 0 NLS calendar system name
2 1 1 0 0 0 NLS comparison
2 1 1 0 0 0 NLS local currency symbol
2 1 1 0 0 0 NLS Oracle date format
2 1 1 0 0 0 NLS date language name
2 1 1 0 0 0 Dual currency symbol
2 1 1 0 0 0 NLS ISO currency territory name
american 2 0 1 0 0 0 NLS language name
BYTE 2 1 1 IMMEDIAT 0 0 create columns using byte or char semantics
0 2 1 1 IMMEDIAT 0 0 NLS raise an exception instead of allowing im
2 1 1 0 0 0 NLS numeric characters
2 1 1 0 0 0 NLS linguistic definition name
america 2 0 1 0 0 0 NLS territory name
2 1 1 0 0 0 time stamp format
2 1 1 0 0 0 timestampe with timezone format
2 1 1 0 0 0 time format
2 1 1 0 0 0 time with timezone format
0 1 1 0 0 0 0 notify cluster ready services of startup and s
0 1 1 0 0 0 0 no object features are used
0 1 1 1 IMMEDIAT 0 0 OR expansion during optimization disabled
0 1 1 0 IMMEDIAT 0 0 no recovery through this resetlogs operation
1 3 1 0 0 0 0 Flush wait time for NetServer to flush oustan
15 3 1 0 0 0 0 Data Loss Time Bound for NetServer
Not specified 2 1 0 0 0 0 Set of nodes that this instance should run on
Not specified 2 1 0 0 0 0 aggregate size in bytes of NUMA pool
10 3 1 0 0 0 0 maximum number of cached attributes per in
2 3 1 0 0 0 0 number of child latches for long op array
1 1 0 0 0 0 0 Version 7 Dictionary Accessibility Support
10 3 1 1 DEFERRE 0 0 percentage of maximum size over optimal of
102400 3 1 1 DEFERRE 0 0 optimal size of the user session's object cach
1 1 1 0 IMMEDIAT 0 0 enable the object level statistics collection
2 1 0 0 0 0 offline undo segment list
2 1 0 0 0 0 GMS home directory
0 1 1 0 IMMEDIAT 0 0 enable olapi history retention
1000 3 1 0 0 0 0 enable olapi interface object history collectio
0 1 1 0 IMMEDIAT 0 0 enable olapi interface object history retention
0 1 1 0 IMMEDIAT 0 0 enable olapi interface operation history reten
1000 3 1 0 0 0 0 enable olapi interface operation history colle
1000 3 1 0 0 0 0 enable olapi memory alloc/free history collec
0 3 1 0 IMMEDIAT 0 0 enable olapi memory alloc/free history collec
0 1 1 0 IMMEDIAT 0 0 enable olapi memory operation history reten
300 3 1 0 0 0 0 enable olapi session history collection
0 1 1 0 IMMEDIAT 0 0 enable olapi session history retention
1048576 3 1 1 DEFERRE 0 0 OLAP Aggregate max buffer size
0 3 1 1 DEFERRE 0 0 OLAP Aggregate debug flags
1 1 1 1 DEFERRE 0 0 OLAP Aggregate function cache enabler
529 3 1 1 DEFERRE 0 0 OLAP Aggregate function merge threshold
5000 3 1 1 DEFERRE 0 0 OLAP Aggregate max thread tuples creation
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate min buffer size
64 3 1 1 DEFERRE 0 0 OLAP Aggregate minimum cardinality of dim
0 1 1 1 DEFERRE 0 0 OLAP Aggregate Multi-path Hierarhies enab
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate status array usage thresho
100 3 1 1 DEFERRE 0 0 OLAP Aggregate function storeback probabi
5000 3 1 1 DEFERRE 0 0 OLAP Aggregate max worklists generated a
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate max work parents
%8p %8y %8z 2 1 1 DEFERRE 0 0 OLAP Allocate Errorlog Format
0 1 1 1 DEFERRE 0 0 Specify TRUE to enable continuous OLAP tr
0 1 1 1 DEFERRE 0 0 OLAP DbgOutfile copy output to event log (t
1 3 1 1 DEFERRE 0 0 OLAP Dimension In-Core Hash Table Class
10000 3 1 1 DEFERRE 0 0 OLAP Dimension In-Core Hash Table Maxim
2147483647 3 1 1 DEFERRE 0 0 OLAP EIF Export BLOB size
100 3 1 1 DEFERRE 0 0 Limitmap generator dimension column size
1000 3 1 1 DEFERRE 0 0 Limitmap generator measure column size
2 3 1 1 DEFERRE 0 0 OLAP Object Hash Table Class
20 3 1 1 DEFERRE 0 0 OLAP Page Pool Expand Rate
50 3 1 1 DEFERRE 0 0 OLAP Page Pool High Watermark
100 3 1 1 DEFERRE 0 0 OLAP Page Pool Hit Target
262144 3 1 1 DEFERRE 0 0 OLAP Page Pool Low Watermark
90 3 1 1 DEFERRE 0 0 OLAP Page Pool Pressure Threshold
50 3 1 1 DEFERRE 0 0 OLAP Page Pool Shrink Rate
0 6 1 1 DEFERRE 0 0 size of the olap page pool in bytes
400 3 1 1 DEFERRE 0 0 OLAP parallel update pagespace by group
1000 3 1 1 DEFERRE 0 0 OLAP parallel update threshold for number o
1000 3 1 1 DEFERRE 0 0 OLAP parallel update threshold in pages
0 1 1 1 DEFERRE 0 0 OLAP POutLog copy output to event log (tra
1 1 1 1 DEFERRE 0 0 OLAP Session Cache knob
262144 3 1 1 DEFERRE 0 0 OLAP Sort Buffer Size
20000000 3 1 1 DEFERRE 0 0 OLAP Status Boolean max incore bits
8100 3 1 1 DEFERRE 0 0 OLAP Status Boolean CBM threshold
0 1 1 1 DEFERRE 0 0 Specify TRUE to output OLAP table function
0 1 1 1 DEFERRE 0 0 Wrap error messages to OLAP outfile
0 1 1 1 IMMEDIAT 0 0 enable/disable old connect by
1 1 1 0 IMMEDIAT 0 0 Clean up unnecessary entries in OLS sessin
enabled 2 1 0 0 0 0 enable/disable OMF
1 1 1 1 IMMEDIAT 0 0 sanity check on default selectivity for like/ran
1000 3 0 0 IMMEDIAT 0 0 max # cursors per session
4 3 0 0 0 0 0 max # open links per session
4 3 1 0 0 0 0 max # open links per instance
1 1 1 1 IMMEDIAT 0 0 adjust selectivity for null values
1 1 1 0 IMMEDIAT 0 0 enable/disable auto stats collection job
ALL 2 1 1 IMMEDIAT 0 0 enable improved costing of index access usi
8192 3 1 1 IMMEDIAT 0 0 standard block size used by optimizer
0 1 1 1 IMMEDIAT 0 0 cost with cache statistics
1 1 1 1 IMMEDIAT 0 0 optimizer cartesian join enabled
50 3 1 1 IMMEDIAT 0 0 cost factor for cost-based query transformati
1 1 1 1 IMMEDIAT 0 0 disable cost based transformation query size
1 1 1 1 IMMEDIAT 0 0 CEIL cost in CBO
0 3 1 1 IMMEDIAT 0 0 force the optimizer to use the specified perm
1 1 1 1 IMMEDIAT 0 0 enable selectivity estimation for builtin functi
1 1 1 1 IMMEDIAT 0 0 force index stats collection on index creation
1 1 1 1 IMMEDIAT 0 0 use cost-based transformation for connect b
1 1 1 1 IMMEDIAT 0 0 force correct computation of subquery select
LINEAR 2 1 1 IMMEDIAT 0 0 enables cost-based query transformation
0 1 1 1 IMMEDIAT 0 0 enables costing of filter predicates in IO cos
1 1 1 1 IMMEDIAT 0 0 add cost of generating result set when #rows
CHOOSE 2 1 1 IMMEDIAT 0 0 optimizer cost model
0 3 1 1 IMMEDIAT 0 0 force the optimizer to use the same degree o
1 1 1 1 IMMEDIAT 0 0 use join selectivity in choosing star transform
0 3 1 1 IMMEDIAT 0 0 disable star transformation sanity checks
2 3 0 1 IMMEDIAT 0 0 optimizer dynamic sampling
32 3 1 1 IMMEDIAT 0 0 number of blocks for optimizer dynamic sam
1 1 1 1 IMMEDIAT 0 0 push filters before trying cost-based query tr
UDO 2 1 1 IMMEDIAT 0 0 optimizer extended cursor sharing
10.2.0.2 2 0 1 IMMEDIAT 0 0 optimizer plan compatibility parameter
1 1 1 1 IMMEDIAT 0 0 use cost-based flter predicate pull up transfo
0 1 1 1 IMMEDIAT 0 0 enables the embedded hints to be ignored
0 3 0 1 IMMEDIAT 0 0 optimizer percent index caching
100 3 0 1 IMMEDIAT 0 0 optimizer index cost adjustment
18000 3 1 0 IMMEDIAT 0 0 time window for invalidation of cursors of ana
1 1 1 1 IMMEDIAT 0 0 optimizer join elimination enabled
3 3 1 1 IMMEDIAT 0 0 controls the optimizer join order search algor
1 1 1 1 IMMEDIAT 0 0 enable/disable sanity check for multi-column
2000 3 1 1 IMMEDIAT 0 0 optimizer maximum join permutations per qu
10 3 1 1 IMMEDIAT 0 0 set minimum cached blocks
1 1 1 1 IMMEDIAT 0 0 enable merge join cartesian
ALL_ROWS 2 0 1 IMMEDIAT 0 0 optimizer mode
1 1 1 1 IMMEDIAT 0 0 force setting of optimizer mode for user recu
2 1 1 IMMEDIAT 0 0 generate and run plans using several compil
1 1 1 1 IMMEDIAT 0 0 compute join cardinality using non-rounded i
1 1 1 1 IMMEDIAT 0 0 Eliminates order bys from views before quer
DEPTH 2 1 1 IMMEDIAT 0 0 control or expansion approach used
1 1 1 1 IMMEDIAT 0 0 Enable transformation of outer-join to anti-jo
101 3 1 1 IMMEDIAT 0 0 optimizer percent parallel
0 3 1 1 IMMEDIAT 0 0 push down distinct from query block to table
1 1 1 1 IMMEDIAT 0 0 use cost-based query transformation for pus
0 3 1 1 IMMEDIAT 0 0 optimizer seed value for random plans
1 1 1 1 IMMEDIAT 0 0 enable the use of first K rows due to rownum
1 1 1 0 IMMEDIAT 0 0 enable/disable saving old versions of optimiz
5 3 1 1 IMMEDIAT 0 0 optimizer search limit
1 1 1 0 IMMEDIAT 0 0 optimizer secure view merging and predicate
0 1 1 1 IMMEDIAT 0 0 account for self-induced caching
1 1 1 1 IMMEDIAT 0 0 enable/disable index skip scan
0 1 1 1 IMMEDIAT 0 0 consider index skip scan for predicates with
1 1 1 1 IMMEDIAT 0 0 enable/disable sort-merge join method
1 1 1 1 IMMEDIAT 0 0 enables unnesting of subquery in a bottom-u
1 1 1 1 IMMEDIAT 0 0 optimizer star plan enabled
1 1 1 1 IMMEDIAT 0 0 enable/disable star transformation in with cla
1 1 1 1 IMMEDIAT 0 0 system statistics usage
none 2 1 1 0 0 0 optimizer trace parameter
1 1 1 1 IMMEDIAT 0 0 retain equi-join pred upon transitive equality
0 1 1 1 IMMEDIAT 0 0 undo changes to query optimizer
10.2.0.2 2 1 1 IMMEDIAT 0 0 optimizer undo cost change
1 1 1 1 IMMEDIAT 0 0 adjust stats for skews across partitions
1 1 1 0 IMMEDIAT 0 0 enable/disable dictionary stats gathering at d
1 1 1 1 IMMEDIAT 0 0 TRUE to enable index [fast] full scan more o
1 1 1 1 IMMEDIAT 0 0 improves the way default equijoin selectivity
1 1 1 1 IMMEDIAT 0 0 enable peeking of user binds
0 1 1 1 IMMEDIAT 0 0 force target processes to execute oradebug
1 1 1 1 IMMEDIAT 0 0 enable ordered nested loop costing
1 1 1 1 IMMEDIAT 0 0 enable ordered semi-join subquery
1 1 1 1 IMMEDIAT 0 0 enable OR expanded plan for NVL/DECODE
OPS$ 2 1 0 0 0 0 prefix for auto-logon accounts
0 1 1 0 0 0 0 retrieve roles from the operating system
1 3 1 0 0 0 0 OS high priority level
2 1 0 IMMEDIAT 0 0 exclude event names from _other_wait_thre
0 3 1 0 0 0 0 threshold wait percentage for event wait clas
1 1 1 1 IMMEDIAT 0 0 BITMAP_TREE hint enabled in outline
350 3 1 1 IMMEDIAT 0 0 set the parallelism cost fudge factor
2 3 1 0 IMMEDIAT 0 0 maximum number of users running with defa
1 1 1 0 IMMEDIAT 0 0 enable adaptive setting of degree for multiple
0 1 1 0 0 0 0 enable intelligent defaults for parallel execut
1 1 1 1 IMMEDIAT 0 0 enable broadcasting of small inputs to hash
1 3 1 0 0 0 0 default maximum number of instances for pa
0 1 1 0 0 0 0 Alignment of PX buffers to OS page bounda
2148 3 1 0 0 0 0 message buffer size for parallel execution
0 3 1 1 IMMEDIAT 0 0 fake db-scheduler percent used for testing
1000 3 1 0 0 0 0 Number of buckets for each round of fix write
2 1 1 IMMEDIAT 0 0 instance group to use for all parallel operatio
1 1 1 1 IMMEDIAT 0 0 parallel execution load balanced slave alloca
0 3 1 1 IMMEDIAT 0 0 number of threads to allocate per instance
0 3 1 0 IMMEDIAT 0 0 maximum parallel query servers per instance
0 2 1 0 0 0 0 minimum size of shared pool memory to rese
0 3 1 1 0 0 0 minimum percent of threads required for par
0 3 1 0 IMMEDIAT 0 0 minimum parallel query servers per instance
32767 3 1 0 IMMEDIAT 0 0 stop at -position- to step through SMON
4000 3 1 0 0 0 0 Number of messages for each round of para
0 1 1 0 0 0 0 if TRUE startup in parallel server mode
30000 3 1 0 IMMEDIAT 0 0 idle time before parallel query server dies (in
1 3 1 0 0 0 0 number of instances to use for sizing OPS S
10 3 1 0 IMMEDIAT 0 0 sleep time between dequeue timeouts (in 1/1
1 3 1 1 IMMEDIAT 0 0 time(in seconds) to wait before retrying slave
2 3 1 0 IMMEDIAT 0 0 number of parallel execution threads per CP
0 1 1 1 0 0 0 enable parallel_txn hint with updates and de
1024 3 1 0 0 0 0 parameter table block size
1 1 1 1 IMMEDIAT 0 0 enable partial partition-wise join when TRUE
1 1 1 1 IMMEDIAT 0 0 enable/disable partitioned views
900 3 1 0 0 0 0 password file enqueue timeout in seconds
1 1 1 1 IMMEDIAT 0 0 materialized view PCT refreshes avoid doub
5000 3 1 1 IMMEDIAT 0 0 control separation of global index maintenan
0 1 1 1 IMMEDIAT 0 0 slaves start on different index when doing in
1 1 1 1 IMMEDIAT 0 0 slaves start on different partition when doing
50 3 1 0 0 0 0 Percent of flashback buffer filled to be consid
314572800 6 0 0 IMMEDIAT 0 0 Target size for the aggregate PGA memory c
1048576 6 1 0 0 0 0 PGA large extent size
209715200 6 1 0 IMMEDIAT 0 0 Maximum size of the PGA memory for one p
3 3 1 0 0 0 0 fusion ping level
0 1 1 0 IMMEDIAT 0 0 enable progressive kill test
50 3 1 0 IMMEDIAT 0 0 PMON process clean-up interval (cs)
0 1 1 1 0 0 0 start progressive kill test instrumention
1 1 1 1 IMMEDIAT 0 0 explain plan outline data enabled
INTERPRETE 2 1 1 IMMEDIAT 0 0 PL/SQL anonymous block code-type
1 1 1 1 IMMEDIAT 0 0 PL/SQL Function Cache Enabled
2 1 1 IMMEDIAT 0 0 PL/SQL ccflags
INTERPRETE 2 0 1 IMMEDIAT 0 0 PL/SQL code-type
INTERPRETE 2 1 1 IMMEDIAT 0 0 PL/SQL compiler flags
0 1 1 1 IMMEDIAT 0 0 PL/SQL debug
2 1 0 0 0 0 conditions upon which the PL/SQL circular b
20 3 1 1 0 0 0 plsql minimum cache hit percentage required
2 1 0 IMMEDIAT 0 0 plsql native library dir
0 3 1 0 IMMEDIAT 0 0 plsql native library number of subdirectories
0 1 1 1 IMMEDIAT 0 0 PL/SQL NVL optimize
2 3 1 1 IMMEDIAT 0 0 PL/SQL optimize level
0 1 1 1 IMMEDIAT 0 0 PL/SQL version 2.x compatibility flag
DISABLE:ALL 2 1 1 IMMEDIAT 0 1 PL/SQL compiler warnings settings
300,192,64,3, 2 1 0 0 0 0 server load balancing constants (S,P,D,I,L,C
1 1 1 1 IMMEDIAT 0 0 precompute gid values and copy them befor
1 1 1 1 IMMEDIAT 0 0 allow predicate elimination if set to TRUE
1 1 1 1 IMMEDIAT 0 0 enables predicate move-around
0 1 1 1 IMMEDIAT 0 0 presume commit of IMU transactions
0 1 1 0 0 0 0 pre-page sga for process
1 1 1 1 IMMEDIAT 0 0 push predicates into views before rewrite
0 2 1 1 0 0 0 enable dbms_output of materialized view ref
2 1 0 0 0 0 Start address of large extent memory segme
210 3 0 0 0 0 0 user processes
1 1 1 1 IMMEDIAT 0 0 projection pushdown
0 3 1 1 IMMEDIAT 0 0 level for projection pushdown debugging
1 1 1 1 IMMEDIAT 0 0 enable projecting out unreferenced columns
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a view
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a union
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a union
0 1 1 1 IMMEDIAT 0 0 asynchronous get granule in the slave
100 3 1 1 IMMEDIAT 0 0 set the tq broadcasting fudge factor percenta
30 3 1 1 IMMEDIAT 0 0 ttl for px mesg buffers in seconds
0 3 1 1 IMMEDIAT 0 0 debug level for parallel compilation
0 3 1 1 0 0 0 tracing level for parallel compilation
1 1 1 1 IMMEDIAT 0 0 turn off/on restartable qerpx dynamic optimiz
50 3 1 1 IMMEDIAT 0 0 num of samples for restartable qerpx dynam
100000 3 1 1 IMMEDIAT 0 0 default size of a rowid range granule (in KB)
200 3 1 1 IMMEDIAT 0 0 parallel query sampling for index create (100
0 3 1 1 IMMEDIAT 0 0 turn on kxib tracing
200 3 1 1 IMMEDIAT 0 0 interval at which LMON will check whether to
1000 3 1 1 IMMEDIAT 0 0 CPU cost to send a PX message via shared
100 3 1 1 IMMEDIAT 0 0 maximum number of rowid range granules to
1 1 1 1 IMMEDIAT 0 0 enables pq for minus/interect operators
13 3 1 1 IMMEDIAT 0 0 minimum number of rowid range granules to
10000 3 1 1 IMMEDIAT 0 0 CPU cost to send a PX message over the in
0 1 1 1 IMMEDIAT 0 0 prevent parallel partition granules to be sorte
0 1 1 1 IMMEDIAT 0 0 prevent parallel granule stealing in shared no
1 1 1 1 IMMEDIAT 0 0 enables or disables NSS Plan B reparse with
1 1 1 0 IMMEDIAT 0 0 reduce parallel_max_servers if greater than
1 1 1 1 IMMEDIAT 0 0 parallel partition wise group by enabled
1 1 1 1 IMMEDIAT 0 0 turn off/on parallel rownum pushdown optimi
300 3 1 1 IMMEDIAT 0 0 IPC message send timeout value in second
0 3 1 1 0 0 0 slaves share cursors with QC
none 2 1 1 0 0 0 px trace parameter
0 1 1 0 0 0 0 Use Large Pool as source of PX buffers
10000 3 1 1 IMMEDIAT 0 0 default size of a external table granule (in KB
0 3 1 1 IMMEDIAT 0 0 Oracle internal parameter to control QA
0 3 1 1 IMMEDIAT 0 0 Oracle internal parameter to specify QA lrg t
1 1 1 1 IMMEDIAT 0 0 perform the cost based rewrite with materiali
65536 3 1 1 DEFERRE 0 0 max size of query execution cache
1 1 1 1 IMMEDIAT 0 0 perform query rewrite before&after or only be
1 1 1 1 IMMEDIAT 0 0 perform query rewrite before&after or only af
1 1 1 1 IMMEDIAT 0 0 mv rewrite and drop redundant joins
0 2 0 1 IMMEDIAT 0 0 allow rewrite of queries using materialized vi
1 1 1 1 IMMEDIAT 0 0 rewrite with cannonical form for expressions
1 1 1 1 IMMEDIAT 0 0 mv rewrite fresh partition containment
90 3 1 1 IMMEDIAT 0 0 cost based query rewrite with MVs fudge fac
TRUSTED 2 0 1 IMMEDIAT 0 0 perform rewrite using materialized views with
1 1 1 1 IMMEDIAT 0 0 mv rewrite with jg migration
257 3 1 1 IMMEDIAT 0 0 query rewrite max disjuncts
0 1 1 1 IMMEDIAT 0 0 allow query rewrite, if referenced tables are n
1 1 1 1 IMMEDIAT 0 0 perform general rewrite using set operator su
1 1 1 1 IMMEDIAT 0 0 prune frocol chain before rewrite after view-m
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel fixwrite at reconfigu
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel replay and cleanup
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel verify at reconfigura
2 1 0 0 0 0 RDBMS's Distinguished Name
0 1 1 0 0 0 0 if TRUE delay opening of read only files unti
32768 3 1 0 0 0 0 minimum max total heap size, in Kbytes
0 3 1 0 0 0 0 mode flags for real-free heap
65536 6 1 0 0 0 0 hint for real-free page size in bytes
0 3 1 0 IMMEDIAT 0 0 Archival delay with real time apply
0 3 1 0 IMMEDIAT 0 0 Simulation value with real time apply
50 3 1 0 IMMEDIAT 0 0 Recoverable recovery batch size (percentag
0 1 1 0 0 0 0 if TRUE, enable expensive integrity checks
0 3 1 0 0 0 0 number of server processes to use for parall
50 3 1 0 IMMEDIAT 0 0 recovery buffer cache percentage
0 1 1 0 IMMEDIAT 0 0 enable thread recovery write verify
0 1 1 1 IMMEDIAT 0 0 recursive transactions may be IMU
ON 2 0 1 IMMEDIAT 0 0 recyclebin processing
0 1 1 0 0 0 0 general and redo/undo compatibility sanity c
5 3 1 0 0 0 0 maximum number of unusable blocks to unli
0 1 1 0 0 0 0 if TRUE, block sends across interconnect ar
1 2 1 0 0 0 0 remote archival enable setting
TIMESTAMP 2 1 1 IMMEDIAT 0 0 remote-procedure-call dependencies mode p
2 1 0 IMMEDIAT 0 0 remote listener
EXCLUSIVE 2 0 0 0 0 0 password file usage parameter
0 1 1 0 0 0 0 allow non-secure remote clients to use auto-
0 1 1 0 0 0 0 allow non-secure remote clients to use os ro
1 1 1 1 IMMEDIAT 0 0 enables removal of subsumed aggregated s
1 1 1 0 0 0 0 tracking dependency for Replication parallel
0 1 1 0 IMMEDIAT 0 0 master switch for resource limit
1 1 1 0 0 0 0 enable the resource manager always
2 1 0 IMMEDIAT 0 0 resource mgr top plan
2 1 0 0 0 0 restore spfile to this location
0 3 1 1 IMMEDIAT 0 0 set resumable_timeout
5 3 1 0 0 0 0 number of blocks being examine for index bl
1 1 1 1 IMMEDIAT 0 0 Right Outer/Semi/Anti Hash Enabled
3 3 1 0 IMMEDIAT 0 0 priority at which rman backup i/o's are done
2 1 0 0 0 0 undo segment list
0 3 1 0 0 0 0 number of undo segments
1 3 1 0 0 0 0 starting undo segment number
0 3 1 0 IMMEDIAT 0 0 stop at -position to step rollback
0 1 1 1 IMMEDIAT 0 0 if TRUE, Oracle will collect rowsource statist
128 3 1 1 IMMEDIAT 0 0 frequency of rowsource statistic sampling (m
0 3 1 1 IMMEDIAT 0 0 Row source tree tracing level
20 3 1 0 0 0 0 number of cached cursors for row cache ma
1 1 1 0 IMMEDIAT 0 0 enable row cr for all sql
always 2 1 0 0 0 0 row-locking
4 3 1 1 IMMEDIAT 0 0 number of rows per block used for sampling
3 1 1 IMMEDIAT 0 0 second spare parameter - integer
1 1 1 1 IMMEDIAT 0 0 control rewrite self-join algorithm
300 3 1 0 0 0 0 Self-tune checkpointing lag the tail of the red
3 3 1 0 0 0 0 Percentage of total physical i/os for self-tune
1 1 1 0 IMMEDIAT 0 0 if TRUE, send ast message to foreground
1 1 1 0 IMMEDIAT 0 0 if TRUE, send close with block even with dire
1 1 1 0 IMMEDIAT 0 0 if TRUE, try to send CR requests to PI buffer
0 1 1 0 0 0 0 serializable
0 1 1 1 IMMEDIAT 0 0 enable direct read in serial
0 1 1 0 0 0 0 force serial recovery or parallel recovery
disable 2 1 0 0 0 0 reuse the frame segments
test16 2 0 0 IMMEDIAT 0 0 service names supported by the instance
236 3 0 0 0 0 0 user and system sessions
200 3 0 1 0 0 0 Number of cursors to cache in a session.
60 3 1 1 0 0 0 Number of pl/sql instantiations to cache in a
10000 3 1 0 0 0 0 session app context size
0 3 1 0 0 0 0 one latch per session or a latch per group of
60 3 1 0 0 0 0 Resource Manager session idle limit check in
0 3 1 1 0 0 0 Number of cursors pins to keep in a session
10 3 1 0 0 0 0 maximum number of open files allowed per s
10 3 1 0 0 0 0 enable session wait history collection
2 1 1 IMMEDIAT 0 0 seventh spare parameter - string list
1157627904 6 0 0 0 0 0 max total SGA size
947912704 6 0 0 IMMEDIAT 0 0 Target size of SGA
partial 2 1 0 0 0 0 Core Size for Shadow Processes
0 3 1 0 0 0 0 SGA starting address (low order 32-bits on 6
0 6 1 0 IMMEDIAT 0 0 shared pool maximum size when auto SGA
0 1 1 0 IMMEDIAT 0 0 shared pool minimum size when auto SGA e
4400 6 1 0 0 0 0 minimum allocation size in bytes for reserved
5 3 1 0 0 0 0 percentage memory of the shared pool alloc
11324620 6 1 0 0 0 0 size in bytes of reserved area of shared poo
226492416 6 0 0 IMMEDIAT 0 0 Actual size in bytes of shared pool
0 6 1 0 IMMEDIAT 0 0 size in bytes of shared pool
0 3 1 0 IMMEDIAT 0 0 number of shared servers to start up
3 1 0 IMMEDIAT 0 0 max number of shared server sessions
30000 3 1 1 IMMEDIAT 0 0 short stack timeout in ms
60 3 1 1 DEFERRE 0 0 percentage of exceptions at which to switch
1 1 1 1 DEFERRE 0 0 enable use of variable sized buffers for non-
200 3 1 0 0 0 0 number of messages to batch in a side chan
6 3 1 0 IMMEDIAT 0 0 timeout before shipping out the batched side
1 1 1 1 IMMEDIAT 0 0 control simple view merging performed by th
8192 3 1 0 0 0 0 LRU bucket minimum delta
10 3 1 0 0 0 0 simulator internal bound percent
2 3 1 0 0 0 0 LRU list rebalance threshold (size)
10240 3 1 0 0 0 0 LRU list rebalance threshold (count)
8 3 1 0 0 0 0 LRU scan count
16 3 1 0 0 0 0 maximum count of invalid chunks on pin list
4096 3 1 0 0 0 0 simulator reserved heap count
1024 3 1 0 0 0 0 simulator reserved object count
2 3 1 0 0 0 0 sampling factor for the simulator
2 3 1 0 0 0 0 upper bound multiple of pool size
0 1 1 0 0 0 0 run without detached processes
2 1 1 IMMEDIAT 0 0 sixth spare parameter - string list
1000 3 1 0 0 0 0 tune skgxp OSD reaping limit
0 3 1 1 IMMEDIAT 0 0 time in minutes before idle ach's are reaped
1000 3 1 1 IMMEDIAT 0 0 ach hiwat mark warning interval
60 3 1 1 IMMEDIAT 0 0 time in seconds between interface detection
300 3 1 1 IMMEDIAT 0 0 connection idle time in seconds before keep
1024 3 1 1 IMMEDIAT 0 0 diagnostic log buffering space (in bytes) for t
5 3 1 1 IMMEDIAT 0 0 time in seconds before timed wait is invoked
1 1 1 0 IMMEDIAT 0 0 if TRUE, skip assume message for consigns
1 1 1 1 IMMEDIAT 0 0 skip unusable indexes if set to TRUE
1 1 1 1 IMMEDIAT 0 0 enable slave mapping when TRUE
0 3 1 1 IMMEDIAT 0 0 force the number of slave group in a slave m
1660 3 1 1 DEFERRE 0 0 threshold level of table size for direct reads
1 1 1 0 IMMEDIAT 0 0 if TRUE, enable v$pga_advice
0 3 1 1 IMMEDIAT 0 0 overwrites default size of the PGA advice wo
1 1 1 1 IMMEDIAT 0 0 if TRUE, use the AUTO size policy cost func
248 3 1 1 IMMEDIAT 0 0 Maximum IO size (in KB) used by sort/hash-
56 3 1 1 IMMEDIAT 0 0 Minimum IO size (in KB) used by sort/hash-j
0 3 1 1 IMMEDIAT 0 0 overwrites memory manager automatically c
0 3 1 1 IMMEDIAT 0 0 provides controls on the memory manager
5120 3 1 0 IMMEDIAT 0 0 value in KB of the instance freeable PGA me
102400 3 1 1 IMMEDIAT 0 0 maximum work area for insertion sort(v1)
61440 3 1 1 IMMEDIAT 0 0 maximum work area size in auto mode (seria
307 3 1 1 IMMEDIAT 0 0 minimum work area size in auto mode
153600 3 1 1 IMMEDIAT 0 0 maximum work area size in auto mode (glob
0 3 1 1 IMMEDIAT 0 0 work area retain size in SGA for shared serv
0 3 1 1 IMMEDIAT 0 0 Turn on/off tracing for SQL memory manage
100 3 1 0 IMMEDIAT 0 0 limit of SMON internal errors
2 1 1 IMMEDIAT 0 0 utl_smtp server and port configuration param
0 3 1 0 IMMEDIAT 0 0 <debug-flag> - set debug event for testing S
0 3 1 1 0 0 0 site ID of error simulation in KTU code
0 3 1 1 0 0 0 error type for error simulation in KTU code
2 1 0 IMMEDIAT 0 0 comma-separated *AND double-quoted* list
0 3 1 1 DEFERRE 0 0 size of in-memory sort work area retained be
65536 3 1 1 DEFERRE 0 0 size of in-memory sort work area
0 3 1 1 IMMEDIAT 0 0 cost ratio for sort eimination under first_rows
2 3 1 1 DEFERRE 0 0 multi-block read count for sort
C:\ORACLE\P 2 1 0 0 0 0 server parameter file
2000 3 1 0 IMMEDIAT 0 0 Amount to spin waiting for a latch
10000 3 1 1 IMMEDIAT 0 0 maximum number of rules in sql spreadshee
1 1 1 1 IMMEDIAT 0 0 push predicates through reference spreadsh
1 1 1 1 IMMEDIAT 0 0 enable AW for hash table in spreadsheet
0 1 1 1 IMMEDIAT 0 0 use hash table for spreadsheet
0 1 1 0 0 0 0 require select privilege for searched update/
1000 3 1 1 IMMEDIAT 0 0 sql execution progression monitoring cost th
DEFAULT 2 1 1 IMMEDIAT 0 0 Category qualifier for applying hintsets
DEFAULT 2 1 1 IMMEDIAT 0 0 Parsed category qualifier for applying hintse
0 3 1 0 0 0 0 SQL Connect Capability Table Override
2 1 0 0 0 0 SQL Connect Capability Table (testing only)
0 6 1 1 IMMEDIAT 0 0 Hash value of the SQL statement to debug
RUN_TIME 2 1 1 IMMEDIAT 0 0 specifies compile-time unfolding of sql mode
0 1 1 1 IMMEDIAT 0 0 enable SQL trace
NATIVE 2 1 1 0 0 0 sql language version parameter for compatib
0 3 1 0 0 0 0 stack guard level
%ORACLE_H 2 1 0 IMMEDIAT 0 0 standby database archivelog destination tex
MANUAL 2 1 0 IMMEDIAT 0 0 if auto then files are created/dropped automa
0 2 0 1 IMMEDIAT 0 0 enable the use of star transformation
2 1 0 0 0 0 static backgrounds
typical 2 0 1 IMMEDIAT 0 0 statistics level
0 3 1 1 IMMEDIAT 0 0 SQL Tuning Advisory control parameter
0 3 1 1 IMMEDIAT 0 0 SQL tracing parameter
0 6 1 0 IMMEDIAT 0 0 streams pool maximum size when auto SGA
0 6 1 0 IMMEDIAT 0 0 size in bytes of the streams pool
0 6 0 0 IMMEDIAT 0 0 Actual size in bytes of streams pool
20 3 1 1 IMMEDIAT 0 0 subquery pruning cost factor
1 1 1 1 IMMEDIAT 0 0 enable the use of subquery predicates to pe
0 1 1 1 IMMEDIAT 0 0 enable the use of subquery predicates with M
50 3 1 1 IMMEDIAT 0 0 subquery pruning reduction factor
0 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF Metric Frequent Mode
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON DB Feature U
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON FLushing
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON Metrics Collec
1 1 1 1 IMMEDIAT 0 0 Parameter to enable/disable SWRF
0 3 1 1 0 0 0 test action parameter for SWRF
0 1 1 0 IMMEDIAT 0 0 Enable/disable DB Feature Usage Testing
0 1 1 0 0 0 0 whether to trace metadata comparisons for s
1 3 1 1 IMMEDIAT 0 0 test parameter for SYSAUX
0 3 1 1 IMMEDIAT 0 0 optimizer percent system index caching
1 1 1 0 IMMEDIAT 0 0 are system triggers enabled
40 3 1 0 0 0 0 table lookup prefetch vector size
2 3 1 0 0 0 0 table lookup prefetch threshold
1 1 1 1 IMMEDIAT 0 0 bump estimated full table scan and index ffs
1 1 1 0 0 0 0 Use asynch I/O requests for tape devices
90 3 1 0 0 0 0 target rba max log lag percentage
20 3 1 0 0 0 0 LNS Wait time for arhcived version of online
16 3 1 0 IMMEDIAT 0 0 set debug mode for testing transportable dat
100 3 1 1 IMMEDIAT 0 0 number of blocks for a dimension before we
1 1 1 1 IMMEDIAT 0 0 determines if temp table is created with cach
5 3 1 0 IMMEDIAT 0 0 test the function ksusigskip
25 3 1 1 DEFERRE 0 0 test parmeter 1 - integer
2 1 1 0 0 0 test parameter 2 - string
2 1 1 IMMEDIAT 0 0 test parameter 3 - string
2 1 1 IMMEDIAT 0 0 test parameter 4 - string list
25 3 1 1 IMMEDIAT 0 0 test parmeter 5 - deprecated integer
0 6 1 1 IMMEDIAT 0 0 test parmeter 6 - size (ub8)
3 1 1 IMMEDIAT 0 0 third spare parameter - integer
0 3 1 0 IMMEDIAT 0 0 Redo thread to mount
1 3 1 0 IMMEDIAT 0 0 if 1, issue threshold-based alerts
0 3 1 1 IMMEDIAT 0 0 internal os statistic gathering interval in seco
1 1 0 1 IMMEDIAT 0 0 maintain internal timing statistics
0 6 1 0 0 0 0 Total memory for allocating large extents
0 3 1 1 0 0 0 time period for duping of TQ statistics (s)
2 1 1 0 0 0 trace file custom identifier
0 1 1 0 IMMEDIAT 0 0 start DIAG process
ALL:256 2 1 0 0 0 0 trace buffer sizes per process
0 1 1 0 IMMEDIAT 0 0 trace buffer flushes if otrace cacheIO event i
0 1 1 0 IMMEDIAT 0 0 trace kcb buffer gets if otrace cacheIO event
0 3 1 1 IMMEDIAT 0 0 trace buffer busy wait timeouts
1 1 1 0 IMMEDIAT 0 0 enable KST timestamp on trace buffer wrap
0 1 1 0 IMMEDIAT 0 0 trace cr buffer creates if otrace cacheIO eve
1 1 1 0 IMMEDIAT 0 0 enable KST tracing
2 1 0 IMMEDIAT 0 0 trace events enabled at startup
0 1 1 0 0 0 0 Create publicly accessible trace files
65536 3 1 0 0 0 0 maximum size of trace file (in bytes)
ALL 2 1 0 IMMEDIAT 0 0 trace data archived by DIAG for these proce
0 1 1 0 IMMEDIAT 0 0 trace multi_block reads if otrace cacheIO ev
global 2 1 0 0 0 0 enabling trace navigation linking
text,multiple 2 1 0 0 0 0 trace data flush options
0 3 1 0 0 0 0 trace how long a current pin is held
ALL 2 1 0 0 0 0 enable KST tracing in process
259 3 0 0 0 0 0 max. number of concurrent active transactio
5 3 0 0 0 0 0 number of active transactions per rollback se
1 1 1 0 DEFERRE 0 0 transaction auditing records generated in the
0 3 1 0 IMMEDIAT 0 0 max number of parallel recovery slaves that
1 1 1 1 IMMEDIAT 0 0 do truncate optimization if set to TRUE
2 1 1 IMMEDIAT 0 0 TSM test connect string
1 3 1 0 IMMEDIAT 0 0 Disable TSM auto cleanup actions
0 1 1 0 IMMEDIAT 0 0 allow plugging in a tablespace with an incom
1 1 1 0 0 0 0 enable two-pass thread recovery
1 1 1 1 0 0 0 uses two-pass reverse polish alg. to generat
262144 6 1 0 0 0 0 UGA/CGA large extent size
1 1 1 0 IMMEDIAT 0 0 maintain fast-path statistics for ultrafast latch
1 1 1 0 IMMEDIAT 0 0 enable auto tuning of undo_retention
0 3 1 1 IMMEDIAT 0 0 debug flag for undo related operations
0 3 1 0 IMMEDIAT 0 0 invoke undo usage functions for testing
AUTO 2 0 0 0 0 0 instance runs in SMU mode if TRUE, else in
1800 3 0 0 IMMEDIAT 0 0 undo retention in seconds
ROLLBACK_ 2 0 0 IMMEDIAT 0 0 use/switch undo tablespace
YES_GSET_ 2 1 1 IMMEDIAT 0 0 expand queries with GSets into UNIONs for
1 1 1 1 IMMEDIAT 0 0 enables unnesting of correlated subqueries
1 1 1 1 IMMEDIAT 0 0 enable unused block compression
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 User process dump directory
1 1 1 1 IMMEDIAT 0 0 enable the use of column statistics for DDP f
0 1 1 0 0 0 0 Enable indirect data buffers (very large SGA
1 1 1 0 0 0 0 Enable Shared Page Tables - ISM
1 1 1 0 0 0 0 Use ISM for allocating large extents
0 1 1 1 0 0 0 use nosegment indexes in explain plan
1 1 1 0 IMMEDIAT 0 0 use real-free based allocator for PGA memo
1 1 1 1 IMMEDIAT 0 0 whether to use process local seq cache
1 1 1 0 0 0 0 use vector post
C:\oracle\pro 2 0 0 0 0 0 utl_file accessible directories list
0 1 1 0 IMMEDIAT 0 0 Scan database to validate result of flashback
2 1 0 0 0 0 Vendor library search root directory
1 1 1 0 IMMEDIAT 0 0 Verify that the redo logs needed for flashbac
0 1 1 1 IMMEDIAT 0 0 TRUE - verify consistency of undo quota sta
1024 3 1 1 IMMEDIAT 0 0 very_large_partitioned_table
1 1 1 0 0 0 0 wait for sync on commit MUST BE ALWAYS
0 3 1 0 0 0 0 maximum number of unusable blocks to wal
0 1 1 1 IMMEDIAT 0 0 is the watchpointing feature turned on?
0 3 1 1 IMMEDIAT 0 0 settings for window function optimizations
auto 2 0 1 IMMEDIAT 0 0 policy used to size SQL working areas (MAN
3 3 1 0 IMMEDIAT 0 0 write clones flag
8192 3 1 0 IMMEDIAT 0 0 maximum bytes for logging peeked bind valu
0 3 1 1 IMMEDIAT 0 0 Explain Plan tracing parameter
20 3 1 1 DEFERRE 0 0 OLAP API lower bound for auto materializati
PRED_AND_ 2 1 1 DEFERRE 0 0 OLAP API behavior for auto materialization
2 1 1 DEFERRE 0 0 OLAP API debug output disposition
TABULAR 2 1 1 DEFERRE 0 0 OLAP API cube densification
OVERFETCH 2 1 1 DEFERRE 0 0 OLAP API symmetric overfetch
PARTIAL 2 1 1 DEFERRE 0 0 OLAP API fetch type
0 1 1 1 DEFERRE 0 0 OLAP API generates WITH clause?
unique 2 1 1 DEFERRE 0 0 OLAP API hierarchy value type
NEVER 2 1 1 DEFERRE 0 0 When to load OLAP API library at server pro
1 3 1 1 DEFERRE 0 0 OLAP API min number of rows required to u
1 1 1 1 DEFERRE 0 0 OLAP API Enable source materialization
ALL 2 1 1 DEFERRE 0 0 OLAP API metadata reader mode
0 1 1 1 DEFERRE 0 0 OLAP API uses ODBO mode?
1 1 1 1 DEFERRE 0 0 OLAP API optimizes suppressions?
1 1 1 1 DEFERRE 0 0 OLAP API precomputes subqueries?
1 1 1 1 DEFERRE 0 0 OLAP API removes columns for materializat
1 1 1 1 DEFERRE 0 0 OLAP API sets NLS?
0 1 1 1 DEFERRE 0 0 OLAP API output Source definitions to trace
2 1 1 DEFERRE 0 0 OLAP API multi-join non-base hints
2 1 1 DEFERRE 0 0 OLAP API non-base hints
0 1 1 1 DEFERRE 0 0 OLAP API enable automatic dimension hints
1 1 1 1 DEFERRE 0 0 OLAP API enable automatic measure hints
2 1 1 DEFERRE 0 0 OLAP API dimension hints
1 1 1 1 DEFERRE 0 0 OLAP API enables AW join?
1 1 1 1 DEFERRE 0 0 OLAP API enables AW QDR merge?
2 1 1 DEFERRE 0 0 OLAP API generic hints
2 1 1 DEFERRE 0 0 OLAP API measure hints
1 1 1 1 DEFERRE 0 0 OLAP API enable optimization
16 3 1 1 DEFERRE 0 0 OLAP API prepare statement cache size
1 1 1 1 DEFERRE 0 0 OLAP API enable remove unused columns o
32 3 1 1 DEFERRE 0 0 OLAP API result set cache size
1 1 1 1 DEFERRE 0 0 OLAP API enable symmetric predicate for di
2 1 1 DEFERRE 0 0 OLAP API top dimension hints
2 1 1 DEFERRE 0 0 OLAP API top measure hints
1 1 1 1 DEFERRE 0 0 OLAP API enable bind variables optimization
0 1 1 1 DEFERRE 0 0 OLAP API stringifies order levels?
1000 3 1 1 DEFERRE 0 0 OLAP API suppression AW mask threshold
4000 3 1 1 DEFERRE 0 0 OLAP API suppression chunk size
1 1 1 1 DEFERRE 0 0 OLAP API uses models?
1 1 1 1 DEFERRE 0 0 OLAP API uses OLAP DML?
0 1 1 1 DEFERRE 0 0 OLAP API uses OLAP DML for rank?
0 3 1 1 IMMEDIAT 0 0 buffer size in KB needed for populate/query
0 1 1 0 IMMEDIAT 0 0 allow cross platform for pre10 compatible tab
0 1 1 0 IMMEDIAT 0 0 set cross platform info during file header rea
none 2 1 1 0 0 0 external tables code coverage parameter
none 2 1 1 0 0 0 external tables trace parameter
100000 3 1 1 IMMEDIAT 0 0 interval to check whether actses should yield

67194879 3 1 1 IMMEDIAT 0 0 bitvec to specify dumps prior to 4031 error


300 3 1 1 IMMEDIAT 0 0 Dump 4031 error once for each n-second int
100 3 1 1 IMMEDIAT 0 0 Maximum number of 4031 dumps for this pro
3600 3 1 1 IMMEDIAT 0 0 Dump 4031 SGA heapdump error once for e
10 3 1 1 IMMEDIAT 0 0 Maximum number of SGA heapdumps
0 1 1 0 IMMEDIAT 0 0 if TRUE, abort recovery on join reconfigurati
2 1 0 IMMEDIAT 0 0 List of parameters for rolling operation
3 1 0 0 0 0 number of active instances in the cluster dat
1 1 1 0 0 0 0 if TRUE optimize dlm reconfiguration for acti
1 1 1 0 0 0 0 Adaptive Direct Read
1 1 1 1 IMMEDIAT 0 0 enable/disable adaptive fetch in parallel grou
1 1 1 0 IMMEDIAT 0 0 governs whether ADDM gets run automatica
2 1 0 IMMEDIAT 0 0 comma-separated list of ADDM nodes to ski
1 1 1 0 IMMEDIAT 0 0 governs whether ADDM checks the input AW
1 1 1 1 IMMEDIAT 0 0 add stale mv to dependency list
0 1 1 1 IMMEDIAT 0 0 If TRUE, we will adjust the SQL/PLUS outpu
1 1 1 0 0 0 0 enable/disable affinity at run time
100 3 1 0 0 0 0 Number of aiowait timeouts before error is re
604800 3 1 0 0 0 0 seconds before an alert message is moved t
1 3 1 0 IMMEDIAT 0 0 Enable Alert Message Cleanup
1 3 1 0 IMMEDIAT 0 0 Enable Alert Message Purge
1 3 1 0 IMMEDIAT 0 0 Enable Background Alert Posting
0 1 1 0 0 0 0 should files be examined in creation order du
3 3 1 1 0 0 0 interval at which successful search in L1 sho
1 1 1 1 IMMEDIAT 0 0 allow for commutativity of +, * when compari
0 1 1 0 0 0 0 Allow error simulation for testing
0 1 1 1 IMMEDIAT 0 0 allow level without connect by
0 1 1 0 IMMEDIAT 0 0 allow read-only open even if database is cor
0 1 1 0 0 0 0 allow resetlogs even if it will cause corruption
0 1 1 0 0 0 0 Finish terminal recovery even if it may cause
2 1 0 0 0 0 treat all dblinks as shared
1 1 1 1 IMMEDIAT 0 0 enable alternate index-organized table leaf-b
CHOOSE 2 1 1 IMMEDIAT 0 0 always use this method for anti-join when po
CHOOSE 2 1 1 IMMEDIAT 0 0 always use this method for semi-join when p
0 1 1 1 IMMEDIAT 0 0 always favor use of star transformation
0 1 1 0 0 0 0 enable app ctx versioning
1 3 0 0 IMMEDIAT 0 0 number of AQ Time Managers to start
0 3 1 0 IMMEDIAT 0 0 scan limit for Time Managers to clean up IOT
0 3 1 0 IMMEDIAT 0 0 Maximum number of seconds of redos the s
0 3 1 0 0 0 0 ARCH I/O slaves
0 1 1 1 IMMEDIAT 0 0 Enable array update vector read
10 3 1 0 IMMEDIAT 0 0 Ratio of the number of in-memory samples t
1 1 1 0 IMMEDIAT 0 0 To enable or disable Active Session History
0 3 1 0 IMMEDIAT 0 0 Oracle internal dummy ASH parameter used
66 3 1 0 IMMEDIAT 0 0 The percentage above which if the in-memo
1 1 1 0 IMMEDIAT 0 0 To enable or disable Active Session samplin
0 1 1 0 IMMEDIAT 0 0 To enable or disable sampling every connec
1000 3 1 0 0 0 0 Time interval between two successive Active
1048618 6 1 0 IMMEDIAT 0 0 To set the size of the in-memory Active Sess
0 3 1 0 0 0 0 Osmlib test event
asm 2 1 0 0 0 0 ASM instance id
1 3 1 0 0 0 0 initial ACD chunks created
1 1 1 0 0 0 0 Discovery only raw devices
0 1 1 0 0 0 0 Enable disk resilvering for external redundan
1048576 3 1 0 0 0 0 allocation unit size
4096 3 1 0 0 0 0 metadata block size
2 1 0 IMMEDIAT 0 0 disk groups to mount automatically
2 1 0 IMMEDIAT 0 0 disk set locations for discovery
14400 3 1 1 IMMEDIAT 0 0 seconds to wait before dropping a failing dis
60 3 1 0 0 0 0 timeout before offlined disks get dropped (in
10000 3 1 0 0 0 0 max number of concurrent disks to emulate
0 3 1 0 0 0 0 timeout before emulation begins (in 3s ticks)
0 3 1 0 0 0 0 KFDP event
ufs 2 1 0 0 0 0 library search order for discovery
1048576 3 1 0 0 0 0 Maximum size of individual I/O request
1 3 1 1 IMMEDIAT 0 0 number of processes for disk rebalancing
131072 3 1 1 0 0 0 ASM file stripe size
8 3 1 1 0 0 0 ASM file stripe width
18 3 1 0 IMMEDIAT 0 0 Max/imum time to wait before asmb exits
1 1 1 0 0 0 0 ASSM default
1 1 1 0 IMMEDIAT 0 0 if TRUE, issue recovery claims asynchronou
1 1 1 0 0 0 0 if TRUE, issue recovery reads asynchronous
C:\ORACLE\P 2 1 0 DEFERRE 0 0 Directory in which auditing files are to reside
0 1 1 0 0 0 0 enable sys auditing
NONE 2 1 0 0 0 0 enable system auditing
1 1 1 0 IMMEDIAT 0 0 if TRUE, do not prepare a buffer when the m
0 1 1 0 0 0 0 AWR Corrupt Mode
2 1 0 IMMEDIAT 0 0 Disable flushing of specified AWR tables
0 1 1 0 IMMEDIAT 0 0 Enable/Disable Flushing AWR Workload Me
0 1 1 0 IMMEDIAT 0 0 Enable/Disable Flushing AWR Workload Me
1 1 1 0 IMMEDIAT 0 0 Enable/disable AWR MMON CPU Usage Tra
0 1 1 0 0 0 0 AWR Restrict Mode
200 3 1 0 IMMEDIAT 0 0 Setting for AWR SQL Child Limit
partial 2 0 0 0 0 0 Core Size for Background Processes
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 Detached process dump directory
0 3 1 0 DEFERRE 0 0 BACKUP Disk I/O slaves
1048576 3 1 0 0 0 0 memory to reserve from the large pool
0 3 1 1 IMMEDIAT 0 0 specifies buffer size to be used for kgc comp
0 3 1 1 IMMEDIAT 0 0 specifies number of iterations used for kgc c
0 3 1 1 IMMEDIAT 0 0 specifies compression type used for kgc com
0 3 1 1 IMMEDIAT 0 0 number of the ksfq buffers used for backup/r
0 3 1 1 IMMEDIAT 0 0 size of the ksfq buffer used for backup/restor
4294967294 3 1 1 IMMEDIAT 0 0 largest gap in an incremental/optimized back
0 1 1 0 DEFERRE 0 0 BACKUP Tape I/O slaves
8 3 1 1 IMMEDIAT 0 0 number of bitmaps to store for each datafile
104857600 3 1 1 IMMEDIAT 0 0 maximum size of all change tracking buffer a
1 3 1 1 IMMEDIAT 0 0 mininum number of extents to allocate per b
2097152 3 1 1 IMMEDIAT 0 0 size of one change tracking buffer allocation
0 3 1 1 IMMEDIAT 0 0 change tracking datafile chunk size, in bytes
262144 3 1 0 0 0 0 change tracking reserved crash recovery SG
0 3 1 1 IMMEDIAT 0 0 block size of change tracking file, in bytes
0 3 1 1 IMMEDIAT 0 0 extent size of change tracking file, in bytes
2 1 1 IMMEDIAT 0 0 change tracking file for fixed tables
0 3 1 1 IMMEDIAT 0 0 initial number of entries in the private change
0 3 1 1 IMMEDIAT 0 0 total size of all public change tracking dba bu
1048576 3 1 0 0 0 0 maximum memory allow for BITMAP MERG
1 1 1 1 IMMEDIAT 0 0 controls extensions to partition pruning for ge
0 1 1 0 0 0 0 blank trimming semantics parameter
128 3 1 0 0 0 0 number of consecutive blocks per global cac
1 1 1 1 IMMEDIAT 0 0 change tracking possible
0 3 1 1 IMMEDIAT 0 0 debug level for bloom filtering
1 1 1 1 IMMEDIAT 0 0 enables or disables bloom filter
1 1 1 1 IMMEDIAT 0 0 allow rewrites with multiple MVs and base ta
100 3 1 1 IMMEDIAT 0 0 buffer busy wait time in centiseconds
2 1 0 0 0 0 Number of database blocks/latches in keep b
2 1 0 0 0 0 Number of database blocks/latches in recycl
0 3 1 0 IMMEDIAT 0 0 flow control threshold value
0 3 1 0 IMMEDIAT 0 0 maximum size of the message allowed in me
0 1 1 0 IMMEDIAT 0 0 Stop enforcing flow control for buffered queu
0 1 1 1 IMMEDIAT 0 0 DEFERRED MV creation skipping MV log se
0 3 1 1 0 0 0 how many blocks should we allocate per free
1 1 1 0 IMMEDIAT 0 0 if TRUE, generate a BWR for a flushed PI
1 1 1 1 IMMEDIAT 0 0 enable the use of bitmap plans for tables w.
0 1 1 0 IMMEDIAT 0 0 if TRUE, enable cache stats monitoring
120 3 1 0 0 0 0 CGS reconfiguration timeout interval
300 3 1 0 0 0 0 CGS send timeout value
1 1 1 0 IMMEDIAT 0 0 perform block check after checksum if both a
0 3 1 1 IMMEDIAT 0 0 check tablespace thresholds
3 1 0 IMMEDIAT 0 0 max number of circuits
100 3 1 0 0 0 0 no. of undo entries to apply per transaction c
0 1 1 1 0 0 0 close cursors cached by PL/SQL at each com
0 1 0 0 0 0 0 if TRUE startup in cluster database mode
1 3 1 0 0 0 0 number of instances to use for sizing cluster
2 1 0 0 0 0 interconnects for RAC use
clss 2 1 0 0 0 0 cluster library selection
0 1 1 1 IMMEDIAT 0 0 collapse wait history
1 1 1 0 DEFERRE 0 0 Collect Statistics v$undostat
0 3 1 1 0 0 0 Column compression ratio
0 1 1 1 IMMEDIAT 0 0 turn off predicate-only column elimination
1 3 1 1 IMMEDIAT 0 0 column usage tracking
1 3 1 0 0 0 0 Bias this node has toward not preparing in a
2 1 1 IMMEDIAT 0 0 transaction commit log write behaviour
10.2.0.2.0 2 0 0 0 0 0 Database will be completely compatible with
16384 3 1 1 IMMEDIAT 0 0 Size of the compilation call heaps extents
1 1 1 1 IMMEDIAT 0 0 enable complex view merging
0 3 1 0 0 0 0 control file block size in bytes
0 1 1 0 IMMEDIAT 0 0 dump the system states after controlfile enqu
900 3 1 0 0 0 0 control file enqueue timeout in seconds
3 1 0 0 0 0 control file initial section size
3 1 0 0 0 0 control file max expansion rate
OFF 2 1 0 IMMEDIAT 0 0 controlfile update sanity check
C:\ORACLE\ 2 0 0 0 0 0 control file names list
7 3 0 0 IMMEDIAT 0 0 control file record keep time in days
0 1 1 1 IMMEDIAT 0 0 enables conversion of set operator to join
0 3 1 0 0 0 0 parallel recovery coordinator side extra mess
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 Core dump directory
2 1 0 0 0 0 corrupted undo segment list
1 1 1 1 IMMEDIAT 0 0 enables costing of equality semi-join
2 3 1 0 IMMEDIAT 0 0 number of CPUs for this instance
0 3 1 1 IMMEDIAT 0 0 divisor for converting CPU cost to I/O cost
8388608 3 1 0 0 0 0 size of create bitmap buffer for bitmap index
2 1 1 IMMEDIAT 0 0 create stored outlines for DML statements
1 1 1 0 IMMEDIAT 0 0 if TRUE, grant lock for CR requests when blo
AUTO 2 1 0 IMMEDIAT 0 0 turn 3-way CR grants off, make it automatic,
1 1 1 0 IMMEDIAT 0 0 if TRUE, flush redo log before serving a CR
1 1 1 1 IMMEDIAT 0 0 Enable HWM brokered CTAS
400 3 1 0 IMMEDIAT 0 0 maximum size of the cursor bind capture are
900 3 1 0 IMMEDIAT 0 0 interval (in seconds) between two bind captu
0 1 1 0 0 0 0 frame & bind buffer caching
393 3 1 1 DEFERRE 0 0 additional number of buffers a cursor can pin
2 3 1 0 0 0 0 Shared cursor features enabled bits.
1 1 1 1 IMMEDIAT 0 0 enable collection and display of cursor plans
1 3 1 1 IMMEDIAT 0 0 version of cursor plan hash value
1 1 1 1 IMMEDIAT 0 0 enables/disables using unparse to build proj
EXACT 2 0 1 IMMEDIAT 0 0 cursor sharing mode
1 1 0 0 0 0 0 use more memory in order to get faster exec
15 3 1 0 0 0 0 Hash table buckets for cursor stats (2^).
4 3 1 0 0 0 0 Heaps/latches for cursor stats.
0 1 1 0 0 0 0 debug process startup
1 1 1 0 IMMEDIAT 0 0 Enable dbwriter asynchronous writes
0 3 1 0 0 0 0 DBWR I/O slaves
300 3 1 0 IMMEDIAT 0 0 dbwriter scan interval
0 3 1 0 IMMEDIAT 0 0 Enable dbwriter tracing
0 6 1 0 IMMEDIAT 0 0 Size of cache for 16K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 2K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 32K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 4K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 8K buffers
1 3 1 0 0 0 0 Touch count set when buffer cooled
0 1 1 0 0 0 0 Make CR buffers always be too cold to keep
2 3 1 0 0 0 0 Touch count which sends a buffer to head of
0 3 1 0 0 0 0 Touch count set when buffer moved to head
3 3 1 0 0 0 0 Touch count which sends a buffer to head of
1 1 1 0 IMMEDIAT 0 0 Always perform block check and checksum f
1 1 1 0 IMMEDIAT 0 0 adjacent cache buffer checks - low blkchk ov
79380224 3 1 0 IMMEDIAT 0 0 adjacent cache buffer check level
1 1 1 0 0 0 0 Align Direct Reads
83000 3 1 0 0 0 0 Number of database blocks cached in memo
0 3 1 0 0 0 0 Number of database blocks cached in memo
0 1 1 0 0 0 0 Always clone data blocks on get (for debugg
0 3 1 0 0 0 0 buffer header tracing (non-zero only when de
2 3 1 0 0 0 0 buffer header tracing level
0 3 1 0 0 0 0 number of unmapped buffers (for tracking sw
0 2 1 0 0 0 0 protect database blocks (true only when deb
0 3 1 0 0 0 0 protect database blocks (for strictly internal u
0 2 0 1 IMMEDIAT 0 0 header checking and data and index block c
typical 2 0 0 IMMEDIAT 0 0 store checksum in db blocks and check durin
0 1 1 0 IMMEDIAT 0 0 Check more and dump block before image fo
1 1 1 0 IMMEDIAT 0 0 check objd and typ on cache disk read
0 1 1 0 IMMEDIAT 0 0 do full block read even if some blocks are in
262144 3 1 0 0 0 0 Number of database block hash buckets
1024 3 1 0 0 0 0 Number of database block hash latches
0 3 1 0 0 0 0 Fraction of writes for high priority reasons
2 3 1 0 0 0 0 Initial Percentage of buffers to maintain know
8 3 1 0 0 0 0 number of lru latches
6 3 1 0 0 0 0 Maximum Allowed Number of CR buffers pe
40 3 1 0 0 0 0 Percentage of buffers to inspect when lookin
0 3 1 0 0 0 0 Fraction of writes for medium priority reason
1 3 1 0 0 0 0 Number of NUMA nodes
0 3 1 0 IMMEDIAT 0 0 Prefetch limit in blocks
10 3 1 0 IMMEDIAT 0 0 Prefetch quota as a percent of cache size
8192 3 0 0 0 0 0 Size of database block in bytes
4194304 6 1 0 0 0 0 Size of shared table scan read buffer
0 1 1 0 IMMEDIAT 0 0 generate redo for temp blocks
0 1 1 0 IMMEDIAT 0 0 trace buffer protect calls
on 2 0 0 IMMEDIAT 0 0 Buffer cache sizing advisory
128 3 1 0 0 0 0 cache advisory simulation batch size
4 3 1 0 0 0 0 cache advisory sampling factor
0 1 1 0 0 0 0 check for costly crx examination functions
1 1 1 0 0 0 0 Buffer Cache Pre-Warm Enabled : hidden pa
3 1 1 IMMEDIAT 0 0 maximum number of cr pins a process may h
0 6 1 0 IMMEDIAT 0 0 Size of DEFAULT buffer pool for standard bl
696254464 6 0 0 IMMEDIAT 0 0 Actual size of DEFAULT buffer pool for stand
1 1 1 1 IMMEDIAT 0 0 enable db change notification
2 1 1 IMMEDIAT 0 0 default database location
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #1
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #2
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #3
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #4
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #5
world 2 0 0 0 0 0 directory part of global database name store
0 1 1 0 IMMEDIAT 0 0 enable fast object drop sanity check
1 1 1 0 IMMEDIAT 0 0 enable fast object checkpoint
1 1 1 0 IMMEDIAT 0 0 enable fast object truncate
200 3 0 0 0 0 0 max allowable # db files
1048576 3 1 0 DEFERRE 0 0 Sequential I/O buf size
128 3 1 1 IMMEDIAT 0 0 multiblock read count for regular clients
4 3 1 0 IMMEDIAT 0 0 Block formatting I/O buf count
128 3 1 1 IMMEDIAT 0 0 db block to be read each IO
2 1 1 0 0 0 datafile name convert patterns and strings fo
11 3 1 0 0 0 0 number of noncontiguous db blocks to be pr
8 3 1 1 IMMEDIAT 0 0 multiblock read count for regular clients
1440 3 0 0 IMMEDIAT 0 0 Maximum Flashback Database log retention
1050 3 1 0 0 0 0 System-wide simultaneous buffer operations
5 3 1 0 0 0 0 Buffer handles cached each process
0 1 1 1 IMMEDIAT 0 0 track hot blocks for hash latch contention
1 1 1 1 IMMEDIAT 0 0 index block checking override parameter
0 6 1 0 IMMEDIAT 0 0 Size of KEEP buffer pool for standard block
25 3 1 0 0 0 0 Number of buffers which force dirty queue to
0 1 1 0 0 0 0 Enable scn based lost write detection mecha
OFF 2 1 0 IMMEDIAT 0 0 MTTR advisory
0 3 1 0 0 0 0 number of partitions for MTTR advisory
64 3 1 0 0 0 0 MTTR simulation sampling factor
2 1 0 IMMEDIAT 0 0 MTTR simulation targets
256 3 1 0 0 0 0 MTTR simulation trace size
0 1 1 0 0 0 0 dump trace entries to alert file
TEST8 2 0 0 0 0 0 database name specified in CREATE DATA
0 1 1 0 0 0 0 fast object checkpoint ordered by lrba
1 1 1 0 0 0 0 enable ksr in object checkpoint/reuse
50 3 1 0 0 0 0 Percent of default buffer pool considered hot
0 3 1 0 0 0 0 Percent of keep buffer pool considered hot
0 3 1 0 0 0 0 Percent of recycle buffer pool considered ho
2 3 1 0 0 0 0 size of cache created per cpu in deferred ca
C:\oracle\fla 2 0 0 IMMEDIAT 0 0 default database recovery file location
1.468E+10 6 0 0 IMMEDIAT 0 0 database recovery files size limit
2 1 0 IMMEDIAT 0 0 default database recovery temporal file locat
0 6 1 0 IMMEDIAT 0 0 Size of RECYCLE buffer pool for standard b
1 1 1 1 IMMEDIAT 0 0 row overlap checking override parameter for
1 1 1 0 0 0 0 buffer cache deferred create
TEST8 2 0 0 0 0 0 Database Unique Name
0 3 1 0 0 0 0 Number of writes DBWR should wait for
1048576 6 1 0 0 0 0 Size of memory allocated to dbwriter for coa
131072 3 1 0 IMMEDIAT 0 0 Limit on size of coalesced write
1 1 1 0 0 0 0 If FALSE, DBWR will not downgrade IMU txn
0 1 1 0 0 0 0 maintain dbwr histogram statistics in x$kcbb
0 3 1 0 0 0 0 Max number of outstanding DB Writer IOs
1 3 0 0 0 0 0 number of background database writer proc
0 1 1 0 0 0 0 Enable lost write detection mechanism
0 1 1 1 IMMEDIAT 0 0 Disable NOWAIT DML lock acquisitions
10 3 1 0 IMMEDIAT 0 0 PMON dead process scan interval
0 1 1 1 IMMEDIAT 0 0 wait for debug
10 3 1 0 0 0 0 dedicated server poll count
0 1 1 0 0 0 0 dedicated server post/wait
0 1 1 0 0 0 0 dedicated server post/wait call
0 3 1 0 0 0 0 default encryption algorithm
1 1 1 1 IMMEDIAT 0 0 sanity check on default selectivity for like/ran
1 1 1 1 0 0 0 delays index maintenance until after MV is re
C:\ORACLE\P 2 1 0 IMMEDIAT 0 0 data guard broker configuration file #1
C:\ORACLE\P 2 1 0 IMMEDIAT 0 0 data guard broker configuration file #2
TEST8_XPT 2 1 0 IMMEDIAT 0 0 service names for broker use
0 1 1 0 IMMEDIAT 0 0 start Data Guard broker framework (DMON p
1 1 1 0 0 0 0 start DIAG daemon
1 1 1 1 IMMEDIAT 0 0 Turn off diag diagnostics
1 1 1 1 IMMEDIAT 0 0 control dimension skip when null feature
0 1 1 1 IMMEDIAT 0 0 adaptive shrunk aggregation
0 1 1 1 IMMEDIAT 0 0 disable datalayer sampling
0 1 1 1 IMMEDIAT 0 0 Turn off connection duplexing
0 1 1 1 IMMEDIAT 0 0 fast aggregation
0 1 1 0 0 0 0 disable file locks for control, data, redo log fi
0 1 1 1 IMMEDIAT 0 0 disable function-based index matching
0 1 1 0 0 0 0 Disable Health Check
0 1 1 0 IMMEDIAT 0 0 Disable Oracle executable image checking
0 1 1 0 IMMEDIAT 0 0 Disable incremental checkpoints for thread r
0 1 1 0 IMMEDIAT 0 0 Disable incremental recovery checkpoint me
0 1 1 0 0 0 0 disable instance type check for ksp
0 1 1 0 0 0 0 disable interface checking at startup
0 1 1 0 IMMEDIAT 0 0 disable kcbh(c)xor OSD functionality
0 1 1 0 0 0 0 disable latch-free SCN writes using 32-bit co
0 1 1 0 0 0 0 disable latch-free SCN writes using 64-bit co
0 1 1 0 IMMEDIAT 0 0 Disable logging
0 1 1 0 0 0 0 disable multiple block size support (for debu
0 1 1 0 0 0 0 Disable logging to NT event log
0 1 1 0 0 0 0 disable odm feature
0 1 1 1 IMMEDIAT 0 0 Disable the new recoverable recovery mech
0 1 1 0 IMMEDIAT 0 0 Disable the read optimization during media r
0 1 1 1 IMMEDIAT 0 0 disable row sampling IO optimization
0 1 1 0 0 0 0 disable the fix for bug 1402161
0 1 1 0 IMMEDIAT 0 0 Disable self-tune checkpointing
0 1 1 0 IMMEDIAT 0 0 disable streams pool auto tuning
4294967294 3 1 0 IMMEDIAT 0 0 disable system state dump
0 3 1 0 IMMEDIAT 0 0 disable txn layer alert
0 1 1 0 0 0 0 enable OLTP mode
1 1 1 0 0 0 0 Use asynch I/O for random access devices
2 1 0 IMMEDIAT 0 0 specifications of dispatchers
2 1 0 0 0 0 scale to display rate statistic (100ths of a sec
2 1 0 0 0 0 time-to-live for rate statistic (100ths of a seco
0 1 1 1 IMMEDIAT 0 0 enables unnesting of in subquery into distinc
60 3 1 0 0 0 0 number of seconds a distributed transaction
200 3 1 0 0 0 0 number of seconds RECO holds outbound c
2 1 0 0 0 0 Trace string of global enqueue type(s)
30000 3 1 0 0 0 0 DLM send timeout value
1036 3 1 0 0 0 0 dml locks - one for each table modified in a t
1 1 1 0 IMMEDIAT 0 0 enable modification monitoring
1 3 1 1 IMMEDIAT 0 0 max percentage of the shared pool to use fo
2000 3 1 0 0 0 0 maximum number of rows from one call to do
200 3 1 0 0 0 0 maximum number of rows for one call to dom
256 3 1 1 IMMEDIAT 0 0 drop_table_granule
1 1 1 1 IMMEDIAT 0 0 reduce SGA memory use during drop of a pa
0 1 1 0 IMMEDIAT 0 0 start DG Broker monitor (DMON process)
0 1 1 0 IMMEDIAT 0 0 enable full cache flush for parallel execution
6553664 3 1 1 IMMEDIAT 0 0 Dynamic Sampling Service defaults: #IOs an
131072 3 1 1 IMMEDIAT 0 0 size of Decision Tree Classification work are
1 1 1 1 IMMEDIAT 0 0 Decision Tree Binning Enabled
0 3 1 1 IMMEDIAT 0 0 Decision Tree Binning Test ID
1 1 1 1 IMMEDIAT 0 0 Decision Tree Using Compressed Bitmaps E
1 3 1 1 IMMEDIAT 0 0 maximum number of surrogates
1 1 1 1 IMMEDIAT 0 0 Decision Tree Pruning Enabled
0 1 1 0 0 0 0 dummy instance started by RMAN
0 1 1 1 IMMEDIAT 0 0 dump common subexpressions
0 1 1 1 IMMEDIAT 0 0 dump connect by loop error message into trc
0 1 1 1 0 0 0 dump comp/exec heap sizes to tryace file
120 3 1 0 0 0 0 trace dump time interval limit (in seconds)
5 3 1 0 0 0 0 max number of dump within dump interval
0 3 1 1 0 0 0 dump top level query parse tree to trace
1 1 1 0 IMMEDIAT 0 0 if TRUE enables IPC dump at instance evict
local 2 1 0 0 0 0 scope of sysstate dump during instance term
global 2 1 0 0 0 0 scope of trace dump during a process crash
1 1 1 0 0 0 0 rls policies are dynamic
30 3 1 0 0 0 0 delay threshold (in seconds) between sendin
1 1 1 1 IMMEDIAT 0 0 enables elimination of common sub-express
1 1 1 0 DEFERRE 0 0 enable block level recovery
0 1 1 0 0 0 0 enable commit SCN caching for all transactio
0 3 1 0 0 0 0 to enable default implementation of affinity o
1 1 1 1 IMMEDIAT 0 0 enable dml lock escalation against partitione
1 1 1 1 IMMEDIAT 0 0 use check constraints on the table for valida
0 1 1 1 0 0 0 enable fast refresh after move tablespace
0 1 1 1 IMMEDIAT 0 0 TRUE - enable hash cluster overflow based
1 1 1 0 IMMEDIAT 0 0 enable HWM synchronization
0 1 1 0 0 0 0 Enable List I/O
0 1 1 0 0 0 0 Enable skgxp driver usage for native net
1 1 1 0 0 0 0 Enable NUMA specific optimizations
1 1 1 1 IMMEDIAT 0 0 enable or disable MV refresh scheduling (rev
1 1 1 0 IMMEDIAT 0 0 Enable reliable latch waits
1 1 1 0 IMMEDIAT 0 0 enable RLB metrics processing
0 1 1 1 IMMEDIAT 0 0 use the row shipping optimization for wide ta
0 1 1 0 0 0 0 temporary to disable/enable kgh policy
1 1 1 0 IMMEDIAT 0 0 enable tablespace alerts
1 1 1 1 IMMEDIAT 0 0 enable type dependent selectivity estimates
0 1 1 0 0 0 0 debug enqueue multi instance
507 3 1 0 0 0 0 enqueue hash table length
2 3 1 0 0 0 0 enqueue hash chain latches
3000 3 1 0 0 0 0 locks for managed enqueues
1256 3 1 0 0 0 0 resources for enqueues
2 1 0 0 0 0 debug event control - default null string
1 1 1 1 IMMEDIAT 0 0 expand aggregates
0 1 1 1 IMMEDIAT 0 0 allow additional messages to be generated d
1 1 1 1 IMMEDIAT 0 0 do runtime pruning in iterator if set to TRUE
4 3 1 0 IMMEDIAT 0 0 number of times to CR serve before downgra
0 1 1 0 0 0 0 if TRUE enables fair remote convert
2 1 0 IMMEDIAT 0 0 FAL client
2 1 0 IMMEDIAT 0 0 FAL server list
1 1 1 1 IMMEDIAT 0 0 enable/disable fast dual
1 1 1 1 IMMEDIAT 0 0 enable/disable index fast full scan
0 3 1 0 IMMEDIAT 0 0 cluster availability target time in RAC environ
0 3 1 0 IMMEDIAT 0 0 Upper bound on recovery reads
0 3 1 0 IMMEDIAT 0 0 MTTR target of forward crash recovery in se
LOW 2 1 0 IMMEDIAT 0 0 max number of parallel recovery slaves that
automatic 2 1 1 0 0 0 Set Frequent Itemset Counting Algorithm
131072 3 1 1 IMMEDIAT 0 0 size of Frequent Itemset Counting work area
20 3 1 1 DEFERRE 0 0 Frequent Itemset Counting Maximum Itemse
1024 3 1 1 DEFERRE 0 0 Frequent Itemset Counting Minimum BITMA
0 1 1 1 DEFERRE 0 0 Frequent Itemset Counting Out Of Memory C
2 1 1 IMMEDIAT 0 0 fifth spare parameter - string
2 1 0 0 0 0 Network Adapters for File I/O
2 1 0 0 0 0 FILEMAP directory
2 1 0 0 0 0 IO operations on filesystem files
0 1 1 0 IMMEDIAT 0 0 enable file mapping
3 1 1 IMMEDIAT 0 0 first spare parameter - integer
2 1 0 IMMEDIAT 0 0 fixed SYSDATE value
2 1 1 IMMEDIAT 0 0 bug fix control parameter
0 1 1 0 IMMEDIAT 0 0 Allow enabling flashback on noarchivelog da
1800 3 1 0 0 0 0 Flashback barrier interval in seconds
10 3 1 0 0 0 0 Number of flashback copy latches
1 1 1 0 IMMEDIAT 0 0 Use flashback fuzzy barrier
8388608 3 1 0 0 0 0 flashback generation buffer size
20 3 1 0 0 0 0 Flashback hint barrier percent
600 3 1 0 0 0 0 flashback logfile enqueue timeout for opens
0 3 1 0 IMMEDIAT 0 0 Specify Flashback log I/O error behavior
100 3 1 0 0 0 0 Minimum flashback log size
1000 3 1 0 0 0 0 Flashback log size
0 6 1 0 IMMEDIAT 0 0 Maximum flashback log size in bytes (OS lim
2048 3 1 0 0 0 0 Maximum number of flashback logs per flash
128 3 1 0 0 0 0 Desired number of flashback logs per flashb
1800 3 1 0 0 0 0 Flashback standby barrier interval in second
0 1 1 0 IMMEDIAT 0 0 Print verbose information about flashback da
4 3 1 0 IMMEDIAT 0 0 Desired flashback write size in quarter MB
0 1 1 1 IMMEDIAT 0 0 force use of trunc for datefolding rewrite
0 1 1 1 IMMEDIAT 0 0 control new query rewrite features
0 1 1 1 IMMEDIAT 0 0 executes concatenation of rollups using tem
2 1 1 IMMEDIAT 0 0 fourth spare parameter - string
1 1 1 1 IMMEDIAT 0 0 enable full partition-wise join when TRUE
1 1 1 1 IMMEDIAT 0 0 enable group-by and aggregation using hash
1 1 1 1 DEFERRE 0 0 enable use of one comparison of all group b
1 1 1 0 0 0 0 if TRUE, enable fast reconfiguration for gcs l
0 3 1 0 0 0 0 number of gcs resource hash latches to be a
1 1 1 0 IMMEDIAT 0 0 if TRUE, process gcs requests during instan
3 1 0 0 0 0 number of gcs resources to be allocated
0 3 1 0 0 0 0 number of background gcs server processes
3 1 0 0 0 0 number of pcm shadow locks to be allocated
50 3 1 0 IMMEDIAT 0 0 dynamic affinity limit
1200 3 1 0 IMMEDIAT 0 0 dynamic affinity minimum activity per minute
10 3 1 0 0 0 0 if non zero, enable dynamic object affinity
0 1 1 0 0 0 0 if TRUE, use async memcpy
1 1 1 0 IMMEDIAT 0 0 if TRUE, check for stale blocks
1 1 1 0 IMMEDIAT 0 0 if TRUE, coalesce recovery reads
3 3 1 0 IMMEDIAT 0 0 how long to defer down converts for hot buff
1 1 1 0 0 0 0 if TRUE, get dynamic affinity locks
103 3 1 0 0 0 0 global cache element percent
2 1 0 0 0 0 mapping between file numbers and global ca
AUTO 2 1 0 IMMEDIAT 0 0 turn global lru off, make it automatic, or turn
1 3 1 0 0 0 0 set the integrity check level
1 1 1 0 0 0 0 if TRUE, make recovery buffers current
8 3 1 0 0 0 0 number of latches per LMS process
0 3 1 0 0 0 0 maximum number of bids which can be prep
1 1 1 0 IMMEDIAT 0 0 if TRUE, kcl statistics are maintained
1 1 1 0 0 0 0 if TRUE, enable dynamic undo affinity
1 1 1 0 0 0 0 if TRUE, get affinity locks for undo
1 1 1 0 0 0 0 if TRUE, allow CR pins on PI and WRITING
1 1 1 0 0 0 0 if TRUE, vector read current buffers
1 1 1 1 IMMEDIAT 0 0 controls extensions to partition pruning for ge
1 3 1 0 IMMEDIAT 0 0 if 1 or higher enables GES deadlock detectio
1 1 1 0 IMMEDIAT 0 0 if TRUE enables GES diagnostics
1 3 1 0 IMMEDIAT 0 0 if greater than 0 enables GES system health
1 1 1 1 IMMEDIAT 0 0 enables filter for global index with partition e
2 1 0 0 0 0 Global Application Context Pool Size in Byte
0 1 0 1 IMMEDIAT 0 0 enforce that database links have same name
3 3 1 1 IMMEDIAT 0 0 groupby nopushdown cut ratio
5000 3 1 1 IMMEDIAT 0 0 groupby/orderby don't combine threshold
1 1 1 1 IMMEDIAT 0 0 enable anti/semi join for the GS query
3 3 1 0 IMMEDIAT 0 0 hang analysis num call stacks
0 3 1 0 0 0 0 Hang Management detection interval
0 1 1 0 0 0 0 if TRUE enable H.A.R.D specific format chan
131072 3 1 1 0 0 0 size of in-memory hash work area
1 1 1 1 0 0 0 enable/disable hash join
0 3 1 1 IMMEDIAT 0 0 number of blocks hash join will read/write at
0 3 1 0 IMMEDIAT 0 0 high server thresholds
0 3 1 0 0 0 0 SGA starting address (high order 32-bits on
50 3 1 1 0 0 0 hash-join bit filtering threshold (0 always ena
1 1 1 0 IMMEDIAT 0 0 enable automatic server DD updates in HS a
10 3 1 1 IMMEDIAT 0 0 HWM synchronization threshold in percentag
1 1 1 0 0 0 0 enable conventional index maintenance for i
100000000 3 1 1 IMMEDIAT 0 0 proportionality constant for dop vs. rows in in
4 1 0 0 0 0 include file in init.ora
0 1 1 0 IMMEDIAT 0 0 ignore DESC in indexes, sort those columns
1 1 1 0 IMMEDIAT 0 0 if TRUE, propagate commit SCN immediatel
1 1 1 1 IMMEDIAT 0 0 improved outer-join cardinality calculation
1 1 1 1 IMMEDIAT 0 0 enable the improvements for computing the
1 1 1 0 0 0 0 Activate Instance Membership Recovery fea
3 3 1 0 0 0 0 Maximum wait for IMR disk voting (seconds)
300 3 1 0 0 0 0 Maximum Reconfiguration delay (seconds)
600 3 1 0 0 0 0 Maximum wait for split-brain resolution (seco
3 3 1 0 0 0 0 in memory undo pools
30 3 1 0 IMMEDIAT 0 0 Minimum number of writes for incremental re
1 1 1 1 IMMEDIAT 0 0 enable the use of index joins
100 3 1 1 IMMEDIAT 0 0 index prefetching factor
10 3 1 0 IMMEDIAT 0 0 number of granules to process for deferred c
%ORACLE_HO 2 1 0 0 0 0 File containing SQL statements to execute u
0 3 1 0 0 0 0 inject fault in the startup code
1 1 1 0 IMMEDIAT 0 0 during parallel inserts high water marks are b
2 1 0 0 0 0 list of instance group names
TEST8 2 0 0 0 0 0 instance name supported by the instance
0 3 1 0 0 0 0 instance number
RDBMS 2 1 0 0 0 0 type of instance to be executed
5 3 1 1 0 0 0 period an instance can retain a newly acquir
1 1 1 0 0 0 0 if TRUE, checksum interconnect blocks
1 1 1 1 IMMEDIAT 0 0 Enable intra-partition updates/deletes
1 1 1 1 IMMEDIAT 0 0 Enable intra-partition updates/deletes with ra
1 1 1 1 IMMEDIAT 0 0 Make in memory undo for top level transactio
0 3 1 0 0 0 0 inject fault in the ior serialize code
1 3 1 0 DEFERRE 0 0 Per attempt IOs picked
500 3 1 0 DEFERRE 0 0 IOs issued before completion check
4194304 6 1 0 0 0 0 Size of I/O buffer pool from SGA
0 1 1 0 0 0 0 Do not use I/O slaves
0 3 1 0 0 0 0 max allowed size in bytes of a Java sessions
8388608 6 0 0 IMMEDIAT 0 0 Actual size in bytes of java pool
8388608 6 0 0 IMMEDIAT 0 0 size in bytes of java pool
0 3 1 0 0 0 0 warning limit on size in bytes of a Java sessi
5 3 1 0 0 0 0 Wakeup interval in seconds for job queue co
10 3 0 0 IMMEDIAT 0 0 number of job queue slave processes
1 1 1 0 IMMEDIAT 0 0 if TRUE, call kjbcommit
0 1 1 0 IMMEDIAT 0 0 if TRUE, conservatively log flush before CR
1 1 1 0 0 0 0 if TRUE, record le history
1 1 1 0 IMMEDIAT 0 0 if TRUE, reject pings on blocks in middle of a
32 3 1 0 0 0 0 grouping for undo block locks
128 3 1 0 0 0 0 number of locks per undo segment
0 1 1 0 IMMEDIAT 0 0 allocate dbas after populating data buffers
0 1 1 0 0 0 0 remote column size does not get modified
0 1 1 0 0 0 0 kernel message network driver
1024 3 1 0 0 0 0 size of kffmap_hash table
2048 3 1 0 0 0 0 size of kffmop_hash table
1 3 1 0 0 0 0 max kghdsidx count
5 3 1 0 0 0 0 max percentage of shared pool size to be us
9 3 1 0 0 0 0 index to the bucket count array
1 1 1 0 0 0 0 fixed extent size for library cache memory al
0 1 1 0 0 0 0 whether KGL hash collision is possible
1024 3 1 0 0 0 0 extent size for library cache heap 0
30 3 1 0 0 0 0 KGL keep cache minimum threshold
20 3 1 0 0 0 0 KGL keep cache retain threshold
52428800 3 1 0 0 0 0 maximum heap size before KGL writes warn
0 3 1 0 0 0 0 number of library cache latches
1 1 1 0 0 0 0 whether KGL to support multi-instance invali
1 1 1 0 0 0 0 whether KGL to support multi-instance locks
1 1 1 0 0 0 0 whether KGL to support multi-instance pins
10 3 1 0 0 0 0 maximum length of the KGL object cache lru
15 3 1 0 0 0 0 time to wait for locks and pins before timing
512 3 1 0 0 0 0 # of mutex latches if CAS is not supported.
1 1 1 0 IMMEDIAT 0 0 enable killing controlfile enqueue blocker on
1 3 1 0 0 0 0 if greater than 0 enables killing enqueue bloc
0 1 1 0 IMMEDIAT 0 0 Kill Java threads and do sessionspace migra
0 1 1 1 0 0 0 trace expression substitution
1 1 1 0 0 0 0 Turning on this will make KKS use mutex for
0 1 1 1 0 0 0 allow kolf to use slffopen
0 3 1 1 0 0 0 tracing level for library cache subheap level
30000 3 1 1 IMMEDIAT 0 0 default timeout for internal oradebug comma
0 3 1 0 0 0 0 ksdxw context initialization flag
1000 3 1 0 0 0 0 ksdxw number of buffers in buffered mode
10 3 1 0 0 0 0 number of watchpoints on a per-process bas
10 3 1 0 0 0 0 number of watchpoints to be shared by all pr
4 3 1 0 0 0 0 number of PCs to collect in the stack when w
999 3 1 1 DEFERRE 0 0 KSD test parmeter
60000 3 1 0 IMMEDIAT 0 0 amount of time a dying process is spared by
256 3 1 0 IMMEDIAT 0 0 kse pc table cache size
0 1 1 0 0 0 0 verify asynchronous writes issued through ks
2 1 0 0 0 0 KSI trace string of lock type(s)
1 3 1 0 0 0 0 granule locking status
8388608 3 1 0 0 0 0 granule size in bytes
3 1 0 0 0 0 timeout action interval in minutes
5 3 1 0 0 0 0 repeat count for acquisition of locks
0 1 1 0 IMMEDIAT 0 0 delay inst. termination to allow processes to
5 3 1 0 IMMEDIAT 0 0 number of seconds ksuitm waits before killin
OFF 2 1 1 IMMEDIAT 0 0 set to OFF to disable automatic slowsend dia
LMD0 2 1 0 0 0 0 reporting process for KSXP
300 3 1 0 0 0 0 set timeout for sends queued with the inter-in
0 3 1 0 IMMEDIAT 0 0 for ktc debug
0 3 1 0 0 0 0 number of ktc latches
0 3 1 0 0 0 0 number of KTU latches
none 2 1 1 0 0 0 datapump trace parameter
16000 6 1 0 0 0 0 minimum allocation size in bytes for the large
8388608 6 0 0 IMMEDIAT 0 0 Actual size in bytes of large pool
0 6 1 0 IMMEDIAT 0 0 size in bytes of large pool
5 3 1 1 0 0 0 period over which an instance can retain an
2 1 0 0 0 0 latch classes override
2 1 0 0 0 0 latch class 0
2 1 0 0 0 0 latch class 1
2 1 0 0 0 0 latch class 2
2 1 0 0 0 0 latch class 3
2 1 0 0 0 0 latch class 4
2 1 0 0 0 0 latch class 5
2 1 0 0 0 0 latch class 6
2 1 0 0 0 0 latch class 7
0 3 1 1 IMMEDIAT 0 0 Sid of process for which to collect latch stats
998 3 1 0 0 0 0 align latch recovery structures
NONE 2 1 0 IMMEDIAT 0 0 RDBMS's LDAP access option
262144 3 1 1 IMMEDIAT 0 0 size of write IOs used during a load operatio
1 1 1 1 IMMEDIAT 0 0 enable random distribution method for left of
1 1 1 0 IMMEDIAT 0 0 LGWR Asynchronous Broadcasts enabling b
0 1 1 0 0 0 0 LGWR Asynchronous IO enabling boolean fl
0 1 1 0 0 0 0 LGWR write delay for debugging
0 3 1 0 0 0 0 LGWR I/O slaves
1 3 1 0 0 0 0 Maximum wait time for lgwr to allow NetServ
1000 3 1 0 0 0 0 Variable to simulate network latency or buffe
500 3 1 0 0 0 0 Variable to simulate network latency or buffe
0 3 1 0 IMMEDIAT 0 0 Variable to simulate errors lgwrns
0 3 1 0 IMMEDIAT 0 0 Variable to simulate errors lgwr true async
1 1 1 0 IMMEDIAT 0 0 whether KGL advice should be turned on
0 3 1 0 IMMEDIAT 0 0 maximum number of non-system user sessio
0 3 1 0 IMMEDIAT 0 0 maximum number of named users that can b
0 3 1 0 IMMEDIAT 0 0 warning level for number of non-system user
1 1 1 0 0 0 0 Lightweight headers for redo
0 1 1 1 IMMEDIAT 0 0 treat LIKE predicate with bind as an equality
100 3 1 0 IMMEDIAT 0 0 threshold value to activate an additional lms
0 3 1 0 0 0 0 how often to cleanup level 0 cache res (in se
25 3 1 0 0 0 0 percentage of cached resources should be c
TMHWDI 2 1 0 0 0 0 cache resource: string of lock types(s)
0 1 1 0 0 0 0 GES checksum batch messages
128 3 1 0 0 0 0 number of contiguous blocks that will hash to
60 3 1 0 0 0 0 dd time interval in seconds
5 3 1 0 IMMEDIAT 0 0 dd scan interval in seconds
100 3 1 0 0 0 0 dynamic remastering maximum affinity reque
0 3 1 0 0 0 0 dynamic remastering bucket window size
0 3 1 0 0 0 0 dynamic remastering forced exclusive latche
0 1 1 0 0 0 0 dynamic lms invocation
1 1 1 0 0 0 0 dynamic load adjustment
0 1 1 0 0 0 0 if TRUE enables dynamic remastering
3 3 1 0 0 0 0 Number of enqueue freelist
3 1 0 0 0 0 Number of ges enqueue element freelist
1 1 1 0 0 0 0 if TRUE enables enqueue reconfiguration
2 1 0 0 0 0 mapping between file id and master instance
1 1 1 0 0 0 0 if TRUE deliver global posts to remote nodes
8 3 1 0 0 0 0 default wait time for lmd in centiseconds
0 3 1 0 0 0 0 number of background gcs server processes
8 3 1 0 0 0 0 default wait time for lms in centiseconds
12000 3 1 0 0 0 0 number of enqueues configured for cluster d
1 3 1 0 0 0 0 master resource weight for this instance
0 3 1 0 0 0 0 max. number of background global cache se
0 3 1 0 0 0 0 min. number of background global cache ser
0 3 1 0 0 0 0 GES batch message size
2 1 0 0 0 0 GES message buffer caching threshold
3000 3 1 0 0 0 0 GES message buffer cleanup interval time
0 1 1 0 0 0 0 cluster database node join optimization in re
0 1 1 0 0 0 0 disable cluster database fault-tolerance mod
0 3 1 0 0 0 0 number of latches covering the PCM HV buc
4096 3 1 0 0 0 0 number of buckets in the object affinity hash
128 3 1 0 0 0 0 number of latches in the object affinity hash
1 1 1 0 0 0 0 GES implicit process batching for IPC messa
320 3 1 0 0 0 0 number of client processes configured for clu
300 3 1 0 0 0 0 reconfiguration: process freeze timeout
180000 3 1 0 0 0 0 Reconfiguration timeout
32768 3 1 0 0 0 0 the size of receive buffer
6000 3 1 0 0 0 0 number of resources configured for cluster d
0 3 1 0 0 0 0 number of resource hash buckets
128 3 1 0 0 0 0 number of resource partition configured for g
25 3 1 0 0 0 0 GES percentage of send proxy reserve of se
10000 3 1 0 0 0 0 number of cluster database send buffers
auto 2 1 0 0 0 0 GES send mode
1 1 1 0 0 0 0 GES send queue message batching
5000 3 1 0 0 0 0 GES send queue maximum length
0 1 1 0 0 0 0 if TRUE enables share lock optimization
2 3 1 0 0 0 0 GES send queue minimum batching factor
auto 2 1 0 0 0 0 GES send queue batching mechanism
3 3 1 0 0 0 0 GES send queue batching waittime in tick
3 1 0 0 0 0 Synchronization timeout for DLM reconfigura
1000 3 1 0 0 0 0 GES messaging tickets
3 1 0 0 0 0 Flow control ticket active sendback threshold
16 3 1 0 0 0 0 TX lock localization delta
0 1 1 0 0 0 0 if TRUE enables resource name validation
352 3 1 0 0 0 0 number of transaction IDs configured for clus
none 2 1 1 IMMEDIAT 0 0 Load PL/SQL or Database objects without co
1 1 1 1 IMMEDIAT 0 0 enable local communication costing when TR
50 3 1 1 IMMEDIAT 0 0 set the ratio between global and local comm
2 1 0 IMMEDIAT 0 0 local listener
2 1 0 0 0 0 lock name space used for generating lock na
0 1 1 0 0 0 0 Lock entire SGA in physical memory
0 3 1 0 0 0 0 Lock specified areas of the SGA in physical
1 3 1 0 0 0 0 maximum number of threads to mine
1 1 1 0 0 0 0 log archive avoid memcpy
4 3 1 0 0 0 0 Number of buffers to allocate for archiving
2048 3 1 0 0 0 0 Size of each archival buffer in log file blocks
2 1 0 IMMEDIAT 0 0 archival callout
0 1 1 0 0 0 0 Bypass database rules for enabling archivelo
2 1 0 IMMEDIAT 0 0 log archive config parameter
0 3 1 0 IMMEDIAT 0 0 iterative sleep time in centiseconds seconds
2 1 0 IMMEDIAT 0 0 archival destination text string
2 1 1 IMMEDIAT 0 0 archival destination #1 text string
2 1 1 IMMEDIAT 0 0 archival destination #10 text string
2 1 1 IMMEDIAT 0 0 archival destination #2 text string
2 1 1 IMMEDIAT 0 0 archival destination #3 text string
2 1 1 IMMEDIAT 0 0 archival destination #4 text string
2 1 1 IMMEDIAT 0 0 archival destination #5 text string
2 1 1 IMMEDIAT 0 0 archival destination #6 text string
2 1 1 IMMEDIAT 0 0 archival destination #7 text string
2 1 1 IMMEDIAT 0 0 archival destination #8 text string
2 1 1 IMMEDIAT 0 0 archival destination #9 text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #1 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #10 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #2 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #3 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #4 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #5 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #6 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #7 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #8 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #9 state text string
2 1 0 IMMEDIAT 0 0 duplex archival destination text string
arc%s_%r.%t 2 0 0 0 0 0 archival destination format
1 1 1 0 IMMEDIAT 0 0 Establish EXPEDITE attribute default value
2 3 1 0 IMMEDIAT 0 0 maximum number of active ARCH processes
1 3 1 1 IMMEDIAT 0 0 minimum number of archive destinations tha
10 3 1 0 IMMEDIAT 0 0 Log archive network redo buffer size used by
0 3 1 0 IMMEDIAT 0 0 maximum network wait time in seconds whe
0 1 1 0 IMMEDIAT 0 0 log archive protection auto demotion
1 1 1 0 0 0 0 log archive security enabled
0 1 1 0 0 0 0 start archival process on SGA initialization
0 3 1 0 IMMEDIAT 0 0 Establish archivelog operation tracing level
1 1 1 0 0 0 0 log block images when changed during back
6984704 3 0 0 0 0 0 redo circular buffer size
0 1 1 0 0 0 0 corrupt redo buffers before write
0 1 1 0 0 0 0 debug redo buffers (slows things down)
0 1 0 0 IMMEDIAT 0 0 log checkpoint begin/end to alert file
65536 3 0 0 IMMEDIAT 0 0 # redo blocks checkpoint threshold
0 3 1 0 0 0 0 # redo blocks to verify after checkpoint
3600 3 0 0 IMMEDIAT 0 0 Maximum time interval between checkpoints
0 1 1 0 IMMEDIAT 0 0 Log commit-time block cleanout
0 1 1 0 0 0 0 debug redo multi instance code
mandatory 2 1 0 0 0 0 archivelog deletion policy for mandatory/all d
0 3 1 0 0 0 0 number of the log writer event queues
2 1 0 0 0 0 logfile name convert patterns and strings for
0 3 1 0 0 0 0 automatically initiate log write if this many re
1 3 1 0 0 0 0 Number of log buffer strands
1 1 1 0 0 0 0 Enable dynamic strands
2 3 1 0 0 0 0 Maximum number of log buffer strands
5 3 1 0 0 0 0 Private strand multiplier for log space preallo
0 1 1 0 IMMEDIAT 0 0 Number of private log buffer strands for zero
10 3 1 0 0 0 0 Active sessions multiplier to deduce number
4 3 1 0 0 0 0 number of simultaneous copies into redo buf
1 1 1 0 0 0 0 should we report space errors to alert log
0 3 1 0 IMMEDIAT 0 0 Maximum number of seconds redos in the cu
1 1 1 0 IMMEDIAT 0 0 longops stats enabled
0 3 1 0 IMMEDIAT 0 0 low server thresholds
31 3 1 0 IMMEDIAT 0 0 direct sends for messages from master (DFS
1 1 1 1 IMMEDIAT 0 0 refresh materialized views using consistent r
0 1 1 1 IMMEDIAT 0 0 materialized view MAV refreshes avoid doub
0 3 1 1 IMMEDIAT 0 0 optimizations during refresh of materialized v
3 3 1 1 IMMEDIAT 0 0 # tables for union all expansion during mater
120 3 1 0 0 0 0 Maximum wait by ARCH to allow NetServer
0 3 1 0 0 0 0 Max age of new snapshot in .01 seconds
3 1 0 IMMEDIAT 0 0 max number of dispatchers
202400 2 0 1 IMMEDIAT 0 0 Maximum size (blocks) of dump file
150 3 1 0 0 0 0 max number of roles a user can have enable
0 3 1 0 0 0 0 max sleep during exponential backoff
30 3 1 0 0 0 0 Maximum time spent by LNS to archive last
10000 3 1 0 0 0 0 Max occurrence protocols supported in a pro
0 3 1 0 0 0 0 maximum number of connections used for re
3 1 0 IMMEDIAT 0 0 max number of shared servers
0 3 1 1 0 0 0 number of segments for which shrink stats w
4 3 1 0 0 0 0 max time to sleep while holding a latch
128 3 1 0 0 0 0 media recovery block read batch
3 3 1 0 0 0 0 media recovery reap time
5 3 1 0 0 0 0 memory broker num stat entries
10 3 1 0 IMMEDIAT 0 0 Marginal Utility threshold pct for bc
4 3 1 0 IMMEDIAT 0 0 Marginal Utility threshold pct for sp
0 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink shared
900 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink java po
900 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink stream
60000000 3 1 0 IMMEDIAT 0 0 memory broker policy to timeout shrink share
30 3 1 0 IMMEDIAT 0 0 memory broker statistics gathering interval
0 3 1 0 IMMEDIAT 0 0 trace memory management activity
0 3 1 0 IMMEDIAT 0 0 partial granule sanity check
0 3 1 0 0 0 0 private memory annotation collection level
1 3 1 0 0 0 0 memory annotation pre-allocation scaling
0 3 1 0 0 0 0 shared memory annotation collection level
0 1 1 0 0 0 0 memory annotation in-memory store
4096 3 1 0 0 0 0 standard extent size for fixed-size-extent hea
420 3 1 0 0 0 0 message queue resources - dependent on #
1 1 1 1 IMMEDIAT 0 0 prohibit stats aggregation at compile/partition
0 3 1 1 0 0 0 minimum number freeable blocks for shrink t
1 3 1 1 0 0 0 minimum number freeable extents for shrink
0 3 1 0 0 0 0 Minimum SCN to start with in 2^30 units
0 1 1 0 0 0 0 Save buffers for debugging redo corruptions
1 1 1 1 IMMEDIAT 0 0 allow rewrites with multiple MVs and/or base
0 1 1 0 0 0 0 use multiple instances for media recovery
1 1 1 0 0 0 0 TRUE iff multi-join-key table lookup prefetch
0 3 1 1 0 0 0 what percent to analyze after complete/PCT
rule 2 1 1 0 0 0 refresh decision based on cost or on rules
10 3 1 1 IMMEDIAT 0 0 delta mv as fractional percentage of size of m
1 1 1 1 IMMEDIAT 0 0 refresh materialized views using EUT(partitio
0 3 1 1 0 0 0 force materialized view refreshes to use para
0 1 1 1 IMMEDIAT 0 0 materialized view MV refresh new setup disa
10 3 1 1 IMMEDIAT 0 0 minimum percentage change required in MV
1 1 1 1 IMMEDIAT 0 0 create materialized views with selections and
1 1 1 1 IMMEDIAT 0 0 pass cardinality hints to refresh queries
300000 3 1 1 IMMEDIAT 0 0 proportionality constant for dop vs. time in M
0 1 1 1 IMMEDIAT 0 0 create/alter mv uses rolling cursor invalidatio
1 1 1 0 IMMEDIAT 0 0 Enable/disable Maintenance Window Sched
1 1 1 1 IMMEDIAT 0 0 NLS allow Implicit Conversion between CHA
1 1 1 1 IMMEDIAT 0 0 should implicit conversion bewteen clob and
0 3 1 1 IMMEDIAT 0 0 enable multi-block readahead for an index sc
0 3 1 1 IMMEDIAT 0 0 turn on multi-block readahead tracing
100 3 1 1 IMMEDIAT 0 0 nested loop fudge
1 1 1 1 IMMEDIAT 0 0 nested MAV refresh fast on commit allowed
1 1 1 1 IMMEDIAT 0 0 controls whether new sorts can be used as s
63 3 1 1 IMMEDIAT 0 0 controls when new sort avoids sorting ordere
0 3 1 1 IMMEDIAT 0 0 specifies options for the new sort algorithm
1 1 1 1 IMMEDIAT 0 0 enable initial join orders based on new order
1 1 1 1 IMMEDIAT 0 0 enables the use of new cost estimate for sor
2 1 1 0 0 0 NLS calendar system name
2 1 1 0 0 0 NLS comparison
2 1 1 0 0 0 NLS local currency symbol
2 1 1 0 0 0 NLS Oracle date format
2 1 1 0 0 0 NLS date language name
2 1 1 0 0 0 Dual currency symbol
2 1 1 0 0 0 NLS ISO currency territory name
american 2 0 1 0 0 0 NLS language name
BYTE 2 1 1 IMMEDIAT 0 0 create columns using byte or char semantics
0 2 1 1 IMMEDIAT 0 0 NLS raise an exception instead of allowing im
2 1 1 0 0 0 NLS numeric characters
2 1 1 0 0 0 NLS linguistic definition name
america 2 0 1 0 0 0 NLS territory name
2 1 1 0 0 0 time stamp format
2 1 1 0 0 0 timestampe with timezone format
2 1 1 0 0 0 time format
2 1 1 0 0 0 time with timezone format
0 1 1 0 0 0 0 notify cluster ready services of startup and s
0 1 1 0 0 0 0 no object features are used
0 1 1 1 IMMEDIAT 0 0 OR expansion during optimization disabled
0 1 1 0 IMMEDIAT 0 0 no recovery through this resetlogs operation
1 3 1 0 0 0 0 Flush wait time for NetServer to flush oustan
15 3 1 0 0 0 0 Data Loss Time Bound for NetServer
Not specified 2 1 0 0 0 0 Set of nodes that this instance should run on
Not specified 2 1 0 0 0 0 aggregate size in bytes of NUMA pool
10 3 1 0 0 0 0 maximum number of cached attributes per in
2 3 1 0 0 0 0 number of child latches for long op array
1 1 0 0 0 0 0 Version 7 Dictionary Accessibility Support
10 3 1 1 DEFERRE 0 0 percentage of maximum size over optimal of
102400 3 1 1 DEFERRE 0 0 optimal size of the user session's object cach
1 1 1 0 IMMEDIAT 0 0 enable the object level statistics collection
2 1 0 0 0 0 offline undo segment list
2 1 0 0 0 0 GMS home directory
0 1 1 0 IMMEDIAT 0 0 enable olapi history retention
1000 3 1 0 0 0 0 enable olapi interface object history collectio
0 1 1 0 IMMEDIAT 0 0 enable olapi interface object history retention
0 1 1 0 IMMEDIAT 0 0 enable olapi interface operation history reten
1000 3 1 0 0 0 0 enable olapi interface operation history colle
1000 3 1 0 0 0 0 enable olapi memory alloc/free history collec
0 3 1 0 IMMEDIAT 0 0 enable olapi memory alloc/free history collec
0 1 1 0 IMMEDIAT 0 0 enable olapi memory operation history reten
300 3 1 0 0 0 0 enable olapi session history collection
0 1 1 0 IMMEDIAT 0 0 enable olapi session history retention
1048576 3 1 1 DEFERRE 0 0 OLAP Aggregate max buffer size
0 3 1 1 DEFERRE 0 0 OLAP Aggregate debug flags
1 1 1 1 DEFERRE 0 0 OLAP Aggregate function cache enabler
529 3 1 1 DEFERRE 0 0 OLAP Aggregate function merge threshold
5000 3 1 1 DEFERRE 0 0 OLAP Aggregate max thread tuples creation
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate min buffer size
64 3 1 1 DEFERRE 0 0 OLAP Aggregate minimum cardinality of dim
0 1 1 1 DEFERRE 0 0 OLAP Aggregate Multi-path Hierarhies enab
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate status array usage thresho
100 3 1 1 DEFERRE 0 0 OLAP Aggregate function storeback probabi
5000 3 1 1 DEFERRE 0 0 OLAP Aggregate max worklists generated a
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate max work parents
%8p %8y %8z 2 1 1 DEFERRE 0 0 OLAP Allocate Errorlog Format
0 1 1 1 DEFERRE 0 0 Specify TRUE to enable continuous OLAP tr
0 1 1 1 DEFERRE 0 0 OLAP DbgOutfile copy output to event log (t
1 3 1 1 DEFERRE 0 0 OLAP Dimension In-Core Hash Table Class
10000 3 1 1 DEFERRE 0 0 OLAP Dimension In-Core Hash Table Maxim
2147483647 3 1 1 DEFERRE 0 0 OLAP EIF Export BLOB size
100 3 1 1 DEFERRE 0 0 Limitmap generator dimension column size
1000 3 1 1 DEFERRE 0 0 Limitmap generator measure column size
2 3 1 1 DEFERRE 0 0 OLAP Object Hash Table Class
20 3 1 1 DEFERRE 0 0 OLAP Page Pool Expand Rate
50 3 1 1 DEFERRE 0 0 OLAP Page Pool High Watermark
100 3 1 1 DEFERRE 0 0 OLAP Page Pool Hit Target
262144 3 1 1 DEFERRE 0 0 OLAP Page Pool Low Watermark
90 3 1 1 DEFERRE 0 0 OLAP Page Pool Pressure Threshold
50 3 1 1 DEFERRE 0 0 OLAP Page Pool Shrink Rate
0 6 1 1 DEFERRE 0 0 size of the olap page pool in bytes
400 3 1 1 DEFERRE 0 0 OLAP parallel update pagespace by group
1000 3 1 1 DEFERRE 0 0 OLAP parallel update threshold for number o
1000 3 1 1 DEFERRE 0 0 OLAP parallel update threshold in pages
0 1 1 1 DEFERRE 0 0 OLAP POutLog copy output to event log (tra
1 1 1 1 DEFERRE 0 0 OLAP Session Cache knob
262144 3 1 1 DEFERRE 0 0 OLAP Sort Buffer Size
20000000 3 1 1 DEFERRE 0 0 OLAP Status Boolean max incore bits
8100 3 1 1 DEFERRE 0 0 OLAP Status Boolean CBM threshold
0 1 1 1 DEFERRE 0 0 Specify TRUE to output OLAP table function
0 1 1 1 DEFERRE 0 0 Wrap error messages to OLAP outfile
0 1 1 1 IMMEDIAT 0 0 enable/disable old connect by
1 1 1 0 IMMEDIAT 0 0 Clean up unnecessary entries in OLS sessin
enabled 2 1 0 0 0 0 enable/disable OMF
1 1 1 1 IMMEDIAT 0 0 sanity check on default selectivity for like/ran
1000 3 0 0 IMMEDIAT 0 0 max # cursors per session
4 3 0 0 0 0 0 max # open links per session
4 3 1 0 0 0 0 max # open links per instance
1 1 1 1 IMMEDIAT 0 0 adjust selectivity for null values
1 1 1 0 IMMEDIAT 0 0 enable/disable auto stats collection job
ALL 2 1 1 IMMEDIAT 0 0 enable improved costing of index access usi
8192 3 1 1 IMMEDIAT 0 0 standard block size used by optimizer
0 1 1 1 IMMEDIAT 0 0 cost with cache statistics
1 1 1 1 IMMEDIAT 0 0 optimizer cartesian join enabled
50 3 1 1 IMMEDIAT 0 0 cost factor for cost-based query transformati
1 1 1 1 IMMEDIAT 0 0 disable cost based transformation query size
1 1 1 1 IMMEDIAT 0 0 CEIL cost in CBO
0 3 1 1 IMMEDIAT 0 0 force the optimizer to use the specified perm
1 1 1 1 IMMEDIAT 0 0 enable selectivity estimation for builtin functi
1 1 1 1 IMMEDIAT 0 0 force index stats collection on index creation
1 1 1 1 IMMEDIAT 0 0 use cost-based transformation for connect b
1 1 1 1 IMMEDIAT 0 0 force correct computation of subquery select
LINEAR 2 1 1 IMMEDIAT 0 0 enables cost-based query transformation
0 1 1 1 IMMEDIAT 0 0 enables costing of filter predicates in IO cos
1 1 1 1 IMMEDIAT 0 0 add cost of generating result set when #rows
CHOOSE 2 1 1 IMMEDIAT 0 0 optimizer cost model
0 3 1 1 IMMEDIAT 0 0 force the optimizer to use the same degree o
1 1 1 1 IMMEDIAT 0 0 use join selectivity in choosing star transform
0 3 1 1 IMMEDIAT 0 0 disable star transformation sanity checks
2 3 0 1 IMMEDIAT 0 0 optimizer dynamic sampling
32 3 1 1 IMMEDIAT 0 0 number of blocks for optimizer dynamic sam
1 1 1 1 IMMEDIAT 0 0 push filters before trying cost-based query tr
UDO 2 1 1 IMMEDIAT 0 0 optimizer extended cursor sharing
10.2.0.2 2 0 1 IMMEDIAT 0 0 optimizer plan compatibility parameter
1 1 1 1 IMMEDIAT 0 0 use cost-based flter predicate pull up transfo
0 1 1 1 IMMEDIAT 0 0 enables the embedded hints to be ignored
0 3 0 1 IMMEDIAT 0 0 optimizer percent index caching
100 3 0 1 IMMEDIAT 0 0 optimizer index cost adjustment
18000 3 1 0 IMMEDIAT 0 0 time window for invalidation of cursors of ana
1 1 1 1 IMMEDIAT 0 0 optimizer join elimination enabled
3 3 1 1 IMMEDIAT 0 0 controls the optimizer join order search algor
1 1 1 1 IMMEDIAT 0 0 enable/disable sanity check for multi-column
2000 3 1 1 IMMEDIAT 0 0 optimizer maximum join permutations per qu
10 3 1 1 IMMEDIAT 0 0 set minimum cached blocks
1 1 1 1 IMMEDIAT 0 0 enable merge join cartesian
ALL_ROWS 2 0 1 IMMEDIAT 0 0 optimizer mode
1 1 1 1 IMMEDIAT 0 0 force setting of optimizer mode for user recu
2 1 1 IMMEDIAT 0 0 generate and run plans using several compil
1 1 1 1 IMMEDIAT 0 0 compute join cardinality using non-rounded i
1 1 1 1 IMMEDIAT 0 0 Eliminates order bys from views before quer
DEPTH 2 1 1 IMMEDIAT 0 0 control or expansion approach used
1 1 1 1 IMMEDIAT 0 0 Enable transformation of outer-join to anti-jo
101 3 1 1 IMMEDIAT 0 0 optimizer percent parallel
0 3 1 1 IMMEDIAT 0 0 push down distinct from query block to table
1 1 1 1 IMMEDIAT 0 0 use cost-based query transformation for pus
0 3 1 1 IMMEDIAT 0 0 optimizer seed value for random plans
1 1 1 1 IMMEDIAT 0 0 enable the use of first K rows due to rownum
1 1 1 0 IMMEDIAT 0 0 enable/disable saving old versions of optimiz
5 3 1 1 IMMEDIAT 0 0 optimizer search limit
1 1 1 0 IMMEDIAT 0 0 optimizer secure view merging and predicate
0 1 1 1 IMMEDIAT 0 0 account for self-induced caching
1 1 1 1 IMMEDIAT 0 0 enable/disable index skip scan
0 1 1 1 IMMEDIAT 0 0 consider index skip scan for predicates with
1 1 1 1 IMMEDIAT 0 0 enable/disable sort-merge join method
1 1 1 1 IMMEDIAT 0 0 enables unnesting of subquery in a bottom-u
1 1 1 1 IMMEDIAT 0 0 optimizer star plan enabled
1 1 1 1 IMMEDIAT 0 0 enable/disable star transformation in with cla
1 1 1 1 IMMEDIAT 0 0 system statistics usage
none 2 1 1 0 0 0 optimizer trace parameter
1 1 1 1 IMMEDIAT 0 0 retain equi-join pred upon transitive equality
0 1 1 1 IMMEDIAT 0 0 undo changes to query optimizer
10.2.0.2 2 1 1 IMMEDIAT 0 0 optimizer undo cost change
1 1 1 1 IMMEDIAT 0 0 adjust stats for skews across partitions
1 1 1 0 IMMEDIAT 0 0 enable/disable dictionary stats gathering at d
1 1 1 1 IMMEDIAT 0 0 TRUE to enable index [fast] full scan more o
1 1 1 1 IMMEDIAT 0 0 improves the way default equijoin selectivity
1 1 1 1 IMMEDIAT 0 0 enable peeking of user binds
0 1 1 1 IMMEDIAT 0 0 force target processes to execute oradebug
1 1 1 1 IMMEDIAT 0 0 enable ordered nested loop costing
1 1 1 1 IMMEDIAT 0 0 enable ordered semi-join subquery
1 1 1 1 IMMEDIAT 0 0 enable OR expanded plan for NVL/DECODE
OPS$ 2 1 0 0 0 0 prefix for auto-logon accounts
0 1 1 0 0 0 0 retrieve roles from the operating system
1 3 1 0 0 0 0 OS high priority level
2 1 0 IMMEDIAT 0 0 exclude event names from _other_wait_thre
0 3 1 0 0 0 0 threshold wait percentage for event wait clas
1 1 1 1 IMMEDIAT 0 0 BITMAP_TREE hint enabled in outline
350 3 1 1 IMMEDIAT 0 0 set the parallelism cost fudge factor
2 3 1 0 IMMEDIAT 0 0 maximum number of users running with defa
1 1 1 0 IMMEDIAT 0 0 enable adaptive setting of degree for multiple
0 1 1 0 0 0 0 enable intelligent defaults for parallel execut
1 1 1 1 IMMEDIAT 0 0 enable broadcasting of small inputs to hash
1 3 1 0 0 0 0 default maximum number of instances for pa
0 1 1 0 0 0 0 Alignment of PX buffers to OS page bounda
2148 3 1 0 0 0 0 message buffer size for parallel execution
0 3 1 1 IMMEDIAT 0 0 fake db-scheduler percent used for testing
1000 3 1 0 0 0 0 Number of buckets for each round of fix write
2 1 1 IMMEDIAT 0 0 instance group to use for all parallel operatio
1 1 1 1 IMMEDIAT 0 0 parallel execution load balanced slave alloca
0 3 1 1 IMMEDIAT 0 0 number of threads to allocate per instance
0 3 1 0 IMMEDIAT 0 0 maximum parallel query servers per instance
0 2 1 0 0 0 0 minimum size of shared pool memory to rese
0 3 1 1 0 0 0 minimum percent of threads required for par
0 3 1 0 IMMEDIAT 0 0 minimum parallel query servers per instance
32767 3 1 0 IMMEDIAT 0 0 stop at -position- to step through SMON
4000 3 1 0 0 0 0 Number of messages for each round of para
0 1 1 0 0 0 0 if TRUE startup in parallel server mode
30000 3 1 0 IMMEDIAT 0 0 idle time before parallel query server dies (in
1 3 1 0 0 0 0 number of instances to use for sizing OPS S
10 3 1 0 IMMEDIAT 0 0 sleep time between dequeue timeouts (in 1/1
1 3 1 1 IMMEDIAT 0 0 time(in seconds) to wait before retrying slave
2 3 1 0 IMMEDIAT 0 0 number of parallel execution threads per CP
0 1 1 1 0 0 0 enable parallel_txn hint with updates and de
1024 3 1 0 0 0 0 parameter table block size
1 1 1 1 IMMEDIAT 0 0 enable partial partition-wise join when TRUE
1 1 1 1 IMMEDIAT 0 0 enable/disable partitioned views
900 3 1 0 0 0 0 password file enqueue timeout in seconds
1 1 1 1 IMMEDIAT 0 0 materialized view PCT refreshes avoid doub
5000 3 1 1 IMMEDIAT 0 0 control separation of global index maintenan
0 1 1 1 IMMEDIAT 0 0 slaves start on different index when doing in
1 1 1 1 IMMEDIAT 0 0 slaves start on different partition when doing
50 3 1 0 0 0 0 Percent of flashback buffer filled to be consid
314572800 6 0 0 IMMEDIAT 0 0 Target size for the aggregate PGA memory c
1048576 6 1 0 0 0 0 PGA large extent size
209715200 6 1 0 IMMEDIAT 0 0 Maximum size of the PGA memory for one p
3 3 1 0 0 0 0 fusion ping level
0 1 1 0 IMMEDIAT 0 0 enable progressive kill test
50 3 1 0 IMMEDIAT 0 0 PMON process clean-up interval (cs)
0 1 1 1 0 0 0 start progressive kill test instrumention
1 1 1 1 IMMEDIAT 0 0 explain plan outline data enabled
INTERPRETE 2 1 1 IMMEDIAT 0 0 PL/SQL anonymous block code-type
1 1 1 1 IMMEDIAT 0 0 PL/SQL Function Cache Enabled
2 1 1 IMMEDIAT 0 0 PL/SQL ccflags
INTERPRETE 2 0 1 IMMEDIAT 0 0 PL/SQL code-type
INTERPRETE 2 1 1 IMMEDIAT 0 0 PL/SQL compiler flags
0 1 1 1 IMMEDIAT 0 0 PL/SQL debug
2 1 0 0 0 0 conditions upon which the PL/SQL circular b
20 3 1 1 0 0 0 plsql minimum cache hit percentage required
2 1 0 IMMEDIAT 0 0 plsql native library dir
0 3 1 0 IMMEDIAT 0 0 plsql native library number of subdirectories
0 1 1 1 IMMEDIAT 0 0 PL/SQL NVL optimize
2 3 1 1 IMMEDIAT 0 0 PL/SQL optimize level
0 1 1 1 IMMEDIAT 0 0 PL/SQL version 2.x compatibility flag
DISABLE:ALL 2 1 1 IMMEDIAT 0 1 PL/SQL compiler warnings settings
300,192,64,3, 2 1 0 0 0 0 server load balancing constants (S,P,D,I,L,C
1 1 1 1 IMMEDIAT 0 0 precompute gid values and copy them befor
1 1 1 1 IMMEDIAT 0 0 allow predicate elimination if set to TRUE
1 1 1 1 IMMEDIAT 0 0 enables predicate move-around
0 1 1 1 IMMEDIAT 0 0 presume commit of IMU transactions
0 1 1 0 0 0 0 pre-page sga for process
1 1 1 1 IMMEDIAT 0 0 push predicates into views before rewrite
0 2 1 1 0 0 0 enable dbms_output of materialized view ref
2 1 0 0 0 0 Start address of large extent memory segme
210 3 0 0 0 0 0 user processes
1 1 1 1 IMMEDIAT 0 0 projection pushdown
0 3 1 1 IMMEDIAT 0 0 level for projection pushdown debugging
1 1 1 1 IMMEDIAT 0 0 enable projecting out unreferenced columns
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a view
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a union
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a union
0 1 1 1 IMMEDIAT 0 0 asynchronous get granule in the slave
100 3 1 1 IMMEDIAT 0 0 set the tq broadcasting fudge factor percenta
30 3 1 1 IMMEDIAT 0 0 ttl for px mesg buffers in seconds
0 3 1 1 IMMEDIAT 0 0 debug level for parallel compilation
0 3 1 1 0 0 0 tracing level for parallel compilation
1 1 1 1 IMMEDIAT 0 0 turn off/on restartable qerpx dynamic optimiz
50 3 1 1 IMMEDIAT 0 0 num of samples for restartable qerpx dynam
100000 3 1 1 IMMEDIAT 0 0 default size of a rowid range granule (in KB)
200 3 1 1 IMMEDIAT 0 0 parallel query sampling for index create (100
0 3 1 1 IMMEDIAT 0 0 turn on kxib tracing
200 3 1 1 IMMEDIAT 0 0 interval at which LMON will check whether to
1000 3 1 1 IMMEDIAT 0 0 CPU cost to send a PX message via shared
100 3 1 1 IMMEDIAT 0 0 maximum number of rowid range granules to
1 1 1 1 IMMEDIAT 0 0 enables pq for minus/interect operators
13 3 1 1 IMMEDIAT 0 0 minimum number of rowid range granules to
10000 3 1 1 IMMEDIAT 0 0 CPU cost to send a PX message over the in
0 1 1 1 IMMEDIAT 0 0 prevent parallel partition granules to be sorte
0 1 1 1 IMMEDIAT 0 0 prevent parallel granule stealing in shared no
1 1 1 1 IMMEDIAT 0 0 enables or disables NSS Plan B reparse with
1 1 1 0 IMMEDIAT 0 0 reduce parallel_max_servers if greater than
1 1 1 1 IMMEDIAT 0 0 parallel partition wise group by enabled
1 1 1 1 IMMEDIAT 0 0 turn off/on parallel rownum pushdown optimi
300 3 1 1 IMMEDIAT 0 0 IPC message send timeout value in second
0 3 1 1 0 0 0 slaves share cursors with QC
none 2 1 1 0 0 0 px trace parameter
0 1 1 0 0 0 0 Use Large Pool as source of PX buffers
10000 3 1 1 IMMEDIAT 0 0 default size of a external table granule (in KB
0 3 1 1 IMMEDIAT 0 0 Oracle internal parameter to control QA
0 3 1 1 IMMEDIAT 0 0 Oracle internal parameter to specify QA lrg t
1 1 1 1 IMMEDIAT 0 0 perform the cost based rewrite with materiali
65536 3 1 1 DEFERRE 0 0 max size of query execution cache
1 1 1 1 IMMEDIAT 0 0 perform query rewrite before&after or only be
1 1 1 1 IMMEDIAT 0 0 perform query rewrite before&after or only af
1 1 1 1 IMMEDIAT 0 0 mv rewrite and drop redundant joins
0 2 0 1 IMMEDIAT 0 0 allow rewrite of queries using materialized vi
1 1 1 1 IMMEDIAT 0 0 rewrite with cannonical form for expressions
1 1 1 1 IMMEDIAT 0 0 mv rewrite fresh partition containment
90 3 1 1 IMMEDIAT 0 0 cost based query rewrite with MVs fudge fac
TRUSTED 2 0 1 IMMEDIAT 0 0 perform rewrite using materialized views with
1 1 1 1 IMMEDIAT 0 0 mv rewrite with jg migration
257 3 1 1 IMMEDIAT 0 0 query rewrite max disjuncts
0 1 1 1 IMMEDIAT 0 0 allow query rewrite, if referenced tables are n
1 1 1 1 IMMEDIAT 0 0 perform general rewrite using set operator su
1 1 1 1 IMMEDIAT 0 0 prune frocol chain before rewrite after view-m
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel fixwrite at reconfigu
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel replay and cleanup
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel verify at reconfigura
2 1 0 0 0 0 RDBMS's Distinguished Name
0 1 1 0 0 0 0 if TRUE delay opening of read only files unti
32768 3 1 0 0 0 0 minimum max total heap size, in Kbytes
0 3 1 0 0 0 0 mode flags for real-free heap
65536 6 1 0 0 0 0 hint for real-free page size in bytes
0 3 1 0 IMMEDIAT 0 0 Archival delay with real time apply
0 3 1 0 IMMEDIAT 0 0 Simulation value with real time apply
50 3 1 0 IMMEDIAT 0 0 Recoverable recovery batch size (percentag
0 1 1 0 0 0 0 if TRUE, enable expensive integrity checks
0 3 1 0 0 0 0 number of server processes to use for parall
50 3 1 0 IMMEDIAT 0 0 recovery buffer cache percentage
0 1 1 0 IMMEDIAT 0 0 enable thread recovery write verify
0 1 1 1 IMMEDIAT 0 0 recursive transactions may be IMU
ON 2 0 1 IMMEDIAT 0 0 recyclebin processing
0 1 1 0 0 0 0 general and redo/undo compatibility sanity c
5 3 1 0 0 0 0 maximum number of unusable blocks to unli
0 1 1 0 0 0 0 if TRUE, block sends across interconnect ar
1 2 1 0 0 0 0 remote archival enable setting
TIMESTAMP 2 1 1 IMMEDIAT 0 0 remote-procedure-call dependencies mode p
2 1 0 IMMEDIAT 0 0 remote listener
EXCLUSIVE 2 0 0 0 0 0 password file usage parameter
0 1 1 0 0 0 0 allow non-secure remote clients to use auto-
0 1 1 0 0 0 0 allow non-secure remote clients to use os ro
1 1 1 1 IMMEDIAT 0 0 enables removal of subsumed aggregated s
1 1 1 0 0 0 0 tracking dependency for Replication parallel
0 1 1 0 IMMEDIAT 0 0 master switch for resource limit
1 1 1 0 0 0 0 enable the resource manager always
2 1 0 IMMEDIAT 0 0 resource mgr top plan
2 1 0 0 0 0 restore spfile to this location
0 3 1 1 IMMEDIAT 0 0 set resumable_timeout
5 3 1 0 0 0 0 number of blocks being examine for index bl
1 1 1 1 IMMEDIAT 0 0 Right Outer/Semi/Anti Hash Enabled
3 3 1 0 IMMEDIAT 0 0 priority at which rman backup i/o's are done
2 1 0 0 0 0 undo segment list
0 3 1 0 0 0 0 number of undo segments
1 3 1 0 0 0 0 starting undo segment number
0 3 1 0 IMMEDIAT 0 0 stop at -position to step rollback
0 1 1 1 IMMEDIAT 0 0 if TRUE, Oracle will collect rowsource statist
128 3 1 1 IMMEDIAT 0 0 frequency of rowsource statistic sampling (m
0 3 1 1 IMMEDIAT 0 0 Row source tree tracing level
20 3 1 0 0 0 0 number of cached cursors for row cache ma
1 1 1 0 IMMEDIAT 0 0 enable row cr for all sql
always 2 1 0 0 0 0 row-locking
4 3 1 1 IMMEDIAT 0 0 number of rows per block used for sampling
3 1 1 IMMEDIAT 0 0 second spare parameter - integer
1 1 1 1 IMMEDIAT 0 0 control rewrite self-join algorithm
300 3 1 0 0 0 0 Self-tune checkpointing lag the tail of the red
3 3 1 0 0 0 0 Percentage of total physical i/os for self-tune
1 1 1 0 IMMEDIAT 0 0 if TRUE, send ast message to foreground
1 1 1 0 IMMEDIAT 0 0 if TRUE, send close with block even with dire
1 1 1 0 IMMEDIAT 0 0 if TRUE, try to send CR requests to PI buffer
0 1 1 0 0 0 0 serializable
0 1 1 1 IMMEDIAT 0 0 enable direct read in serial
0 1 1 0 0 0 0 force serial recovery or parallel recovery
disable 2 1 0 0 0 0 reuse the frame segments
TEST8 2 0 0 IMMEDIAT 0 0 service names supported by the instance
236 3 0 0 0 0 0 user and system sessions
200 3 0 1 0 0 0 Number of cursors to cache in a session.
60 3 1 1 0 0 0 Number of pl/sql instantiations to cache in a
10000 3 1 0 0 0 0 session app context size
0 3 1 0 0 0 0 one latch per session or a latch per group of
60 3 1 0 0 0 0 Resource Manager session idle limit check in
0 3 1 1 0 0 0 Number of cursors pins to keep in a session
10 3 1 0 0 0 0 maximum number of open files allowed per s
10 3 1 0 0 0 0 enable session wait history collection
2 1 1 IMMEDIAT 0 0 seventh spare parameter - string list
1157627904 6 0 0 0 0 0 max total SGA size
947912704 6 0 0 IMMEDIAT 0 0 Target size of SGA
partial 2 1 0 0 0 0 Core Size for Shadow Processes
0 3 1 0 0 0 0 SGA starting address (low order 32-bits on 6
0 6 1 0 IMMEDIAT 0 0 shared pool maximum size when auto SGA
0 1 1 0 IMMEDIAT 0 0 shared pool minimum size when auto SGA e
4400 6 1 0 0 0 0 minimum allocation size in bytes for reserved
5 3 1 0 0 0 0 percentage memory of the shared pool alloc
11324620 6 1 0 0 0 0 size in bytes of reserved area of shared poo
226492416 6 0 0 IMMEDIAT 0 0 Actual size in bytes of shared pool
0 6 1 0 IMMEDIAT 0 0 size in bytes of shared pool
0 3 1 0 IMMEDIAT 0 0 number of shared servers to start up
3 1 0 IMMEDIAT 0 0 max number of shared server sessions
30000 3 1 1 IMMEDIAT 0 0 short stack timeout in ms
60 3 1 1 DEFERRE 0 0 percentage of exceptions at which to switch
1 1 1 1 DEFERRE 0 0 enable use of variable sized buffers for non-
200 3 1 0 0 0 0 number of messages to batch in a side chan
6 3 1 0 IMMEDIAT 0 0 timeout before shipping out the batched side
1 1 1 1 IMMEDIAT 0 0 control simple view merging performed by th
8192 3 1 0 0 0 0 LRU bucket minimum delta
10 3 1 0 0 0 0 simulator internal bound percent
2 3 1 0 0 0 0 LRU list rebalance threshold (size)
10240 3 1 0 0 0 0 LRU list rebalance threshold (count)
8 3 1 0 0 0 0 LRU scan count
16 3 1 0 0 0 0 maximum count of invalid chunks on pin list
4096 3 1 0 0 0 0 simulator reserved heap count
1024 3 1 0 0 0 0 simulator reserved object count
2 3 1 0 0 0 0 sampling factor for the simulator
2 3 1 0 0 0 0 upper bound multiple of pool size
0 1 1 0 0 0 0 run without detached processes
2 1 1 IMMEDIAT 0 0 sixth spare parameter - string list
1000 3 1 0 0 0 0 tune skgxp OSD reaping limit
0 3 1 1 IMMEDIAT 0 0 time in minutes before idle ach's are reaped
1000 3 1 1 IMMEDIAT 0 0 ach hiwat mark warning interval
60 3 1 1 IMMEDIAT 0 0 time in seconds between interface detection
300 3 1 1 IMMEDIAT 0 0 connection idle time in seconds before keep
1024 3 1 1 IMMEDIAT 0 0 diagnostic log buffering space (in bytes) for t
5 3 1 1 IMMEDIAT 0 0 time in seconds before timed wait is invoked
1 1 1 0 IMMEDIAT 0 0 if TRUE, skip assume message for consigns
1 1 1 1 IMMEDIAT 0 0 skip unusable indexes if set to TRUE
1 1 1 1 IMMEDIAT 0 0 enable slave mapping when TRUE
0 3 1 1 IMMEDIAT 0 0 force the number of slave group in a slave m
1660 3 1 1 DEFERRE 0 0 threshold level of table size for direct reads
1 1 1 0 IMMEDIAT 0 0 if TRUE, enable v$pga_advice
0 3 1 1 IMMEDIAT 0 0 overwrites default size of the PGA advice wo
1 1 1 1 IMMEDIAT 0 0 if TRUE, use the AUTO size policy cost func
248 3 1 1 IMMEDIAT 0 0 Maximum IO size (in KB) used by sort/hash-
56 3 1 1 IMMEDIAT 0 0 Minimum IO size (in KB) used by sort/hash-j
0 3 1 1 IMMEDIAT 0 0 overwrites memory manager automatically c
0 3 1 1 IMMEDIAT 0 0 provides controls on the memory manager
5120 3 1 0 IMMEDIAT 0 0 value in KB of the instance freeable PGA me
102400 3 1 1 IMMEDIAT 0 0 maximum work area for insertion sort(v1)
61440 3 1 1 IMMEDIAT 0 0 maximum work area size in auto mode (seria
307 3 1 1 IMMEDIAT 0 0 minimum work area size in auto mode
153600 3 1 1 IMMEDIAT 0 0 maximum work area size in auto mode (glob
0 3 1 1 IMMEDIAT 0 0 work area retain size in SGA for shared serv
0 3 1 1 IMMEDIAT 0 0 Turn on/off tracing for SQL memory manage
100 3 1 0 IMMEDIAT 0 0 limit of SMON internal errors
2 1 1 IMMEDIAT 0 0 utl_smtp server and port configuration param
0 3 1 0 IMMEDIAT 0 0 <debug-flag> - set debug event for testing S
0 3 1 1 0 0 0 site ID of error simulation in KTU code
0 3 1 1 0 0 0 error type for error simulation in KTU code
2 1 0 IMMEDIAT 0 0 comma-separated *AND double-quoted* list
0 3 1 1 DEFERRE 0 0 size of in-memory sort work area retained be
65536 3 1 1 DEFERRE 0 0 size of in-memory sort work area
0 3 1 1 IMMEDIAT 0 0 cost ratio for sort eimination under first_rows
2 3 1 1 DEFERRE 0 0 multi-block read count for sort
C:\ORACLE\P 2 1 0 0 0 0 server parameter file
2000 3 1 0 IMMEDIAT 0 0 Amount to spin waiting for a latch
10000 3 1 1 IMMEDIAT 0 0 maximum number of rules in sql spreadshee
1 1 1 1 IMMEDIAT 0 0 push predicates through reference spreadsh
1 1 1 1 IMMEDIAT 0 0 enable AW for hash table in spreadsheet
0 1 1 1 IMMEDIAT 0 0 use hash table for spreadsheet
0 1 1 0 0 0 0 require select privilege for searched update/
1000 3 1 1 IMMEDIAT 0 0 sql execution progression monitoring cost th
DEFAULT 2 1 1 IMMEDIAT 0 0 Category qualifier for applying hintsets
DEFAULT 2 1 1 IMMEDIAT 0 0 Parsed category qualifier for applying hintse
0 3 1 0 0 0 0 SQL Connect Capability Table Override
2 1 0 0 0 0 SQL Connect Capability Table (testing only)
0 6 1 1 IMMEDIAT 0 0 Hash value of the SQL statement to debug
RUN_TIME 2 1 1 IMMEDIAT 0 0 specifies compile-time unfolding of sql mode
0 1 1 1 IMMEDIAT 0 0 enable SQL trace
NATIVE 2 1 1 0 0 0 sql language version parameter for compatib
0 3 1 0 0 0 0 stack guard level
%ORACLE_H 2 1 0 IMMEDIAT 0 0 standby database archivelog destination tex
MANUAL 2 1 0 IMMEDIAT 0 0 if auto then files are created/dropped automa
0 2 0 1 IMMEDIAT 0 0 enable the use of star transformation
2 1 0 0 0 0 static backgrounds
typical 2 0 1 IMMEDIAT 0 0 statistics level
0 3 1 1 IMMEDIAT 0 0 SQL Tuning Advisory control parameter
0 3 1 1 IMMEDIAT 0 0 SQL tracing parameter
0 6 1 0 IMMEDIAT 0 0 streams pool maximum size when auto SGA
0 6 1 0 IMMEDIAT 0 0 size in bytes of the streams pool
0 6 0 0 IMMEDIAT 0 0 Actual size in bytes of streams pool
20 3 1 1 IMMEDIAT 0 0 subquery pruning cost factor
1 1 1 1 IMMEDIAT 0 0 enable the use of subquery predicates to pe
0 1 1 1 IMMEDIAT 0 0 enable the use of subquery predicates with M
50 3 1 1 IMMEDIAT 0 0 subquery pruning reduction factor
0 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF Metric Frequent Mode
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON DB Feature U
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON FLushing
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON Metrics Collec
1 1 1 1 IMMEDIAT 0 0 Parameter to enable/disable SWRF
0 3 1 1 0 0 0 test action parameter for SWRF
0 1 1 0 IMMEDIAT 0 0 Enable/disable DB Feature Usage Testing
0 1 1 0 0 0 0 whether to trace metadata comparisons for s
1 3 1 1 IMMEDIAT 0 0 test parameter for SYSAUX
0 3 1 1 IMMEDIAT 0 0 optimizer percent system index caching
1 1 1 0 IMMEDIAT 0 0 are system triggers enabled
40 3 1 0 0 0 0 table lookup prefetch vector size
2 3 1 0 0 0 0 table lookup prefetch threshold
1 1 1 1 IMMEDIAT 0 0 bump estimated full table scan and index ffs
1 1 1 0 0 0 0 Use asynch I/O requests for tape devices
90 3 1 0 0 0 0 target rba max log lag percentage
20 3 1 0 0 0 0 LNS Wait time for arhcived version of online
16 3 1 0 IMMEDIAT 0 0 set debug mode for testing transportable dat
100 3 1 1 IMMEDIAT 0 0 number of blocks for a dimension before we
1 1 1 1 IMMEDIAT 0 0 determines if temp table is created with cach
5 3 1 0 IMMEDIAT 0 0 test the function ksusigskip
25 3 1 1 DEFERRE 0 0 test parmeter 1 - integer
2 1 1 0 0 0 test parameter 2 - string
2 1 1 IMMEDIAT 0 0 test parameter 3 - string
2 1 1 IMMEDIAT 0 0 test parameter 4 - string list
25 3 1 1 IMMEDIAT 0 0 test parmeter 5 - deprecated integer
0 6 1 1 IMMEDIAT 0 0 test parmeter 6 - size (ub8)
3 1 1 IMMEDIAT 0 0 third spare parameter - integer
0 3 1 0 IMMEDIAT 0 0 Redo thread to mount
1 3 1 0 IMMEDIAT 0 0 if 1, issue threshold-based alerts
0 3 1 1 IMMEDIAT 0 0 internal os statistic gathering interval in seco
1 1 0 1 IMMEDIAT 0 0 maintain internal timing statistics
0 6 1 0 0 0 0 Total memory for allocating large extents
0 3 1 1 0 0 0 time period for duping of TQ statistics (s)
2 1 1 0 0 0 trace file custom identifier
0 1 1 0 IMMEDIAT 0 0 start DIAG process
ALL:256 2 1 0 0 0 0 trace buffer sizes per process
0 1 1 0 IMMEDIAT 0 0 trace buffer flushes if otrace cacheIO event i
0 1 1 0 IMMEDIAT 0 0 trace kcb buffer gets if otrace cacheIO event
0 3 1 1 IMMEDIAT 0 0 trace buffer busy wait timeouts
1 1 1 0 IMMEDIAT 0 0 enable KST timestamp on trace buffer wrap
0 1 1 0 IMMEDIAT 0 0 trace cr buffer creates if otrace cacheIO eve
1 1 1 0 IMMEDIAT 0 0 enable KST tracing
2 1 0 IMMEDIAT 0 0 trace events enabled at startup
0 1 1 0 0 0 0 Create publicly accessible trace files
65536 3 1 0 0 0 0 maximum size of trace file (in bytes)
ALL 2 1 0 IMMEDIAT 0 0 trace data archived by DIAG for these proce
0 1 1 0 IMMEDIAT 0 0 trace multi_block reads if otrace cacheIO ev
global 2 1 0 0 0 0 enabling trace navigation linking
text,multiple 2 1 0 0 0 0 trace data flush options
0 3 1 0 0 0 0 trace how long a current pin is held
ALL 2 1 0 0 0 0 enable KST tracing in process
259 3 0 0 0 0 0 max. number of concurrent active transactio
5 3 0 0 0 0 0 number of active transactions per rollback se
1 1 1 0 DEFERRE 0 0 transaction auditing records generated in the
0 3 1 0 IMMEDIAT 0 0 max number of parallel recovery slaves that
1 1 1 1 IMMEDIAT 0 0 do truncate optimization if set to TRUE
2 1 1 IMMEDIAT 0 0 TSM test connect string
1 3 1 0 IMMEDIAT 0 0 Disable TSM auto cleanup actions
0 1 1 0 IMMEDIAT 0 0 allow plugging in a tablespace with an incom
1 1 1 0 0 0 0 enable two-pass thread recovery
1 1 1 1 0 0 0 uses two-pass reverse polish alg. to generat
262144 6 1 0 0 0 0 UGA/CGA large extent size
1 1 1 0 IMMEDIAT 0 0 maintain fast-path statistics for ultrafast latch
1 1 1 0 IMMEDIAT 0 0 enable auto tuning of undo_retention
0 3 1 1 IMMEDIAT 0 0 debug flag for undo related operations
0 3 1 0 IMMEDIAT 0 0 invoke undo usage functions for testing
AUTO 2 0 0 0 0 0 instance runs in SMU mode if TRUE, else in
1800 3 0 0 IMMEDIAT 0 0 undo retention in seconds
ROLLBACK_ 2 0 0 IMMEDIAT 0 0 use/switch undo tablespace
YES_GSET_ 2 1 1 IMMEDIAT 0 0 expand queries with GSets into UNIONs for
1 1 1 1 IMMEDIAT 0 0 enables unnesting of correlated subqueries
1 1 1 1 IMMEDIAT 0 0 enable unused block compression
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 User process dump directory
1 1 1 1 IMMEDIAT 0 0 enable the use of column statistics for DDP f
0 1 1 0 0 0 0 Enable indirect data buffers (very large SGA
1 1 1 0 0 0 0 Enable Shared Page Tables - ISM
1 1 1 0 0 0 0 Use ISM for allocating large extents
0 1 1 1 0 0 0 use nosegment indexes in explain plan
1 1 1 0 IMMEDIAT 0 0 use real-free based allocator for PGA memo
1 1 1 1 IMMEDIAT 0 0 whether to use process local seq cache
1 1 1 0 0 0 0 use vector post
C:\oracle\pro 2 0 0 0 0 0 utl_file accessible directories list
0 1 1 0 IMMEDIAT 0 0 Scan database to validate result of flashback
2 1 0 0 0 0 Vendor library search root directory
1 1 1 0 IMMEDIAT 0 0 Verify that the redo logs needed for flashbac
0 1 1 1 IMMEDIAT 0 0 TRUE - verify consistency of undo quota sta
1024 3 1 1 IMMEDIAT 0 0 very_large_partitioned_table
1 1 1 0 0 0 0 wait for sync on commit MUST BE ALWAYS
0 3 1 0 0 0 0 maximum number of unusable blocks to wal
0 1 1 1 IMMEDIAT 0 0 is the watchpointing feature turned on?
0 3 1 1 IMMEDIAT 0 0 settings for window function optimizations
auto 2 0 1 IMMEDIAT 0 0 policy used to size SQL working areas (MAN
3 3 1 0 IMMEDIAT 0 0 write clones flag
8192 3 1 0 IMMEDIAT 0 0 maximum bytes for logging peeked bind valu
0 3 1 1 IMMEDIAT 0 0 Explain Plan tracing parameter
20 3 1 1 DEFERRE 0 0 OLAP API lower bound for auto materializati
PRED_AND_ 2 1 1 DEFERRE 0 0 OLAP API behavior for auto materialization
2 1 1 DEFERRE 0 0 OLAP API debug output disposition
TABULAR 2 1 1 DEFERRE 0 0 OLAP API cube densification
OVERFETCH 2 1 1 DEFERRE 0 0 OLAP API symmetric overfetch
PARTIAL 2 1 1 DEFERRE 0 0 OLAP API fetch type
0 1 1 1 DEFERRE 0 0 OLAP API generates WITH clause?
unique 2 1 1 DEFERRE 0 0 OLAP API hierarchy value type
NEVER 2 1 1 DEFERRE 0 0 When to load OLAP API library at server pro
1 3 1 1 DEFERRE 0 0 OLAP API min number of rows required to u
1 1 1 1 DEFERRE 0 0 OLAP API Enable source materialization
ALL 2 1 1 DEFERRE 0 0 OLAP API metadata reader mode
0 1 1 1 DEFERRE 0 0 OLAP API uses ODBO mode?
1 1 1 1 DEFERRE 0 0 OLAP API optimizes suppressions?
1 1 1 1 DEFERRE 0 0 OLAP API precomputes subqueries?
1 1 1 1 DEFERRE 0 0 OLAP API removes columns for materializat
1 1 1 1 DEFERRE 0 0 OLAP API sets NLS?
0 1 1 1 DEFERRE 0 0 OLAP API output Source definitions to trace
2 1 1 DEFERRE 0 0 OLAP API multi-join non-base hints
2 1 1 DEFERRE 0 0 OLAP API non-base hints
0 1 1 1 DEFERRE 0 0 OLAP API enable automatic dimension hints
1 1 1 1 DEFERRE 0 0 OLAP API enable automatic measure hints
2 1 1 DEFERRE 0 0 OLAP API dimension hints
1 1 1 1 DEFERRE 0 0 OLAP API enables AW join?
1 1 1 1 DEFERRE 0 0 OLAP API enables AW QDR merge?
2 1 1 DEFERRE 0 0 OLAP API generic hints
2 1 1 DEFERRE 0 0 OLAP API measure hints
1 1 1 1 DEFERRE 0 0 OLAP API enable optimization
16 3 1 1 DEFERRE 0 0 OLAP API prepare statement cache size
1 1 1 1 DEFERRE 0 0 OLAP API enable remove unused columns o
32 3 1 1 DEFERRE 0 0 OLAP API result set cache size
1 1 1 1 DEFERRE 0 0 OLAP API enable symmetric predicate for di
2 1 1 DEFERRE 0 0 OLAP API top dimension hints
2 1 1 DEFERRE 0 0 OLAP API top measure hints
1 1 1 1 DEFERRE 0 0 OLAP API enable bind variables optimization
0 1 1 1 DEFERRE 0 0 OLAP API stringifies order levels?
1000 3 1 1 DEFERRE 0 0 OLAP API suppression AW mask threshold
4000 3 1 1 DEFERRE 0 0 OLAP API suppression chunk size
1 1 1 1 DEFERRE 0 0 OLAP API uses models?
1 1 1 1 DEFERRE 0 0 OLAP API uses OLAP DML?
0 1 1 1 DEFERRE 0 0 OLAP API uses OLAP DML for rank?
0 3 1 1 IMMEDIAT 0 0 buffer size in KB needed for populate/query
0 1 1 0 IMMEDIAT 0 0 allow cross platform for pre10 compatible tab
0 1 1 0 IMMEDIAT 0 0 set cross platform info during file header rea
none 2 1 1 0 0 0 external tables code coverage parameter
none 2 1 1 0 0 0 external tables trace parameter
100000 3 1 1 IMMEDIAT 0 0 interval to check whether actses should yield

67194879 3 1 1 IMMEDIAT 0 0 bitvec to specify dumps prior to 4031 error


300 3 1 1 IMMEDIAT 0 0 Dump 4031 error once for each n-second int
100 3 1 1 IMMEDIAT 0 0 Maximum number of 4031 dumps for this pro
3600 3 1 1 IMMEDIAT 0 0 Dump 4031 SGA heapdump error once for e
10 3 1 1 IMMEDIAT 0 0 Maximum number of SGA heapdumps
0 1 1 0 IMMEDIAT 0 0 if TRUE, abort recovery on join reconfigurati
2 1 0 IMMEDIAT 0 0 List of parameters for rolling operation
3 1 0 0 0 0 number of active instances in the cluster dat
1 1 1 0 0 0 0 if TRUE optimize dlm reconfiguration for acti
1 1 1 0 0 0 0 Adaptive Direct Read
1 1 1 1 IMMEDIAT 0 0 enable/disable adaptive fetch in parallel grou
1 1 1 0 IMMEDIAT 0 0 governs whether ADDM gets run automatica
2 1 0 IMMEDIAT 0 0 comma-separated list of ADDM nodes to ski
1 1 1 0 IMMEDIAT 0 0 governs whether ADDM checks the input AW
1 1 1 1 IMMEDIAT 0 0 add stale mv to dependency list
0 1 1 1 IMMEDIAT 0 0 If TRUE, we will adjust the SQL/PLUS outpu
1 1 1 0 0 0 0 enable/disable affinity at run time
100 3 1 0 0 0 0 Number of aiowait timeouts before error is re
604800 3 1 0 0 0 0 seconds before an alert message is moved t
1 3 1 0 IMMEDIAT 0 0 Enable Alert Message Cleanup
1 3 1 0 IMMEDIAT 0 0 Enable Alert Message Purge
1 3 1 0 IMMEDIAT 0 0 Enable Background Alert Posting
0 1 1 0 0 0 0 should files be examined in creation order du
3 3 1 1 0 0 0 interval at which successful search in L1 sho
1 1 1 1 IMMEDIAT 0 0 allow for commutativity of +, * when compari
0 1 1 0 0 0 0 Allow error simulation for testing
0 1 1 1 IMMEDIAT 0 0 allow level without connect by
0 1 1 0 IMMEDIAT 0 0 allow read-only open even if database is cor
0 1 1 0 0 0 0 allow resetlogs even if it will cause corruption
0 1 1 0 0 0 0 Finish terminal recovery even if it may cause
2 1 0 0 0 0 treat all dblinks as shared
1 1 1 1 IMMEDIAT 0 0 enable alternate index-organized table leaf-b
CHOOSE 2 1 1 IMMEDIAT 0 0 always use this method for anti-join when po
CHOOSE 2 1 1 IMMEDIAT 0 0 always use this method for semi-join when p
0 1 1 1 IMMEDIAT 0 0 always favor use of star transformation
0 1 1 0 0 0 0 enable app ctx versioning
1 3 0 0 IMMEDIAT 0 0 number of AQ Time Managers to start
0 3 1 0 IMMEDIAT 0 0 scan limit for Time Managers to clean up IOT
0 3 1 0 IMMEDIAT 0 0 Maximum number of seconds of redos the s
0 3 1 0 0 0 0 ARCH I/O slaves
0 1 1 1 IMMEDIAT 0 0 Enable array update vector read
10 3 1 0 IMMEDIAT 0 0 Ratio of the number of in-memory samples t
1 1 1 0 IMMEDIAT 0 0 To enable or disable Active Session History
0 3 1 0 IMMEDIAT 0 0 Oracle internal dummy ASH parameter used
66 3 1 0 IMMEDIAT 0 0 The percentage above which if the in-memo
1 1 1 0 IMMEDIAT 0 0 To enable or disable Active Session samplin
0 1 1 0 IMMEDIAT 0 0 To enable or disable sampling every connec
1000 3 1 0 0 0 0 Time interval between two successive Active
1048618 6 1 0 IMMEDIAT 0 0 To set the size of the in-memory Active Sess
0 3 1 0 0 0 0 Osmlib test event
asm 2 1 0 0 0 0 ASM instance id
1 3 1 0 0 0 0 initial ACD chunks created
1 1 1 0 0 0 0 Discovery only raw devices
0 1 1 0 0 0 0 Enable disk resilvering for external redundan
1048576 3 1 0 0 0 0 allocation unit size
4096 3 1 0 0 0 0 metadata block size
2 1 0 IMMEDIAT 0 0 disk groups to mount automatically
2 1 0 IMMEDIAT 0 0 disk set locations for discovery
14400 3 1 1 IMMEDIAT 0 0 seconds to wait before dropping a failing dis
60 3 1 0 0 0 0 timeout before offlined disks get dropped (in
10000 3 1 0 0 0 0 max number of concurrent disks to emulate
0 3 1 0 0 0 0 timeout before emulation begins (in 3s ticks)
0 3 1 0 0 0 0 KFDP event
ufs 2 1 0 0 0 0 library search order for discovery
1048576 3 1 0 0 0 0 Maximum size of individual I/O request
1 3 1 1 IMMEDIAT 0 0 number of processes for disk rebalancing
131072 3 1 1 0 0 0 ASM file stripe size
8 3 1 1 0 0 0 ASM file stripe width
18 3 1 0 IMMEDIAT 0 0 Max/imum time to wait before asmb exits
1 1 1 0 0 0 0 ASSM default
1 1 1 0 IMMEDIAT 0 0 if TRUE, issue recovery claims asynchronou
1 1 1 0 0 0 0 if TRUE, issue recovery reads asynchronous
C:\ORACLE\P 2 1 0 DEFERRE 0 0 Directory in which auditing files are to reside
0 1 1 0 0 0 0 enable sys auditing
NONE 2 1 0 0 0 0 enable system auditing
1 1 1 0 IMMEDIAT 0 0 if TRUE, do not prepare a buffer when the m
0 1 1 0 0 0 0 AWR Corrupt Mode
2 1 0 IMMEDIAT 0 0 Disable flushing of specified AWR tables
0 1 1 0 IMMEDIAT 0 0 Enable/Disable Flushing AWR Workload Me
0 1 1 0 IMMEDIAT 0 0 Enable/Disable Flushing AWR Workload Me
1 1 1 0 IMMEDIAT 0 0 Enable/disable AWR MMON CPU Usage Tra
0 1 1 0 0 0 0 AWR Restrict Mode
200 3 1 0 IMMEDIAT 0 0 Setting for AWR SQL Child Limit
partial 2 0 0 0 0 0 Core Size for Background Processes
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 Detached process dump directory
0 3 1 0 DEFERRE 0 0 BACKUP Disk I/O slaves
1048576 3 1 0 0 0 0 memory to reserve from the large pool
0 3 1 1 IMMEDIAT 0 0 specifies buffer size to be used for kgc comp
0 3 1 1 IMMEDIAT 0 0 specifies number of iterations used for kgc c
0 3 1 1 IMMEDIAT 0 0 specifies compression type used for kgc com
0 3 1 1 IMMEDIAT 0 0 number of the ksfq buffers used for backup/r
0 3 1 1 IMMEDIAT 0 0 size of the ksfq buffer used for backup/restor
4294967294 3 1 1 IMMEDIAT 0 0 largest gap in an incremental/optimized back
0 1 1 0 DEFERRE 0 0 BACKUP Tape I/O slaves
8 3 1 1 IMMEDIAT 0 0 number of bitmaps to store for each datafile
104857600 3 1 1 IMMEDIAT 0 0 maximum size of all change tracking buffer a
1 3 1 1 IMMEDIAT 0 0 mininum number of extents to allocate per b
2097152 3 1 1 IMMEDIAT 0 0 size of one change tracking buffer allocation
0 3 1 1 IMMEDIAT 0 0 change tracking datafile chunk size, in bytes
262144 3 1 0 0 0 0 change tracking reserved crash recovery SG
0 3 1 1 IMMEDIAT 0 0 block size of change tracking file, in bytes
0 3 1 1 IMMEDIAT 0 0 extent size of change tracking file, in bytes
2 1 1 IMMEDIAT 0 0 change tracking file for fixed tables
0 3 1 1 IMMEDIAT 0 0 initial number of entries in the private change
0 3 1 1 IMMEDIAT 0 0 total size of all public change tracking dba bu
1048576 3 1 0 0 0 0 maximum memory allow for BITMAP MERG
1 1 1 1 IMMEDIAT 0 0 controls extensions to partition pruning for ge
0 1 1 0 0 0 0 blank trimming semantics parameter
128 3 1 0 0 0 0 number of consecutive blocks per global cac
1 1 1 1 IMMEDIAT 0 0 change tracking possible
0 3 1 1 IMMEDIAT 0 0 debug level for bloom filtering
1 1 1 1 IMMEDIAT 0 0 enables or disables bloom filter
1 1 1 1 IMMEDIAT 0 0 allow rewrites with multiple MVs and base ta
100 3 1 1 IMMEDIAT 0 0 buffer busy wait time in centiseconds
2 1 0 0 0 0 Number of database blocks/latches in keep b
2 1 0 0 0 0 Number of database blocks/latches in recycl
0 3 1 0 IMMEDIAT 0 0 flow control threshold value
0 3 1 0 IMMEDIAT 0 0 maximum size of the message allowed in me
0 1 1 0 IMMEDIAT 0 0 Stop enforcing flow control for buffered queu
0 1 1 1 IMMEDIAT 0 0 DEFERRED MV creation skipping MV log se
0 3 1 1 0 0 0 how many blocks should we allocate per free
1 1 1 0 IMMEDIAT 0 0 if TRUE, generate a BWR for a flushed PI
1 1 1 1 IMMEDIAT 0 0 enable the use of bitmap plans for tables w.
0 1 1 0 IMMEDIAT 0 0 if TRUE, enable cache stats monitoring
120 3 1 0 0 0 0 CGS reconfiguration timeout interval
300 3 1 0 0 0 0 CGS send timeout value
1 1 1 0 IMMEDIAT 0 0 perform block check after checksum if both a
0 3 1 1 IMMEDIAT 0 0 check tablespace thresholds
3 1 0 IMMEDIAT 0 0 max number of circuits
100 3 1 0 0 0 0 no. of undo entries to apply per transaction c
0 1 1 1 0 0 0 close cursors cached by PL/SQL at each com
0 1 0 0 0 0 0 if TRUE startup in cluster database mode
1 3 1 0 0 0 0 number of instances to use for sizing cluster
2 1 0 0 0 0 interconnects for RAC use
clss 2 1 0 0 0 0 cluster library selection
0 1 1 1 IMMEDIAT 0 0 collapse wait history
1 1 1 0 DEFERRE 0 0 Collect Statistics v$undostat
0 3 1 1 0 0 0 Column compression ratio
0 1 1 1 IMMEDIAT 0 0 turn off predicate-only column elimination
1 3 1 1 IMMEDIAT 0 0 column usage tracking
1 3 1 0 0 0 0 Bias this node has toward not preparing in a
2 1 1 IMMEDIAT 0 0 transaction commit log write behaviour
10.2.0.2.0 2 0 0 0 0 0 Database will be completely compatible with
16384 3 1 1 IMMEDIAT 0 0 Size of the compilation call heaps extents
1 1 1 1 IMMEDIAT 0 0 enable complex view merging
0 3 1 0 0 0 0 control file block size in bytes
0 1 1 0 IMMEDIAT 0 0 dump the system states after controlfile enqu
900 3 1 0 0 0 0 control file enqueue timeout in seconds
3 1 0 0 0 0 control file initial section size
3 1 0 0 0 0 control file max expansion rate
OFF 2 1 0 IMMEDIAT 0 0 controlfile update sanity check
C:\ORACLE\O 2 0 0 0 0 0 control file names list
7 3 0 0 IMMEDIAT 0 0 control file record keep time in days
0 1 1 1 IMMEDIAT 0 0 enables conversion of set operator to join
0 3 1 0 0 0 0 parallel recovery coordinator side extra mess
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 Core dump directory
2 1 0 0 0 0 corrupted undo segment list
1 1 1 1 IMMEDIAT 0 0 enables costing of equality semi-join
2 3 1 0 IMMEDIAT 0 0 number of CPUs for this instance
0 3 1 1 IMMEDIAT 0 0 divisor for converting CPU cost to I/O cost
8388608 3 1 0 0 0 0 size of create bitmap buffer for bitmap index
2 1 1 IMMEDIAT 0 0 create stored outlines for DML statements
1 1 1 0 IMMEDIAT 0 0 if TRUE, grant lock for CR requests when blo
AUTO 2 1 0 IMMEDIAT 0 0 turn 3-way CR grants off, make it automatic,
1 1 1 0 IMMEDIAT 0 0 if TRUE, flush redo log before serving a CR
1 1 1 1 IMMEDIAT 0 0 Enable HWM brokered CTAS
400 3 1 0 IMMEDIAT 0 0 maximum size of the cursor bind capture are
900 3 1 0 IMMEDIAT 0 0 interval (in seconds) between two bind captu
0 1 1 0 0 0 0 frame & bind buffer caching
197 3 1 1 DEFERRE 0 0 additional number of buffers a cursor can pin
2 3 1 0 0 0 0 Shared cursor features enabled bits.
1 1 1 1 IMMEDIAT 0 0 enable collection and display of cursor plans
1 3 1 1 IMMEDIAT 0 0 version of cursor plan hash value
1 1 1 1 IMMEDIAT 0 0 enables/disables using unparse to build proj
EXACT 2 0 1 IMMEDIAT 0 0 cursor sharing mode
1 1 0 0 0 0 0 use more memory in order to get faster exec
15 3 1 0 0 0 0 Hash table buckets for cursor stats (2^).
4 3 1 0 0 0 0 Heaps/latches for cursor stats.
0 1 1 0 0 0 0 debug process startup
1 1 1 0 IMMEDIAT 0 0 Enable dbwriter asynchronous writes
0 3 1 0 0 0 0 DBWR I/O slaves
300 3 1 0 IMMEDIAT 0 0 dbwriter scan interval
0 3 1 0 IMMEDIAT 0 0 Enable dbwriter tracing
0 6 1 0 IMMEDIAT 0 0 Size of cache for 16K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 2K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 32K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 4K buffers
0 6 1 0 IMMEDIAT 0 0 Size of cache for 8K buffers
1 3 1 0 0 0 0 Touch count set when buffer cooled
0 1 1 0 0 0 0 Make CR buffers always be too cold to keep
2 3 1 0 0 0 0 Touch count which sends a buffer to head of
0 3 1 0 0 0 0 Touch count set when buffer moved to head
3 3 1 0 0 0 0 Touch count which sends a buffer to head of
1 1 1 0 IMMEDIAT 0 0 Always perform block check and checksum f
1 1 1 0 IMMEDIAT 0 0 adjacent cache buffer checks - low blkchk ov
79445760 3 1 0 IMMEDIAT 0 0 adjacent cache buffer check level
1 1 1 0 0 0 0 Align Direct Reads
41915 3 1 0 0 0 0 Number of database blocks cached in memo
0 3 1 0 0 0 0 Number of database blocks cached in memo
0 1 1 0 0 0 0 Always clone data blocks on get (for debugg
0 3 1 0 0 0 0 buffer header tracing (non-zero only when de
2 3 1 0 0 0 0 buffer header tracing level
0 3 1 0 0 0 0 number of unmapped buffers (for tracking sw
0 2 1 0 0 0 0 protect database blocks (true only when deb
0 3 1 0 0 0 0 protect database blocks (for strictly internal u
0 2 0 1 IMMEDIAT 0 0 header checking and data and index block c
typical 2 0 0 IMMEDIAT 0 0 store checksum in db blocks and check durin
0 1 1 0 IMMEDIAT 0 0 Check more and dump block before image fo
1 1 1 0 IMMEDIAT 0 0 check objd and typ on cache disk read
0 1 1 0 IMMEDIAT 0 0 do full block read even if some blocks are in
131072 3 1 0 0 0 0 Number of database block hash buckets
1024 3 1 0 0 0 0 Number of database block hash latches
0 3 1 0 0 0 0 Fraction of writes for high priority reasons
2 3 1 0 0 0 0 Initial Percentage of buffers to maintain know
8 3 1 0 0 0 0 number of lru latches
6 3 1 0 0 0 0 Maximum Allowed Number of CR buffers pe
40 3 1 0 0 0 0 Percentage of buffers to inspect when lookin
0 3 1 0 0 0 0 Fraction of writes for medium priority reason
1 3 1 0 0 0 0 Number of NUMA nodes
0 3 1 0 IMMEDIAT 0 0 Prefetch limit in blocks
10 3 1 0 IMMEDIAT 0 0 Prefetch quota as a percent of cache size
16384 3 0 0 0 0 0 Size of database block in bytes
4194304 6 1 0 0 0 0 Size of shared table scan read buffer
0 1 1 0 IMMEDIAT 0 0 generate redo for temp blocks
0 1 1 0 IMMEDIAT 0 0 trace buffer protect calls
on 2 0 0 IMMEDIAT 0 0 Buffer cache sizing advisory
128 3 1 0 0 0 0 cache advisory simulation batch size
4 3 1 0 0 0 0 cache advisory sampling factor
0 1 1 0 0 0 0 check for costly crx examination functions
1 1 1 0 0 0 0 Buffer Cache Pre-Warm Enabled : hidden pa
3 1 1 IMMEDIAT 0 0 maximum number of cr pins a process may h
0 6 1 0 IMMEDIAT 0 0 Size of DEFAULT buffer pool for standard bl
696254464 6 0 0 IMMEDIAT 0 0 Actual size of DEFAULT buffer pool for stand
1 1 1 1 IMMEDIAT 0 0 enable db change notification
2 1 1 IMMEDIAT 0 0 default database location
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #1
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #2
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #3
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #4
2 1 1 IMMEDIAT 0 0 online log/controlfile destination #5
world 2 0 0 0 0 0 directory part of global database name store
0 1 1 0 IMMEDIAT 0 0 enable fast object drop sanity check
1 1 1 0 IMMEDIAT 0 0 enable fast object checkpoint
1 1 1 0 IMMEDIAT 0 0 enable fast object truncate
200 3 0 0 0 0 0 max allowable # db files
1048576 3 1 0 DEFERRE 0 0 Sequential I/O buf size
64 3 1 1 IMMEDIAT 0 0 multiblock read count for regular clients
4 3 1 0 IMMEDIAT 0 0 Block formatting I/O buf count
64 3 1 1 IMMEDIAT 0 0 db block to be read each IO
2 1 1 0 0 0 datafile name convert patterns and strings fo
11 3 1 0 0 0 0 number of noncontiguous db blocks to be pr
8 3 1 1 IMMEDIAT 0 0 multiblock read count for regular clients
1440 3 0 0 IMMEDIAT 0 0 Maximum Flashback Database log retention
1050 3 1 0 0 0 0 System-wide simultaneous buffer operations
5 3 1 0 0 0 0 Buffer handles cached each process
0 1 1 1 IMMEDIAT 0 0 track hot blocks for hash latch contention
1 1 1 1 IMMEDIAT 0 0 index block checking override parameter
0 6 1 0 IMMEDIAT 0 0 Size of KEEP buffer pool for standard block
25 3 1 0 0 0 0 Number of buffers which force dirty queue to
0 1 1 0 0 0 0 Enable scn based lost write detection mecha
OFF 2 1 0 IMMEDIAT 0 0 MTTR advisory
0 3 1 0 0 0 0 number of partitions for MTTR advisory
64 3 1 0 0 0 0 MTTR simulation sampling factor
2 1 0 IMMEDIAT 0 0 MTTR simulation targets
256 3 1 0 0 0 0 MTTR simulation trace size
0 1 1 0 0 0 0 dump trace entries to alert file
test16 2 0 0 0 0 0 database name specified in CREATE DATA
0 1 1 0 0 0 0 fast object checkpoint ordered by lrba
1 1 1 0 0 0 0 enable ksr in object checkpoint/reuse
50 3 1 0 0 0 0 Percent of default buffer pool considered hot
0 3 1 0 0 0 0 Percent of keep buffer pool considered hot
0 3 1 0 0 0 0 Percent of recycle buffer pool considered ho
2 3 1 0 0 0 0 size of cache created per cpu in deferred ca
C:\oracle\fla 2 0 0 IMMEDIAT 0 0 default database recovery file location
1.468E+10 6 0 0 IMMEDIAT 0 0 database recovery files size limit
2 1 0 IMMEDIAT 0 0 default database recovery temporal file locat
0 6 1 0 IMMEDIAT 0 0 Size of RECYCLE buffer pool for standard b
1 1 1 1 IMMEDIAT 0 0 row overlap checking override parameter for
1 1 1 0 0 0 0 buffer cache deferred create
test16 2 0 0 0 0 0 Database Unique Name
0 3 1 0 0 0 0 Number of writes DBWR should wait for
1048576 6 1 0 0 0 0 Size of memory allocated to dbwriter for coa
131072 3 1 0 IMMEDIAT 0 0 Limit on size of coalesced write
1 1 1 0 0 0 0 If FALSE, DBWR will not downgrade IMU txn
0 1 1 0 0 0 0 maintain dbwr histogram statistics in x$kcbb
0 3 1 0 0 0 0 Max number of outstanding DB Writer IOs
1 3 0 0 0 0 0 number of background database writer proc
0 1 1 0 0 0 0 Enable lost write detection mechanism
0 1 1 1 IMMEDIAT 0 0 Disable NOWAIT DML lock acquisitions
10 3 1 0 IMMEDIAT 0 0 PMON dead process scan interval
0 1 1 1 IMMEDIAT 0 0 wait for debug
10 3 1 0 0 0 0 dedicated server poll count
0 1 1 0 0 0 0 dedicated server post/wait
0 1 1 0 0 0 0 dedicated server post/wait call
0 3 1 0 0 0 0 default encryption algorithm
1 1 1 1 IMMEDIAT 0 0 sanity check on default selectivity for like/ran
1 1 1 1 0 0 0 delays index maintenance until after MV is re
C:\ORACLE\P 2 1 0 IMMEDIAT 0 0 data guard broker configuration file #1
C:\ORACLE\P 2 1 0 IMMEDIAT 0 0 data guard broker configuration file #2
test16_XPT 2 1 0 IMMEDIAT 0 0 service names for broker use
0 1 1 0 IMMEDIAT 0 0 start Data Guard broker framework (DMON p
1 1 1 0 0 0 0 start DIAG daemon
1 1 1 1 IMMEDIAT 0 0 Turn off diag diagnostics
1 1 1 1 IMMEDIAT 0 0 control dimension skip when null feature
0 1 1 1 IMMEDIAT 0 0 adaptive shrunk aggregation
0 1 1 1 IMMEDIAT 0 0 disable datalayer sampling
0 1 1 1 IMMEDIAT 0 0 Turn off connection duplexing
0 1 1 1 IMMEDIAT 0 0 fast aggregation
0 1 1 0 0 0 0 disable file locks for control, data, redo log fi
0 1 1 1 IMMEDIAT 0 0 disable function-based index matching
0 1 1 0 0 0 0 Disable Health Check
0 1 1 0 IMMEDIAT 0 0 Disable Oracle executable image checking
0 1 1 0 IMMEDIAT 0 0 Disable incremental checkpoints for thread r
0 1 1 0 IMMEDIAT 0 0 Disable incremental recovery checkpoint me
0 1 1 0 0 0 0 disable instance type check for ksp
0 1 1 0 0 0 0 disable interface checking at startup
0 1 1 0 IMMEDIAT 0 0 disable kcbh(c)xor OSD functionality
0 1 1 0 0 0 0 disable latch-free SCN writes using 32-bit co
0 1 1 0 0 0 0 disable latch-free SCN writes using 64-bit co
0 1 1 0 IMMEDIAT 0 0 Disable logging
0 1 1 0 0 0 0 disable multiple block size support (for debu
0 1 1 0 0 0 0 Disable logging to NT event log
0 1 1 0 0 0 0 disable odm feature
0 1 1 1 IMMEDIAT 0 0 Disable the new recoverable recovery mech
0 1 1 0 IMMEDIAT 0 0 Disable the read optimization during media r
0 1 1 1 IMMEDIAT 0 0 disable row sampling IO optimization
0 1 1 0 0 0 0 disable the fix for bug 1402161
0 1 1 0 IMMEDIAT 0 0 Disable self-tune checkpointing
0 1 1 0 IMMEDIAT 0 0 disable streams pool auto tuning
4294967294 3 1 0 IMMEDIAT 0 0 disable system state dump
0 3 1 0 IMMEDIAT 0 0 disable txn layer alert
0 1 1 0 0 0 0 enable OLTP mode
1 1 1 0 0 0 0 Use asynch I/O for random access devices
2 1 0 IMMEDIAT 0 0 specifications of dispatchers
2 1 0 0 0 0 scale to display rate statistic (100ths of a sec
2 1 0 0 0 0 time-to-live for rate statistic (100ths of a seco
0 1 1 1 IMMEDIAT 0 0 enables unnesting of in subquery into distinc
60 3 1 0 0 0 0 number of seconds a distributed transaction
200 3 1 0 0 0 0 number of seconds RECO holds outbound c
2 1 0 0 0 0 Trace string of global enqueue type(s)
30000 3 1 0 0 0 0 DLM send timeout value
1036 3 1 0 0 0 0 dml locks - one for each table modified in a t
1 1 1 0 IMMEDIAT 0 0 enable modification monitoring
1 3 1 1 IMMEDIAT 0 0 max percentage of the shared pool to use fo
2000 3 1 0 0 0 0 maximum number of rows from one call to do
200 3 1 0 0 0 0 maximum number of rows for one call to dom
256 3 1 1 IMMEDIAT 0 0 drop_table_granule
1 1 1 1 IMMEDIAT 0 0 reduce SGA memory use during drop of a pa
0 1 1 0 IMMEDIAT 0 0 start DG Broker monitor (DMON process)
0 1 1 0 IMMEDIAT 0 0 enable full cache flush for parallel execution
6553664 3 1 1 IMMEDIAT 0 0 Dynamic Sampling Service defaults: #IOs an
131072 3 1 1 IMMEDIAT 0 0 size of Decision Tree Classification work are
1 1 1 1 IMMEDIAT 0 0 Decision Tree Binning Enabled
0 3 1 1 IMMEDIAT 0 0 Decision Tree Binning Test ID
1 1 1 1 IMMEDIAT 0 0 Decision Tree Using Compressed Bitmaps E
1 3 1 1 IMMEDIAT 0 0 maximum number of surrogates
1 1 1 1 IMMEDIAT 0 0 Decision Tree Pruning Enabled
0 1 1 0 0 0 0 dummy instance started by RMAN
0 1 1 1 IMMEDIAT 0 0 dump common subexpressions
0 1 1 1 IMMEDIAT 0 0 dump connect by loop error message into trc
0 1 1 1 0 0 0 dump comp/exec heap sizes to tryace file
120 3 1 0 0 0 0 trace dump time interval limit (in seconds)
5 3 1 0 0 0 0 max number of dump within dump interval
0 3 1 1 0 0 0 dump top level query parse tree to trace
1 1 1 0 IMMEDIAT 0 0 if TRUE enables IPC dump at instance evict
local 2 1 0 0 0 0 scope of sysstate dump during instance term
global 2 1 0 0 0 0 scope of trace dump during a process crash
1 1 1 0 0 0 0 rls policies are dynamic
30 3 1 0 0 0 0 delay threshold (in seconds) between sendin
1 1 1 1 IMMEDIAT 0 0 enables elimination of common sub-express
1 1 1 0 DEFERRE 0 0 enable block level recovery
0 1 1 0 0 0 0 enable commit SCN caching for all transactio
0 3 1 0 0 0 0 to enable default implementation of affinity o
1 1 1 1 IMMEDIAT 0 0 enable dml lock escalation against partitione
1 1 1 1 IMMEDIAT 0 0 use check constraints on the table for valida
0 1 1 1 0 0 0 enable fast refresh after move tablespace
0 1 1 1 IMMEDIAT 0 0 TRUE - enable hash cluster overflow based
1 1 1 0 IMMEDIAT 0 0 enable HWM synchronization
0 1 1 0 0 0 0 Enable List I/O
0 1 1 0 0 0 0 Enable skgxp driver usage for native net
1 1 1 0 0 0 0 Enable NUMA specific optimizations
1 1 1 1 IMMEDIAT 0 0 enable or disable MV refresh scheduling (rev
1 1 1 0 IMMEDIAT 0 0 Enable reliable latch waits
1 1 1 0 IMMEDIAT 0 0 enable RLB metrics processing
0 1 1 1 IMMEDIAT 0 0 use the row shipping optimization for wide ta
0 1 1 0 0 0 0 temporary to disable/enable kgh policy
1 1 1 0 IMMEDIAT 0 0 enable tablespace alerts
1 1 1 1 IMMEDIAT 0 0 enable type dependent selectivity estimates
0 1 1 0 0 0 0 debug enqueue multi instance
507 3 1 0 0 0 0 enqueue hash table length
2 3 1 0 0 0 0 enqueue hash chain latches
3000 3 1 0 0 0 0 locks for managed enqueues
1256 3 1 0 0 0 0 resources for enqueues
2 1 0 0 0 0 debug event control - default null string
1 1 1 1 IMMEDIAT 0 0 expand aggregates
0 1 1 1 IMMEDIAT 0 0 allow additional messages to be generated d
1 1 1 1 IMMEDIAT 0 0 do runtime pruning in iterator if set to TRUE
4 3 1 0 IMMEDIAT 0 0 number of times to CR serve before downgra
0 1 1 0 0 0 0 if TRUE enables fair remote convert
2 1 0 IMMEDIAT 0 0 FAL client
2 1 0 IMMEDIAT 0 0 FAL server list
1 1 1 1 IMMEDIAT 0 0 enable/disable fast dual
1 1 1 1 IMMEDIAT 0 0 enable/disable index fast full scan
0 3 1 0 IMMEDIAT 0 0 cluster availability target time in RAC environ
0 3 1 0 IMMEDIAT 0 0 Upper bound on recovery reads
0 3 1 0 IMMEDIAT 0 0 MTTR target of forward crash recovery in se
LOW 2 1 0 IMMEDIAT 0 0 max number of parallel recovery slaves that
automatic 2 1 1 0 0 0 Set Frequent Itemset Counting Algorithm
131072 3 1 1 IMMEDIAT 0 0 size of Frequent Itemset Counting work area
20 3 1 1 DEFERRE 0 0 Frequent Itemset Counting Maximum Itemse
1024 3 1 1 DEFERRE 0 0 Frequent Itemset Counting Minimum BITMA
0 1 1 1 DEFERRE 0 0 Frequent Itemset Counting Out Of Memory C
2 1 1 IMMEDIAT 0 0 fifth spare parameter - string
2 1 0 0 0 0 Network Adapters for File I/O
2 1 0 0 0 0 FILEMAP directory
2 1 0 0 0 0 IO operations on filesystem files
0 1 1 0 IMMEDIAT 0 0 enable file mapping
3 1 1 IMMEDIAT 0 0 first spare parameter - integer
2 1 0 IMMEDIAT 0 0 fixed SYSDATE value
2 1 1 IMMEDIAT 0 0 bug fix control parameter
0 1 1 0 IMMEDIAT 0 0 Allow enabling flashback on noarchivelog da
1800 3 1 0 0 0 0 Flashback barrier interval in seconds
10 3 1 0 0 0 0 Number of flashback copy latches
1 1 1 0 IMMEDIAT 0 0 Use flashback fuzzy barrier
8388608 3 1 0 0 0 0 flashback generation buffer size
20 3 1 0 0 0 0 Flashback hint barrier percent
600 3 1 0 0 0 0 flashback logfile enqueue timeout for opens
0 3 1 0 IMMEDIAT 0 0 Specify Flashback log I/O error behavior
100 3 1 0 0 0 0 Minimum flashback log size
1000 3 1 0 0 0 0 Flashback log size
0 6 1 0 IMMEDIAT 0 0 Maximum flashback log size in bytes (OS lim
2048 3 1 0 0 0 0 Maximum number of flashback logs per flash
128 3 1 0 0 0 0 Desired number of flashback logs per flashb
1800 3 1 0 0 0 0 Flashback standby barrier interval in second
0 1 1 0 IMMEDIAT 0 0 Print verbose information about flashback da
4 3 1 0 IMMEDIAT 0 0 Desired flashback write size in quarter MB
0 1 1 1 IMMEDIAT 0 0 force use of trunc for datefolding rewrite
0 1 1 1 IMMEDIAT 0 0 control new query rewrite features
0 1 1 1 IMMEDIAT 0 0 executes concatenation of rollups using tem
2 1 1 IMMEDIAT 0 0 fourth spare parameter - string
1 1 1 1 IMMEDIAT 0 0 enable full partition-wise join when TRUE
1 1 1 1 IMMEDIAT 0 0 enable group-by and aggregation using hash
1 1 1 1 DEFERRE 0 0 enable use of one comparison of all group b
1 1 1 0 0 0 0 if TRUE, enable fast reconfiguration for gcs l
0 3 1 0 0 0 0 number of gcs resource hash latches to be a
1 1 1 0 IMMEDIAT 0 0 if TRUE, process gcs requests during instan
3 1 0 0 0 0 number of gcs resources to be allocated
0 3 1 0 0 0 0 number of background gcs server processes
3 1 0 0 0 0 number of pcm shadow locks to be allocated
50 3 1 0 IMMEDIAT 0 0 dynamic affinity limit
1200 3 1 0 IMMEDIAT 0 0 dynamic affinity minimum activity per minute
10 3 1 0 0 0 0 if non zero, enable dynamic object affinity
0 1 1 0 0 0 0 if TRUE, use async memcpy
1 1 1 0 IMMEDIAT 0 0 if TRUE, check for stale blocks
1 1 1 0 IMMEDIAT 0 0 if TRUE, coalesce recovery reads
3 3 1 0 IMMEDIAT 0 0 how long to defer down converts for hot buff
1 1 1 0 0 0 0 if TRUE, get dynamic affinity locks
103 3 1 0 0 0 0 global cache element percent
2 1 0 0 0 0 mapping between file numbers and global ca
AUTO 2 1 0 IMMEDIAT 0 0 turn global lru off, make it automatic, or turn
1 3 1 0 0 0 0 set the integrity check level
1 1 1 0 0 0 0 if TRUE, make recovery buffers current
8 3 1 0 0 0 0 number of latches per LMS process
0 3 1 0 0 0 0 maximum number of bids which can be prep
1 1 1 0 IMMEDIAT 0 0 if TRUE, kcl statistics are maintained
1 1 1 0 0 0 0 if TRUE, enable dynamic undo affinity
1 1 1 0 0 0 0 if TRUE, get affinity locks for undo
1 1 1 0 0 0 0 if TRUE, allow CR pins on PI and WRITING
1 1 1 0 0 0 0 if TRUE, vector read current buffers
1 1 1 1 IMMEDIAT 0 0 controls extensions to partition pruning for ge
1 3 1 0 IMMEDIAT 0 0 if 1 or higher enables GES deadlock detectio
1 1 1 0 IMMEDIAT 0 0 if TRUE enables GES diagnostics
1 3 1 0 IMMEDIAT 0 0 if greater than 0 enables GES system health
1 1 1 1 IMMEDIAT 0 0 enables filter for global index with partition e
2 1 0 0 0 0 Global Application Context Pool Size in Byte
0 1 0 1 IMMEDIAT 0 0 enforce that database links have same name
3 3 1 1 IMMEDIAT 0 0 groupby nopushdown cut ratio
5000 3 1 1 IMMEDIAT 0 0 groupby/orderby don't combine threshold
1 1 1 1 IMMEDIAT 0 0 enable anti/semi join for the GS query
3 3 1 0 IMMEDIAT 0 0 hang analysis num call stacks
0 3 1 0 0 0 0 Hang Management detection interval
0 1 1 0 0 0 0 if TRUE enable H.A.R.D specific format chan
131072 3 1 1 0 0 0 size of in-memory hash work area
1 1 1 1 0 0 0 enable/disable hash join
0 3 1 1 IMMEDIAT 0 0 number of blocks hash join will read/write at
0 3 1 0 IMMEDIAT 0 0 high server thresholds
0 3 1 0 0 0 0 SGA starting address (high order 32-bits on
50 3 1 1 0 0 0 hash-join bit filtering threshold (0 always ena
1 1 1 0 IMMEDIAT 0 0 enable automatic server DD updates in HS a
10 3 1 1 IMMEDIAT 0 0 HWM synchronization threshold in percentag
1 1 1 0 0 0 0 enable conventional index maintenance for i
100000000 3 1 1 IMMEDIAT 0 0 proportionality constant for dop vs. rows in in
4 1 0 0 0 0 include file in init.ora
0 1 1 0 IMMEDIAT 0 0 ignore DESC in indexes, sort those columns
1 1 1 0 IMMEDIAT 0 0 if TRUE, propagate commit SCN immediatel
1 1 1 1 IMMEDIAT 0 0 improved outer-join cardinality calculation
1 1 1 1 IMMEDIAT 0 0 enable the improvements for computing the
1 1 1 0 0 0 0 Activate Instance Membership Recovery fea
3 3 1 0 0 0 0 Maximum wait for IMR disk voting (seconds)
300 3 1 0 0 0 0 Maximum Reconfiguration delay (seconds)
600 3 1 0 0 0 0 Maximum wait for split-brain resolution (seco
3 3 1 0 0 0 0 in memory undo pools
30 3 1 0 IMMEDIAT 0 0 Minimum number of writes for incremental re
1 1 1 1 IMMEDIAT 0 0 enable the use of index joins
100 3 1 1 IMMEDIAT 0 0 index prefetching factor
10 3 1 0 IMMEDIAT 0 0 number of granules to process for deferred c
%ORACLE_HO 2 1 0 0 0 0 File containing SQL statements to execute u
0 3 1 0 0 0 0 inject fault in the startup code
1 1 1 0 IMMEDIAT 0 0 during parallel inserts high water marks are b
2 1 0 0 0 0 list of instance group names
test16 2 0 0 0 0 0 instance name supported by the instance
0 3 1 0 0 0 0 instance number
RDBMS 2 1 0 0 0 0 type of instance to be executed
5 3 1 1 0 0 0 period an instance can retain a newly acquir
1 1 1 0 0 0 0 if TRUE, checksum interconnect blocks
1 1 1 1 IMMEDIAT 0 0 Enable intra-partition updates/deletes
1 1 1 1 IMMEDIAT 0 0 Enable intra-partition updates/deletes with ra
1 1 1 1 IMMEDIAT 0 0 Make in memory undo for top level transactio
0 3 1 0 0 0 0 inject fault in the ior serialize code
1 3 1 0 DEFERRE 0 0 Per attempt IOs picked
500 3 1 0 DEFERRE 0 0 IOs issued before completion check
4194304 6 1 0 0 0 0 Size of I/O buffer pool from SGA
0 1 1 0 0 0 0 Do not use I/O slaves
0 3 1 0 0 0 0 max allowed size in bytes of a Java sessions
8388608 6 0 0 IMMEDIAT 0 0 Actual size in bytes of java pool
8388608 6 0 0 IMMEDIAT 0 0 size in bytes of java pool
0 3 1 0 0 0 0 warning limit on size in bytes of a Java sessi
5 3 1 0 0 0 0 Wakeup interval in seconds for job queue co
10 3 0 0 IMMEDIAT 0 0 number of job queue slave processes
1 1 1 0 IMMEDIAT 0 0 if TRUE, call kjbcommit
0 1 1 0 IMMEDIAT 0 0 if TRUE, conservatively log flush before CR
1 1 1 0 0 0 0 if TRUE, record le history
1 1 1 0 IMMEDIAT 0 0 if TRUE, reject pings on blocks in middle of a
32 3 1 0 0 0 0 grouping for undo block locks
128 3 1 0 0 0 0 number of locks per undo segment
0 1 1 0 IMMEDIAT 0 0 allocate dbas after populating data buffers
0 1 1 0 0 0 0 remote column size does not get modified
0 1 1 0 0 0 0 kernel message network driver
1024 3 1 0 0 0 0 size of kffmap_hash table
2048 3 1 0 0 0 0 size of kffmop_hash table
1 3 1 0 0 0 0 max kghdsidx count
5 3 1 0 0 0 0 max percentage of shared pool size to be us
9 3 1 0 0 0 0 index to the bucket count array
1 1 1 0 0 0 0 fixed extent size for library cache memory al
0 1 1 0 0 0 0 whether KGL hash collision is possible
1024 3 1 0 0 0 0 extent size for library cache heap 0
30 3 1 0 0 0 0 KGL keep cache minimum threshold
20 3 1 0 0 0 0 KGL keep cache retain threshold
52428800 3 1 0 0 0 0 maximum heap size before KGL writes warn
0 3 1 0 0 0 0 number of library cache latches
1 1 1 0 0 0 0 whether KGL to support multi-instance invali
1 1 1 0 0 0 0 whether KGL to support multi-instance locks
1 1 1 0 0 0 0 whether KGL to support multi-instance pins
10 3 1 0 0 0 0 maximum length of the KGL object cache lru
15 3 1 0 0 0 0 time to wait for locks and pins before timing
512 3 1 0 0 0 0 # of mutex latches if CAS is not supported.
1 1 1 0 IMMEDIAT 0 0 enable killing controlfile enqueue blocker on
1 3 1 0 0 0 0 if greater than 0 enables killing enqueue bloc
0 1 1 0 IMMEDIAT 0 0 Kill Java threads and do sessionspace migra
0 1 1 1 0 0 0 trace expression substitution
1 1 1 0 0 0 0 Turning on this will make KKS use mutex for
0 1 1 1 0 0 0 allow kolf to use slffopen
0 3 1 1 0 0 0 tracing level for library cache subheap level
30000 3 1 1 IMMEDIAT 0 0 default timeout for internal oradebug comma
0 3 1 0 0 0 0 ksdxw context initialization flag
1000 3 1 0 0 0 0 ksdxw number of buffers in buffered mode
10 3 1 0 0 0 0 number of watchpoints on a per-process bas
10 3 1 0 0 0 0 number of watchpoints to be shared by all pr
4 3 1 0 0 0 0 number of PCs to collect in the stack when w
999 3 1 1 DEFERRE 0 0 KSD test parmeter
60000 3 1 0 IMMEDIAT 0 0 amount of time a dying process is spared by
256 3 1 0 IMMEDIAT 0 0 kse pc table cache size
0 1 1 0 0 0 0 verify asynchronous writes issued through ks
2 1 0 0 0 0 KSI trace string of lock type(s)
1 3 1 0 0 0 0 granule locking status
8388608 3 1 0 0 0 0 granule size in bytes
3 1 0 0 0 0 timeout action interval in minutes
5 3 1 0 0 0 0 repeat count for acquisition of locks
0 1 1 0 IMMEDIAT 0 0 delay inst. termination to allow processes to
5 3 1 0 IMMEDIAT 0 0 number of seconds ksuitm waits before killin
OFF 2 1 1 IMMEDIAT 0 0 set to OFF to disable automatic slowsend dia
LMD0 2 1 0 0 0 0 reporting process for KSXP
300 3 1 0 0 0 0 set timeout for sends queued with the inter-in
0 3 1 0 IMMEDIAT 0 0 for ktc debug
0 3 1 0 0 0 0 number of ktc latches
0 3 1 0 0 0 0 number of KTU latches
none 2 1 1 0 0 0 datapump trace parameter
16000 6 1 0 0 0 0 minimum allocation size in bytes for the large
8388608 6 0 0 IMMEDIAT 0 0 Actual size in bytes of large pool
0 6 1 0 IMMEDIAT 0 0 size in bytes of large pool
5 3 1 1 0 0 0 period over which an instance can retain an
2 1 0 0 0 0 latch classes override
2 1 0 0 0 0 latch class 0
2 1 0 0 0 0 latch class 1
2 1 0 0 0 0 latch class 2
2 1 0 0 0 0 latch class 3
2 1 0 0 0 0 latch class 4
2 1 0 0 0 0 latch class 5
2 1 0 0 0 0 latch class 6
2 1 0 0 0 0 latch class 7
0 3 1 1 IMMEDIAT 0 0 Sid of process for which to collect latch stats
998 3 1 0 0 0 0 align latch recovery structures
NONE 2 1 0 IMMEDIAT 0 0 RDBMS's LDAP access option
262144 3 1 1 IMMEDIAT 0 0 size of write IOs used during a load operatio
1 1 1 1 IMMEDIAT 0 0 enable random distribution method for left of
1 1 1 0 IMMEDIAT 0 0 LGWR Asynchronous Broadcasts enabling b
0 1 1 0 0 0 0 LGWR Asynchronous IO enabling boolean fl
0 1 1 0 0 0 0 LGWR write delay for debugging
0 3 1 0 0 0 0 LGWR I/O slaves
1 3 1 0 0 0 0 Maximum wait time for lgwr to allow NetServ
1000 3 1 0 0 0 0 Variable to simulate network latency or buffe
500 3 1 0 0 0 0 Variable to simulate network latency or buffe
0 3 1 0 IMMEDIAT 0 0 Variable to simulate errors lgwrns
0 3 1 0 IMMEDIAT 0 0 Variable to simulate errors lgwr true async
1 1 1 0 IMMEDIAT 0 0 whether KGL advice should be turned on
0 3 1 0 IMMEDIAT 0 0 maximum number of non-system user sessio
0 3 1 0 IMMEDIAT 0 0 maximum number of named users that can b
0 3 1 0 IMMEDIAT 0 0 warning level for number of non-system user
1 1 1 0 0 0 0 Lightweight headers for redo
0 1 1 1 IMMEDIAT 0 0 treat LIKE predicate with bind as an equality
100 3 1 0 IMMEDIAT 0 0 threshold value to activate an additional lms
0 3 1 0 0 0 0 how often to cleanup level 0 cache res (in se
25 3 1 0 0 0 0 percentage of cached resources should be c
TMHWDI 2 1 0 0 0 0 cache resource: string of lock types(s)
0 1 1 0 0 0 0 GES checksum batch messages
128 3 1 0 0 0 0 number of contiguous blocks that will hash to
60 3 1 0 0 0 0 dd time interval in seconds
5 3 1 0 IMMEDIAT 0 0 dd scan interval in seconds
100 3 1 0 0 0 0 dynamic remastering maximum affinity reque
0 3 1 0 0 0 0 dynamic remastering bucket window size
0 3 1 0 0 0 0 dynamic remastering forced exclusive latche
0 1 1 0 0 0 0 dynamic lms invocation
1 1 1 0 0 0 0 dynamic load adjustment
0 1 1 0 0 0 0 if TRUE enables dynamic remastering
3 3 1 0 0 0 0 Number of enqueue freelist
3 1 0 0 0 0 Number of ges enqueue element freelist
1 1 1 0 0 0 0 if TRUE enables enqueue reconfiguration
2 1 0 0 0 0 mapping between file id and master instance
1 1 1 0 0 0 0 if TRUE deliver global posts to remote nodes
8 3 1 0 0 0 0 default wait time for lmd in centiseconds
0 3 1 0 0 0 0 number of background gcs server processes
8 3 1 0 0 0 0 default wait time for lms in centiseconds
12000 3 1 0 0 0 0 number of enqueues configured for cluster d
1 3 1 0 0 0 0 master resource weight for this instance
0 3 1 0 0 0 0 max. number of background global cache se
0 3 1 0 0 0 0 min. number of background global cache ser
0 3 1 0 0 0 0 GES batch message size
2 1 0 0 0 0 GES message buffer caching threshold
3000 3 1 0 0 0 0 GES message buffer cleanup interval time
0 1 1 0 0 0 0 cluster database node join optimization in re
0 1 1 0 0 0 0 disable cluster database fault-tolerance mod
0 3 1 0 0 0 0 number of latches covering the PCM HV buc
4096 3 1 0 0 0 0 number of buckets in the object affinity hash
128 3 1 0 0 0 0 number of latches in the object affinity hash
1 1 1 0 0 0 0 GES implicit process batching for IPC messa
320 3 1 0 0 0 0 number of client processes configured for clu
300 3 1 0 0 0 0 reconfiguration: process freeze timeout
180000 3 1 0 0 0 0 Reconfiguration timeout
32768 3 1 0 0 0 0 the size of receive buffer
6000 3 1 0 0 0 0 number of resources configured for cluster d
0 3 1 0 0 0 0 number of resource hash buckets
128 3 1 0 0 0 0 number of resource partition configured for g
25 3 1 0 0 0 0 GES percentage of send proxy reserve of se
10000 3 1 0 0 0 0 number of cluster database send buffers
auto 2 1 0 0 0 0 GES send mode
1 1 1 0 0 0 0 GES send queue message batching
5000 3 1 0 0 0 0 GES send queue maximum length
0 1 1 0 0 0 0 if TRUE enables share lock optimization
2 3 1 0 0 0 0 GES send queue minimum batching factor
auto 2 1 0 0 0 0 GES send queue batching mechanism
3 3 1 0 0 0 0 GES send queue batching waittime in tick
3 1 0 0 0 0 Synchronization timeout for DLM reconfigura
1000 3 1 0 0 0 0 GES messaging tickets
3 1 0 0 0 0 Flow control ticket active sendback threshold
16 3 1 0 0 0 0 TX lock localization delta
0 1 1 0 0 0 0 if TRUE enables resource name validation
352 3 1 0 0 0 0 number of transaction IDs configured for clus
none 2 1 1 IMMEDIAT 0 0 Load PL/SQL or Database objects without co
1 1 1 1 IMMEDIAT 0 0 enable local communication costing when TR
50 3 1 1 IMMEDIAT 0 0 set the ratio between global and local comm
2 1 0 IMMEDIAT 0 0 local listener
2 1 0 0 0 0 lock name space used for generating lock na
0 1 1 0 0 0 0 Lock entire SGA in physical memory
0 3 1 0 0 0 0 Lock specified areas of the SGA in physical
1 3 1 0 0 0 0 maximum number of threads to mine
1 1 1 0 0 0 0 log archive avoid memcpy
4 3 1 0 0 0 0 Number of buffers to allocate for archiving
2048 3 1 0 0 0 0 Size of each archival buffer in log file blocks
2 1 0 IMMEDIAT 0 0 archival callout
0 1 1 0 0 0 0 Bypass database rules for enabling archivelo
2 1 0 IMMEDIAT 0 0 log archive config parameter
0 3 1 0 IMMEDIAT 0 0 iterative sleep time in centiseconds seconds
2 1 0 IMMEDIAT 0 0 archival destination text string
2 1 1 IMMEDIAT 0 0 archival destination #1 text string
2 1 1 IMMEDIAT 0 0 archival destination #10 text string
2 1 1 IMMEDIAT 0 0 archival destination #2 text string
2 1 1 IMMEDIAT 0 0 archival destination #3 text string
2 1 1 IMMEDIAT 0 0 archival destination #4 text string
2 1 1 IMMEDIAT 0 0 archival destination #5 text string
2 1 1 IMMEDIAT 0 0 archival destination #6 text string
2 1 1 IMMEDIAT 0 0 archival destination #7 text string
2 1 1 IMMEDIAT 0 0 archival destination #8 text string
2 1 1 IMMEDIAT 0 0 archival destination #9 text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #1 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #10 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #2 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #3 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #4 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #5 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #6 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #7 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #8 state text string
enable 2 1 1 IMMEDIAT 0 0 archival destination #9 state text string
2 1 0 IMMEDIAT 0 0 duplex archival destination text string
arc%s_%r.%t 2 0 0 0 0 0 archival destination format
1 1 1 0 IMMEDIAT 0 0 Establish EXPEDITE attribute default value
2 3 1 0 IMMEDIAT 0 0 maximum number of active ARCH processes
1 3 1 1 IMMEDIAT 0 0 minimum number of archive destinations tha
10 3 1 0 IMMEDIAT 0 0 Log archive network redo buffer size used by
0 3 1 0 IMMEDIAT 0 0 maximum network wait time in seconds whe
0 1 1 0 IMMEDIAT 0 0 log archive protection auto demotion
1 1 1 0 0 0 0 log archive security enabled
0 1 1 0 0 0 0 start archival process on SGA initialization
0 3 1 0 IMMEDIAT 0 0 Establish archivelog operation tracing level
1 1 1 0 0 0 0 log block images when changed during back
6984704 3 0 0 0 0 0 redo circular buffer size
0 1 1 0 0 0 0 corrupt redo buffers before write
0 1 1 0 0 0 0 debug redo buffers (slows things down)
0 1 0 0 IMMEDIAT 0 0 log checkpoint begin/end to alert file
65536 3 0 0 IMMEDIAT 0 0 # redo blocks checkpoint threshold
0 3 1 0 0 0 0 # redo blocks to verify after checkpoint
3600 3 0 0 IMMEDIAT 0 0 Maximum time interval between checkpoints
0 1 1 0 IMMEDIAT 0 0 Log commit-time block cleanout
0 1 1 0 0 0 0 debug redo multi instance code
mandatory 2 1 0 0 0 0 archivelog deletion policy for mandatory/all d
0 3 1 0 0 0 0 number of the log writer event queues
2 1 0 0 0 0 logfile name convert patterns and strings for
0 3 1 0 0 0 0 automatically initiate log write if this many re
1 3 1 0 0 0 0 Number of log buffer strands
1 1 1 0 0 0 0 Enable dynamic strands
2 3 1 0 0 0 0 Maximum number of log buffer strands
5 3 1 0 0 0 0 Private strand multiplier for log space preallo
0 1 1 0 IMMEDIAT 0 0 Number of private log buffer strands for zero
10 3 1 0 0 0 0 Active sessions multiplier to deduce number
4 3 1 0 0 0 0 number of simultaneous copies into redo buf
1 1 1 0 0 0 0 should we report space errors to alert log
0 3 1 0 IMMEDIAT 0 0 Maximum number of seconds redos in the cu
1 1 1 0 IMMEDIAT 0 0 longops stats enabled
0 3 1 0 IMMEDIAT 0 0 low server thresholds
31 3 1 0 IMMEDIAT 0 0 direct sends for messages from master (DFS
1 1 1 1 IMMEDIAT 0 0 refresh materialized views using consistent r
0 1 1 1 IMMEDIAT 0 0 materialized view MAV refreshes avoid doub
0 3 1 1 IMMEDIAT 0 0 optimizations during refresh of materialized v
3 3 1 1 IMMEDIAT 0 0 # tables for union all expansion during mater
120 3 1 0 0 0 0 Maximum wait by ARCH to allow NetServer
0 3 1 0 0 0 0 Max age of new snapshot in .01 seconds
3 1 0 IMMEDIAT 0 0 max number of dispatchers
202400 2 0 1 IMMEDIAT 0 0 Maximum size (blocks) of dump file
150 3 1 0 0 0 0 max number of roles a user can have enable
0 3 1 0 0 0 0 max sleep during exponential backoff
30 3 1 0 0 0 0 Maximum time spent by LNS to archive last
10000 3 1 0 0 0 0 Max occurrence protocols supported in a pro
0 3 1 0 0 0 0 maximum number of connections used for re
3 1 0 IMMEDIAT 0 0 max number of shared servers
0 3 1 1 0 0 0 number of segments for which shrink stats w
4 3 1 0 0 0 0 max time to sleep while holding a latch
128 3 1 0 0 0 0 media recovery block read batch
3 3 1 0 0 0 0 media recovery reap time
5 3 1 0 0 0 0 memory broker num stat entries
10 3 1 0 IMMEDIAT 0 0 Marginal Utility threshold pct for bc
4 3 1 0 IMMEDIAT 0 0 Marginal Utility threshold pct for sp
0 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink shared
900 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink java po
900 3 1 0 IMMEDIAT 0 0 memory broker allow policy to shrink stream
60000000 3 1 0 IMMEDIAT 0 0 memory broker policy to timeout shrink share
30 3 1 0 IMMEDIAT 0 0 memory broker statistics gathering interval
0 3 1 0 IMMEDIAT 0 0 trace memory management activity
0 3 1 0 IMMEDIAT 0 0 partial granule sanity check
0 3 1 0 0 0 0 private memory annotation collection level
1 3 1 0 0 0 0 memory annotation pre-allocation scaling
0 3 1 0 0 0 0 shared memory annotation collection level
0 1 1 0 0 0 0 memory annotation in-memory store
4096 3 1 0 0 0 0 standard extent size for fixed-size-extent hea
420 3 1 0 0 0 0 message queue resources - dependent on #
1 1 1 1 IMMEDIAT 0 0 prohibit stats aggregation at compile/partition
0 3 1 1 0 0 0 minimum number freeable blocks for shrink t
1 3 1 1 0 0 0 minimum number freeable extents for shrink
0 3 1 0 0 0 0 Minimum SCN to start with in 2^30 units
0 1 1 0 0 0 0 Save buffers for debugging redo corruptions
1 1 1 1 IMMEDIAT 0 0 allow rewrites with multiple MVs and/or base
0 1 1 0 0 0 0 use multiple instances for media recovery
1 1 1 0 0 0 0 TRUE iff multi-join-key table lookup prefetch
0 3 1 1 0 0 0 what percent to analyze after complete/PCT
rule 2 1 1 0 0 0 refresh decision based on cost or on rules
10 3 1 1 IMMEDIAT 0 0 delta mv as fractional percentage of size of m
1 1 1 1 IMMEDIAT 0 0 refresh materialized views using EUT(partitio
0 3 1 1 0 0 0 force materialized view refreshes to use para
0 1 1 1 IMMEDIAT 0 0 materialized view MV refresh new setup disa
10 3 1 1 IMMEDIAT 0 0 minimum percentage change required in MV
1 1 1 1 IMMEDIAT 0 0 create materialized views with selections and
1 1 1 1 IMMEDIAT 0 0 pass cardinality hints to refresh queries
300000 3 1 1 IMMEDIAT 0 0 proportionality constant for dop vs. time in M
0 1 1 1 IMMEDIAT 0 0 create/alter mv uses rolling cursor invalidatio
1 1 1 0 IMMEDIAT 0 0 Enable/disable Maintenance Window Sched
1 1 1 1 IMMEDIAT 0 0 NLS allow Implicit Conversion between CHA
1 1 1 1 IMMEDIAT 0 0 should implicit conversion bewteen clob and
0 3 1 1 IMMEDIAT 0 0 enable multi-block readahead for an index sc
0 3 1 1 IMMEDIAT 0 0 turn on multi-block readahead tracing
100 3 1 1 IMMEDIAT 0 0 nested loop fudge
1 1 1 1 IMMEDIAT 0 0 nested MAV refresh fast on commit allowed
1 1 1 1 IMMEDIAT 0 0 controls whether new sorts can be used as s
63 3 1 1 IMMEDIAT 0 0 controls when new sort avoids sorting ordere
0 3 1 1 IMMEDIAT 0 0 specifies options for the new sort algorithm
1 1 1 1 IMMEDIAT 0 0 enable initial join orders based on new order
1 1 1 1 IMMEDIAT 0 0 enables the use of new cost estimate for sor
2 1 1 0 0 0 NLS calendar system name
2 1 1 0 0 0 NLS comparison
2 1 1 0 0 0 NLS local currency symbol
2 1 1 0 0 0 NLS Oracle date format
2 1 1 0 0 0 NLS date language name
2 1 1 0 0 0 Dual currency symbol
2 1 1 0 0 0 NLS ISO currency territory name
american 2 0 1 0 0 0 NLS language name
BYTE 2 1 1 IMMEDIAT 0 0 create columns using byte or char semantics
0 2 1 1 IMMEDIAT 0 0 NLS raise an exception instead of allowing im
2 1 1 0 0 0 NLS numeric characters
2 1 1 0 0 0 NLS linguistic definition name
america 2 0 1 0 0 0 NLS territory name
2 1 1 0 0 0 time stamp format
2 1 1 0 0 0 timestampe with timezone format
2 1 1 0 0 0 time format
2 1 1 0 0 0 time with timezone format
0 1 1 0 0 0 0 notify cluster ready services of startup and s
0 1 1 0 0 0 0 no object features are used
0 1 1 1 IMMEDIAT 0 0 OR expansion during optimization disabled
0 1 1 0 IMMEDIAT 0 0 no recovery through this resetlogs operation
1 3 1 0 0 0 0 Flush wait time for NetServer to flush oustan
15 3 1 0 0 0 0 Data Loss Time Bound for NetServer
Not specified 2 1 0 0 0 0 Set of nodes that this instance should run on
Not specified 2 1 0 0 0 0 aggregate size in bytes of NUMA pool
10 3 1 0 0 0 0 maximum number of cached attributes per in
2 3 1 0 0 0 0 number of child latches for long op array
1 1 0 0 0 0 0 Version 7 Dictionary Accessibility Support
10 3 1 1 DEFERRE 0 0 percentage of maximum size over optimal of
102400 3 1 1 DEFERRE 0 0 optimal size of the user session's object cach
1 1 1 0 IMMEDIAT 0 0 enable the object level statistics collection
2 1 0 0 0 0 offline undo segment list
2 1 0 0 0 0 GMS home directory
0 1 1 0 IMMEDIAT 0 0 enable olapi history retention
1000 3 1 0 0 0 0 enable olapi interface object history collectio
0 1 1 0 IMMEDIAT 0 0 enable olapi interface object history retention
0 1 1 0 IMMEDIAT 0 0 enable olapi interface operation history reten
1000 3 1 0 0 0 0 enable olapi interface operation history colle
1000 3 1 0 0 0 0 enable olapi memory alloc/free history collec
0 3 1 0 IMMEDIAT 0 0 enable olapi memory alloc/free history collec
0 1 1 0 IMMEDIAT 0 0 enable olapi memory operation history reten
300 3 1 0 0 0 0 enable olapi session history collection
0 1 1 0 IMMEDIAT 0 0 enable olapi session history retention
1048576 3 1 1 DEFERRE 0 0 OLAP Aggregate max buffer size
0 3 1 1 DEFERRE 0 0 OLAP Aggregate debug flags
1 1 1 1 DEFERRE 0 0 OLAP Aggregate function cache enabler
529 3 1 1 DEFERRE 0 0 OLAP Aggregate function merge threshold
5000 3 1 1 DEFERRE 0 0 OLAP Aggregate max thread tuples creation
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate min buffer size
64 3 1 1 DEFERRE 0 0 OLAP Aggregate minimum cardinality of dim
0 1 1 1 DEFERRE 0 0 OLAP Aggregate Multi-path Hierarhies enab
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate status array usage thresho
100 3 1 1 DEFERRE 0 0 OLAP Aggregate function storeback probabi
5000 3 1 1 DEFERRE 0 0 OLAP Aggregate max worklists generated a
1024 3 1 1 DEFERRE 0 0 OLAP Aggregate max work parents
%8p %8y %8z 2 1 1 DEFERRE 0 0 OLAP Allocate Errorlog Format
0 1 1 1 DEFERRE 0 0 Specify TRUE to enable continuous OLAP tr
0 1 1 1 DEFERRE 0 0 OLAP DbgOutfile copy output to event log (t
1 3 1 1 DEFERRE 0 0 OLAP Dimension In-Core Hash Table Class
10000 3 1 1 DEFERRE 0 0 OLAP Dimension In-Core Hash Table Maxim
2147483647 3 1 1 DEFERRE 0 0 OLAP EIF Export BLOB size
100 3 1 1 DEFERRE 0 0 Limitmap generator dimension column size
1000 3 1 1 DEFERRE 0 0 Limitmap generator measure column size
2 3 1 1 DEFERRE 0 0 OLAP Object Hash Table Class
20 3 1 1 DEFERRE 0 0 OLAP Page Pool Expand Rate
50 3 1 1 DEFERRE 0 0 OLAP Page Pool High Watermark
100 3 1 1 DEFERRE 0 0 OLAP Page Pool Hit Target
262144 3 1 1 DEFERRE 0 0 OLAP Page Pool Low Watermark
90 3 1 1 DEFERRE 0 0 OLAP Page Pool Pressure Threshold
50 3 1 1 DEFERRE 0 0 OLAP Page Pool Shrink Rate
0 6 1 1 DEFERRE 0 0 size of the olap page pool in bytes
400 3 1 1 DEFERRE 0 0 OLAP parallel update pagespace by group
1000 3 1 1 DEFERRE 0 0 OLAP parallel update threshold for number o
1000 3 1 1 DEFERRE 0 0 OLAP parallel update threshold in pages
0 1 1 1 DEFERRE 0 0 OLAP POutLog copy output to event log (tra
1 1 1 1 DEFERRE 0 0 OLAP Session Cache knob
262144 3 1 1 DEFERRE 0 0 OLAP Sort Buffer Size
20000000 3 1 1 DEFERRE 0 0 OLAP Status Boolean max incore bits
8100 3 1 1 DEFERRE 0 0 OLAP Status Boolean CBM threshold
0 1 1 1 DEFERRE 0 0 Specify TRUE to output OLAP table function
0 1 1 1 DEFERRE 0 0 Wrap error messages to OLAP outfile
0 1 1 1 IMMEDIAT 0 0 enable/disable old connect by
1 1 1 0 IMMEDIAT 0 0 Clean up unnecessary entries in OLS sessin
enabled 2 1 0 0 0 0 enable/disable OMF
1 1 1 1 IMMEDIAT 0 0 sanity check on default selectivity for like/ran
1000 3 0 0 IMMEDIAT 0 0 max # cursors per session
4 3 0 0 0 0 0 max # open links per session
4 3 1 0 0 0 0 max # open links per instance
1 1 1 1 IMMEDIAT 0 0 adjust selectivity for null values
1 1 1 0 IMMEDIAT 0 0 enable/disable auto stats collection job
ALL 2 1 1 IMMEDIAT 0 0 enable improved costing of index access usi
16384 3 1 1 IMMEDIAT 0 0 standard block size used by optimizer
0 1 1 1 IMMEDIAT 0 0 cost with cache statistics
1 1 1 1 IMMEDIAT 0 0 optimizer cartesian join enabled
50 3 1 1 IMMEDIAT 0 0 cost factor for cost-based query transformati
1 1 1 1 IMMEDIAT 0 0 disable cost based transformation query size
1 1 1 1 IMMEDIAT 0 0 CEIL cost in CBO
0 3 1 1 IMMEDIAT 0 0 force the optimizer to use the specified perm
1 1 1 1 IMMEDIAT 0 0 enable selectivity estimation for builtin functi
1 1 1 1 IMMEDIAT 0 0 force index stats collection on index creation
1 1 1 1 IMMEDIAT 0 0 use cost-based transformation for connect b
1 1 1 1 IMMEDIAT 0 0 force correct computation of subquery select
LINEAR 2 1 1 IMMEDIAT 0 0 enables cost-based query transformation
0 1 1 1 IMMEDIAT 0 0 enables costing of filter predicates in IO cos
1 1 1 1 IMMEDIAT 0 0 add cost of generating result set when #rows
CHOOSE 2 1 1 IMMEDIAT 0 0 optimizer cost model
0 3 1 1 IMMEDIAT 0 0 force the optimizer to use the same degree o
1 1 1 1 IMMEDIAT 0 0 use join selectivity in choosing star transform
0 3 1 1 IMMEDIAT 0 0 disable star transformation sanity checks
2 3 0 1 IMMEDIAT 0 0 optimizer dynamic sampling
32 3 1 1 IMMEDIAT 0 0 number of blocks for optimizer dynamic sam
1 1 1 1 IMMEDIAT 0 0 push filters before trying cost-based query tr
UDO 2 1 1 IMMEDIAT 0 0 optimizer extended cursor sharing
10.2.0.2 2 0 1 IMMEDIAT 0 0 optimizer plan compatibility parameter
1 1 1 1 IMMEDIAT 0 0 use cost-based flter predicate pull up transfo
0 1 1 1 IMMEDIAT 0 0 enables the embedded hints to be ignored
0 3 0 1 IMMEDIAT 0 0 optimizer percent index caching
100 3 0 1 IMMEDIAT 0 0 optimizer index cost adjustment
18000 3 1 0 IMMEDIAT 0 0 time window for invalidation of cursors of ana
1 1 1 1 IMMEDIAT 0 0 optimizer join elimination enabled
3 3 1 1 IMMEDIAT 0 0 controls the optimizer join order search algor
1 1 1 1 IMMEDIAT 0 0 enable/disable sanity check for multi-column
2000 3 1 1 IMMEDIAT 0 0 optimizer maximum join permutations per qu
10 3 1 1 IMMEDIAT 0 0 set minimum cached blocks
1 1 1 1 IMMEDIAT 0 0 enable merge join cartesian
ALL_ROWS 2 0 1 IMMEDIAT 0 0 optimizer mode
1 1 1 1 IMMEDIAT 0 0 force setting of optimizer mode for user recu
2 1 1 IMMEDIAT 0 0 generate and run plans using several compil
1 1 1 1 IMMEDIAT 0 0 compute join cardinality using non-rounded i
1 1 1 1 IMMEDIAT 0 0 Eliminates order bys from views before quer
DEPTH 2 1 1 IMMEDIAT 0 0 control or expansion approach used
1 1 1 1 IMMEDIAT 0 0 Enable transformation of outer-join to anti-jo
101 3 1 1 IMMEDIAT 0 0 optimizer percent parallel
0 3 1 1 IMMEDIAT 0 0 push down distinct from query block to table
1 1 1 1 IMMEDIAT 0 0 use cost-based query transformation for pus
0 3 1 1 IMMEDIAT 0 0 optimizer seed value for random plans
1 1 1 1 IMMEDIAT 0 0 enable the use of first K rows due to rownum
1 1 1 0 IMMEDIAT 0 0 enable/disable saving old versions of optimiz
5 3 1 1 IMMEDIAT 0 0 optimizer search limit
1 1 1 0 IMMEDIAT 0 0 optimizer secure view merging and predicate
0 1 1 1 IMMEDIAT 0 0 account for self-induced caching
1 1 1 1 IMMEDIAT 0 0 enable/disable index skip scan
0 1 1 1 IMMEDIAT 0 0 consider index skip scan for predicates with
1 1 1 1 IMMEDIAT 0 0 enable/disable sort-merge join method
1 1 1 1 IMMEDIAT 0 0 enables unnesting of subquery in a bottom-u
1 1 1 1 IMMEDIAT 0 0 optimizer star plan enabled
1 1 1 1 IMMEDIAT 0 0 enable/disable star transformation in with cla
1 1 1 1 IMMEDIAT 0 0 system statistics usage
none 2 1 1 0 0 0 optimizer trace parameter
1 1 1 1 IMMEDIAT 0 0 retain equi-join pred upon transitive equality
0 1 1 1 IMMEDIAT 0 0 undo changes to query optimizer
10.2.0.2 2 1 1 IMMEDIAT 0 0 optimizer undo cost change
1 1 1 1 IMMEDIAT 0 0 adjust stats for skews across partitions
1 1 1 0 IMMEDIAT 0 0 enable/disable dictionary stats gathering at d
1 1 1 1 IMMEDIAT 0 0 TRUE to enable index [fast] full scan more o
1 1 1 1 IMMEDIAT 0 0 improves the way default equijoin selectivity
1 1 1 1 IMMEDIAT 0 0 enable peeking of user binds
0 1 1 1 IMMEDIAT 0 0 force target processes to execute oradebug
1 1 1 1 IMMEDIAT 0 0 enable ordered nested loop costing
1 1 1 1 IMMEDIAT 0 0 enable ordered semi-join subquery
1 1 1 1 IMMEDIAT 0 0 enable OR expanded plan for NVL/DECODE
OPS$ 2 1 0 0 0 0 prefix for auto-logon accounts
0 1 1 0 0 0 0 retrieve roles from the operating system
1 3 1 0 0 0 0 OS high priority level
2 1 0 IMMEDIAT 0 0 exclude event names from _other_wait_thre
0 3 1 0 0 0 0 threshold wait percentage for event wait clas
1 1 1 1 IMMEDIAT 0 0 BITMAP_TREE hint enabled in outline
350 3 1 1 IMMEDIAT 0 0 set the parallelism cost fudge factor
2 3 1 0 IMMEDIAT 0 0 maximum number of users running with defa
1 1 1 0 IMMEDIAT 0 0 enable adaptive setting of degree for multiple
0 1 1 0 0 0 0 enable intelligent defaults for parallel execut
1 1 1 1 IMMEDIAT 0 0 enable broadcasting of small inputs to hash
1 3 1 0 0 0 0 default maximum number of instances for pa
0 1 1 0 0 0 0 Alignment of PX buffers to OS page bounda
2148 3 1 0 0 0 0 message buffer size for parallel execution
0 3 1 1 IMMEDIAT 0 0 fake db-scheduler percent used for testing
1000 3 1 0 0 0 0 Number of buckets for each round of fix write
2 1 1 IMMEDIAT 0 0 instance group to use for all parallel operatio
1 1 1 1 IMMEDIAT 0 0 parallel execution load balanced slave alloca
0 3 1 1 IMMEDIAT 0 0 number of threads to allocate per instance
0 3 1 0 IMMEDIAT 0 0 maximum parallel query servers per instance
0 2 1 0 0 0 0 minimum size of shared pool memory to rese
0 3 1 1 0 0 0 minimum percent of threads required for par
0 3 1 0 IMMEDIAT 0 0 minimum parallel query servers per instance
32767 3 1 0 IMMEDIAT 0 0 stop at -position- to step through SMON
4000 3 1 0 0 0 0 Number of messages for each round of para
0 1 1 0 0 0 0 if TRUE startup in parallel server mode
30000 3 1 0 IMMEDIAT 0 0 idle time before parallel query server dies (in
1 3 1 0 0 0 0 number of instances to use for sizing OPS S
10 3 1 0 IMMEDIAT 0 0 sleep time between dequeue timeouts (in 1/1
1 3 1 1 IMMEDIAT 0 0 time(in seconds) to wait before retrying slave
2 3 1 0 IMMEDIAT 0 0 number of parallel execution threads per CP
0 1 1 1 0 0 0 enable parallel_txn hint with updates and de
1024 3 1 0 0 0 0 parameter table block size
1 1 1 1 IMMEDIAT 0 0 enable partial partition-wise join when TRUE
1 1 1 1 IMMEDIAT 0 0 enable/disable partitioned views
900 3 1 0 0 0 0 password file enqueue timeout in seconds
1 1 1 1 IMMEDIAT 0 0 materialized view PCT refreshes avoid doub
5000 3 1 1 IMMEDIAT 0 0 control separation of global index maintenan
0 1 1 1 IMMEDIAT 0 0 slaves start on different index when doing in
1 1 1 1 IMMEDIAT 0 0 slaves start on different partition when doing
50 3 1 0 0 0 0 Percent of flashback buffer filled to be consid
314572800 6 0 0 IMMEDIAT 0 0 Target size for the aggregate PGA memory c
1048576 6 1 0 0 0 0 PGA large extent size
209715200 6 1 0 IMMEDIAT 0 0 Maximum size of the PGA memory for one p
3 3 1 0 0 0 0 fusion ping level
0 1 1 0 IMMEDIAT 0 0 enable progressive kill test
50 3 1 0 IMMEDIAT 0 0 PMON process clean-up interval (cs)
0 1 1 1 0 0 0 start progressive kill test instrumention
1 1 1 1 IMMEDIAT 0 0 explain plan outline data enabled
INTERPRETE 2 1 1 IMMEDIAT 0 0 PL/SQL anonymous block code-type
1 1 1 1 IMMEDIAT 0 0 PL/SQL Function Cache Enabled
2 1 1 IMMEDIAT 0 0 PL/SQL ccflags
INTERPRETE 2 0 1 IMMEDIAT 0 0 PL/SQL code-type
INTERPRETE 2 1 1 IMMEDIAT 0 0 PL/SQL compiler flags
0 1 1 1 IMMEDIAT 0 0 PL/SQL debug
2 1 0 0 0 0 conditions upon which the PL/SQL circular b
20 3 1 1 0 0 0 plsql minimum cache hit percentage required
2 1 0 IMMEDIAT 0 0 plsql native library dir
0 3 1 0 IMMEDIAT 0 0 plsql native library number of subdirectories
0 1 1 1 IMMEDIAT 0 0 PL/SQL NVL optimize
2 3 1 1 IMMEDIAT 0 0 PL/SQL optimize level
0 1 1 1 IMMEDIAT 0 0 PL/SQL version 2.x compatibility flag
DISABLE:ALL 2 1 1 IMMEDIAT 0 1 PL/SQL compiler warnings settings
300,192,64,3, 2 1 0 0 0 0 server load balancing constants (S,P,D,I,L,C
1 1 1 1 IMMEDIAT 0 0 precompute gid values and copy them befor
1 1 1 1 IMMEDIAT 0 0 allow predicate elimination if set to TRUE
1 1 1 1 IMMEDIAT 0 0 enables predicate move-around
0 1 1 1 IMMEDIAT 0 0 presume commit of IMU transactions
0 1 1 0 0 0 0 pre-page sga for process
1 1 1 1 IMMEDIAT 0 0 push predicates into views before rewrite
0 2 1 1 0 0 0 enable dbms_output of materialized view ref
2 1 0 0 0 0 Start address of large extent memory segme
210 3 0 0 0 0 0 user processes
1 1 1 1 IMMEDIAT 0 0 projection pushdown
0 3 1 1 IMMEDIAT 0 0 level for projection pushdown debugging
1 1 1 1 IMMEDIAT 0 0 enable projecting out unreferenced columns
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a view
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a union
1 1 1 1 IMMEDIAT 0 0 enable pushing join predicate inside a union
0 1 1 1 IMMEDIAT 0 0 asynchronous get granule in the slave
100 3 1 1 IMMEDIAT 0 0 set the tq broadcasting fudge factor percenta
30 3 1 1 IMMEDIAT 0 0 ttl for px mesg buffers in seconds
0 3 1 1 IMMEDIAT 0 0 debug level for parallel compilation
0 3 1 1 0 0 0 tracing level for parallel compilation
1 1 1 1 IMMEDIAT 0 0 turn off/on restartable qerpx dynamic optimiz
50 3 1 1 IMMEDIAT 0 0 num of samples for restartable qerpx dynam
100000 3 1 1 IMMEDIAT 0 0 default size of a rowid range granule (in KB)
200 3 1 1 IMMEDIAT 0 0 parallel query sampling for index create (100
0 3 1 1 IMMEDIAT 0 0 turn on kxib tracing
200 3 1 1 IMMEDIAT 0 0 interval at which LMON will check whether to
1000 3 1 1 IMMEDIAT 0 0 CPU cost to send a PX message via shared
100 3 1 1 IMMEDIAT 0 0 maximum number of rowid range granules to
1 1 1 1 IMMEDIAT 0 0 enables pq for minus/interect operators
13 3 1 1 IMMEDIAT 0 0 minimum number of rowid range granules to
10000 3 1 1 IMMEDIAT 0 0 CPU cost to send a PX message over the in
0 1 1 1 IMMEDIAT 0 0 prevent parallel partition granules to be sorte
0 1 1 1 IMMEDIAT 0 0 prevent parallel granule stealing in shared no
1 1 1 1 IMMEDIAT 0 0 enables or disables NSS Plan B reparse with
1 1 1 0 IMMEDIAT 0 0 reduce parallel_max_servers if greater than
1 1 1 1 IMMEDIAT 0 0 parallel partition wise group by enabled
1 1 1 1 IMMEDIAT 0 0 turn off/on parallel rownum pushdown optimi
300 3 1 1 IMMEDIAT 0 0 IPC message send timeout value in second
0 3 1 1 0 0 0 slaves share cursors with QC
none 2 1 1 0 0 0 px trace parameter
0 1 1 0 0 0 0 Use Large Pool as source of PX buffers
10000 3 1 1 IMMEDIAT 0 0 default size of a external table granule (in KB
0 3 1 1 IMMEDIAT 0 0 Oracle internal parameter to control QA
0 3 1 1 IMMEDIAT 0 0 Oracle internal parameter to specify QA lrg t
1 1 1 1 IMMEDIAT 0 0 perform the cost based rewrite with materiali
65536 3 1 1 DEFERRE 0 0 max size of query execution cache
1 1 1 1 IMMEDIAT 0 0 perform query rewrite before&after or only be
1 1 1 1 IMMEDIAT 0 0 perform query rewrite before&after or only af
1 1 1 1 IMMEDIAT 0 0 mv rewrite and drop redundant joins
0 2 0 1 IMMEDIAT 0 0 allow rewrite of queries using materialized vi
1 1 1 1 IMMEDIAT 0 0 rewrite with cannonical form for expressions
1 1 1 1 IMMEDIAT 0 0 mv rewrite fresh partition containment
90 3 1 1 IMMEDIAT 0 0 cost based query rewrite with MVs fudge fac
TRUSTED 2 0 1 IMMEDIAT 0 0 perform rewrite using materialized views with
1 1 1 1 IMMEDIAT 0 0 mv rewrite with jg migration
257 3 1 1 IMMEDIAT 0 0 query rewrite max disjuncts
0 1 1 1 IMMEDIAT 0 0 allow query rewrite, if referenced tables are n
1 1 1 1 IMMEDIAT 0 0 perform general rewrite using set operator su
1 1 1 1 IMMEDIAT 0 0 prune frocol chain before rewrite after view-m
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel fixwrite at reconfigu
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel replay and cleanup
1 1 1 0 IMMEDIAT 0 0 if TRUE enables parallel verify at reconfigura
2 1 0 0 0 0 RDBMS's Distinguished Name
0 1 1 0 0 0 0 if TRUE delay opening of read only files unti
32768 3 1 0 0 0 0 minimum max total heap size, in Kbytes
0 3 1 0 0 0 0 mode flags for real-free heap
65536 6 1 0 0 0 0 hint for real-free page size in bytes
0 3 1 0 IMMEDIAT 0 0 Archival delay with real time apply
0 3 1 0 IMMEDIAT 0 0 Simulation value with real time apply
50 3 1 0 IMMEDIAT 0 0 Recoverable recovery batch size (percentag
0 1 1 0 0 0 0 if TRUE, enable expensive integrity checks
0 3 1 0 0 0 0 number of server processes to use for parall
50 3 1 0 IMMEDIAT 0 0 recovery buffer cache percentage
0 1 1 0 IMMEDIAT 0 0 enable thread recovery write verify
0 1 1 1 IMMEDIAT 0 0 recursive transactions may be IMU
ON 2 0 1 IMMEDIAT 0 0 recyclebin processing
0 1 1 0 0 0 0 general and redo/undo compatibility sanity c
5 3 1 0 0 0 0 maximum number of unusable blocks to unli
0 1 1 0 0 0 0 if TRUE, block sends across interconnect ar
1 2 1 0 0 0 0 remote archival enable setting
TIMESTAMP 2 1 1 IMMEDIAT 0 0 remote-procedure-call dependencies mode p
2 1 0 IMMEDIAT 0 0 remote listener
EXCLUSIVE 2 0 0 0 0 0 password file usage parameter
0 1 1 0 0 0 0 allow non-secure remote clients to use auto-
0 1 1 0 0 0 0 allow non-secure remote clients to use os ro
1 1 1 1 IMMEDIAT 0 0 enables removal of subsumed aggregated s
1 1 1 0 0 0 0 tracking dependency for Replication parallel
0 1 1 0 IMMEDIAT 0 0 master switch for resource limit
1 1 1 0 0 0 0 enable the resource manager always
2 1 0 IMMEDIAT 0 0 resource mgr top plan
2 1 0 0 0 0 restore spfile to this location
0 3 1 1 IMMEDIAT 0 0 set resumable_timeout
5 3 1 0 0 0 0 number of blocks being examine for index bl
1 1 1 1 IMMEDIAT 0 0 Right Outer/Semi/Anti Hash Enabled
3 3 1 0 IMMEDIAT 0 0 priority at which rman backup i/o's are done
2 1 0 0 0 0 undo segment list
0 3 1 0 0 0 0 number of undo segments
1 3 1 0 0 0 0 starting undo segment number
0 3 1 0 IMMEDIAT 0 0 stop at -position to step rollback
0 1 1 1 IMMEDIAT 0 0 if TRUE, Oracle will collect rowsource statist
128 3 1 1 IMMEDIAT 0 0 frequency of rowsource statistic sampling (m
0 3 1 1 IMMEDIAT 0 0 Row source tree tracing level
20 3 1 0 0 0 0 number of cached cursors for row cache ma
1 1 1 0 IMMEDIAT 0 0 enable row cr for all sql
always 2 1 0 0 0 0 row-locking
4 3 1 1 IMMEDIAT 0 0 number of rows per block used for sampling
3 1 1 IMMEDIAT 0 0 second spare parameter - integer
1 1 1 1 IMMEDIAT 0 0 control rewrite self-join algorithm
300 3 1 0 0 0 0 Self-tune checkpointing lag the tail of the red
3 3 1 0 0 0 0 Percentage of total physical i/os for self-tune
1 1 1 0 IMMEDIAT 0 0 if TRUE, send ast message to foreground
1 1 1 0 IMMEDIAT 0 0 if TRUE, send close with block even with dire
1 1 1 0 IMMEDIAT 0 0 if TRUE, try to send CR requests to PI buffer
0 1 1 0 0 0 0 serializable
0 1 1 1 IMMEDIAT 0 0 enable direct read in serial
0 1 1 0 0 0 0 force serial recovery or parallel recovery
disable 2 1 0 0 0 0 reuse the frame segments
test16 2 0 0 IMMEDIAT 0 0 service names supported by the instance
236 3 0 0 0 0 0 user and system sessions
200 3 0 1 0 0 0 Number of cursors to cache in a session.
60 3 1 1 0 0 0 Number of pl/sql instantiations to cache in a
10000 3 1 0 0 0 0 session app context size
0 3 1 0 0 0 0 one latch per session or a latch per group of
60 3 1 0 0 0 0 Resource Manager session idle limit check in
0 3 1 1 0 0 0 Number of cursors pins to keep in a session
10 3 1 0 0 0 0 maximum number of open files allowed per s
10 3 1 0 0 0 0 enable session wait history collection
2 1 1 IMMEDIAT 0 0 seventh spare parameter - string list
1157627904 6 0 0 0 0 0 max total SGA size
947912704 6 0 0 IMMEDIAT 0 0 Target size of SGA
partial 2 1 0 0 0 0 Core Size for Shadow Processes
0 3 1 0 0 0 0 SGA starting address (low order 32-bits on 6
0 6 1 0 IMMEDIAT 0 0 shared pool maximum size when auto SGA
0 1 1 0 IMMEDIAT 0 0 shared pool minimum size when auto SGA e
4400 6 1 0 0 0 0 minimum allocation size in bytes for reserved
5 3 1 0 0 0 0 percentage memory of the shared pool alloc
11324620 6 1 0 0 0 0 size in bytes of reserved area of shared poo
226492416 6 0 0 IMMEDIAT 0 0 Actual size in bytes of shared pool
0 6 1 0 IMMEDIAT 0 0 size in bytes of shared pool
0 3 1 0 IMMEDIAT 0 0 number of shared servers to start up
3 1 0 IMMEDIAT 0 0 max number of shared server sessions
30000 3 1 1 IMMEDIAT 0 0 short stack timeout in ms
60 3 1 1 DEFERRE 0 0 percentage of exceptions at which to switch
1 1 1 1 DEFERRE 0 0 enable use of variable sized buffers for non-
200 3 1 0 0 0 0 number of messages to batch in a side chan
6 3 1 0 IMMEDIAT 0 0 timeout before shipping out the batched side
1 1 1 1 IMMEDIAT 0 0 control simple view merging performed by th
8192 3 1 0 0 0 0 LRU bucket minimum delta
10 3 1 0 0 0 0 simulator internal bound percent
2 3 1 0 0 0 0 LRU list rebalance threshold (size)
10240 3 1 0 0 0 0 LRU list rebalance threshold (count)
8 3 1 0 0 0 0 LRU scan count
16 3 1 0 0 0 0 maximum count of invalid chunks on pin list
4096 3 1 0 0 0 0 simulator reserved heap count
1024 3 1 0 0 0 0 simulator reserved object count
2 3 1 0 0 0 0 sampling factor for the simulator
2 3 1 0 0 0 0 upper bound multiple of pool size
0 1 1 0 0 0 0 run without detached processes
2 1 1 IMMEDIAT 0 0 sixth spare parameter - string list
1000 3 1 0 0 0 0 tune skgxp OSD reaping limit
0 3 1 1 IMMEDIAT 0 0 time in minutes before idle ach's are reaped
1000 3 1 1 IMMEDIAT 0 0 ach hiwat mark warning interval
60 3 1 1 IMMEDIAT 0 0 time in seconds between interface detection
300 3 1 1 IMMEDIAT 0 0 connection idle time in seconds before keep
1024 3 1 1 IMMEDIAT 0 0 diagnostic log buffering space (in bytes) for t
5 3 1 1 IMMEDIAT 0 0 time in seconds before timed wait is invoked
1 1 1 0 IMMEDIAT 0 0 if TRUE, skip assume message for consigns
1 1 1 1 IMMEDIAT 0 0 skip unusable indexes if set to TRUE
1 1 1 1 IMMEDIAT 0 0 enable slave mapping when TRUE
0 3 1 1 IMMEDIAT 0 0 force the number of slave group in a slave m
838 3 1 1 DEFERRE 0 0 threshold level of table size for direct reads
1 1 1 0 IMMEDIAT 0 0 if TRUE, enable v$pga_advice
0 3 1 1 IMMEDIAT 0 0 overwrites default size of the PGA advice wo
1 1 1 1 IMMEDIAT 0 0 if TRUE, use the AUTO size policy cost func
240 3 1 1 IMMEDIAT 0 0 Maximum IO size (in KB) used by sort/hash-
48 3 1 1 IMMEDIAT 0 0 Minimum IO size (in KB) used by sort/hash-j
0 3 1 1 IMMEDIAT 0 0 overwrites memory manager automatically c
0 3 1 1 IMMEDIAT 0 0 provides controls on the memory manager
5120 3 1 0 IMMEDIAT 0 0 value in KB of the instance freeable PGA me
102400 3 1 1 IMMEDIAT 0 0 maximum work area for insertion sort(v1)
61440 3 1 1 IMMEDIAT 0 0 maximum work area size in auto mode (seria
307 3 1 1 IMMEDIAT 0 0 minimum work area size in auto mode
153600 3 1 1 IMMEDIAT 0 0 maximum work area size in auto mode (glob
0 3 1 1 IMMEDIAT 0 0 work area retain size in SGA for shared serv
0 3 1 1 IMMEDIAT 0 0 Turn on/off tracing for SQL memory manage
100 3 1 0 IMMEDIAT 0 0 limit of SMON internal errors
2 1 1 IMMEDIAT 0 0 utl_smtp server and port configuration param
0 3 1 0 IMMEDIAT 0 0 <debug-flag> - set debug event for testing S
0 3 1 1 0 0 0 site ID of error simulation in KTU code
0 3 1 1 0 0 0 error type for error simulation in KTU code
2 1 0 IMMEDIAT 0 0 comma-separated *AND double-quoted* list
0 3 1 1 DEFERRE 0 0 size of in-memory sort work area retained be
65536 3 1 1 DEFERRE 0 0 size of in-memory sort work area
0 3 1 1 IMMEDIAT 0 0 cost ratio for sort eimination under first_rows
2 3 1 1 DEFERRE 0 0 multi-block read count for sort
C:\ORACLE\P 2 1 0 0 0 0 server parameter file
2000 3 1 0 IMMEDIAT 0 0 Amount to spin waiting for a latch
10000 3 1 1 IMMEDIAT 0 0 maximum number of rules in sql spreadshee
1 1 1 1 IMMEDIAT 0 0 push predicates through reference spreadsh
1 1 1 1 IMMEDIAT 0 0 enable AW for hash table in spreadsheet
0 1 1 1 IMMEDIAT 0 0 use hash table for spreadsheet
0 1 1 0 0 0 0 require select privilege for searched update/
1000 3 1 1 IMMEDIAT 0 0 sql execution progression monitoring cost th
DEFAULT 2 1 1 IMMEDIAT 0 0 Category qualifier for applying hintsets
DEFAULT 2 1 1 IMMEDIAT 0 0 Parsed category qualifier for applying hintse
0 3 1 0 0 0 0 SQL Connect Capability Table Override
2 1 0 0 0 0 SQL Connect Capability Table (testing only)
0 6 1 1 IMMEDIAT 0 0 Hash value of the SQL statement to debug
RUN_TIME 2 1 1 IMMEDIAT 0 0 specifies compile-time unfolding of sql mode
0 1 1 1 IMMEDIAT 0 0 enable SQL trace
NATIVE 2 1 1 0 0 0 sql language version parameter for compatib
0 3 1 0 0 0 0 stack guard level
%ORACLE_H 2 1 0 IMMEDIAT 0 0 standby database archivelog destination tex
MANUAL 2 1 0 IMMEDIAT 0 0 if auto then files are created/dropped automa
0 2 0 1 IMMEDIAT 0 0 enable the use of star transformation
2 1 0 0 0 0 static backgrounds
typical 2 0 1 IMMEDIAT 0 0 statistics level
0 3 1 1 IMMEDIAT 0 0 SQL Tuning Advisory control parameter
0 3 1 1 IMMEDIAT 0 0 SQL tracing parameter
0 6 1 0 IMMEDIAT 0 0 streams pool maximum size when auto SGA
0 6 1 0 IMMEDIAT 0 0 size in bytes of the streams pool
0 6 0 0 IMMEDIAT 0 0 Actual size in bytes of streams pool
20 3 1 1 IMMEDIAT 0 0 subquery pruning cost factor
1 1 1 1 IMMEDIAT 0 0 enable the use of subquery predicates to pe
0 1 1 1 IMMEDIAT 0 0 enable the use of subquery predicates with M
50 3 1 1 IMMEDIAT 0 0 subquery pruning reduction factor
0 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF Metric Frequent Mode
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON DB Feature U
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON FLushing
1 1 1 0 IMMEDIAT 0 0 Enable/disable SWRF MMON Metrics Collec
1 1 1 1 IMMEDIAT 0 0 Parameter to enable/disable SWRF
0 3 1 1 0 0 0 test action parameter for SWRF
0 1 1 0 IMMEDIAT 0 0 Enable/disable DB Feature Usage Testing
0 1 1 0 0 0 0 whether to trace metadata comparisons for s
1 3 1 1 IMMEDIAT 0 0 test parameter for SYSAUX
0 3 1 1 IMMEDIAT 0 0 optimizer percent system index caching
1 1 1 0 IMMEDIAT 0 0 are system triggers enabled
40 3 1 0 0 0 0 table lookup prefetch vector size
2 3 1 0 0 0 0 table lookup prefetch threshold
1 1 1 1 IMMEDIAT 0 0 bump estimated full table scan and index ffs
1 1 1 0 0 0 0 Use asynch I/O requests for tape devices
90 3 1 0 0 0 0 target rba max log lag percentage
20 3 1 0 0 0 0 LNS Wait time for arhcived version of online
16 3 1 0 IMMEDIAT 0 0 set debug mode for testing transportable dat
100 3 1 1 IMMEDIAT 0 0 number of blocks for a dimension before we
1 1 1 1 IMMEDIAT 0 0 determines if temp table is created with cach
5 3 1 0 IMMEDIAT 0 0 test the function ksusigskip
25 3 1 1 DEFERRE 0 0 test parmeter 1 - integer
2 1 1 0 0 0 test parameter 2 - string
2 1 1 IMMEDIAT 0 0 test parameter 3 - string
2 1 1 IMMEDIAT 0 0 test parameter 4 - string list
25 3 1 1 IMMEDIAT 0 0 test parmeter 5 - deprecated integer
0 6 1 1 IMMEDIAT 0 0 test parmeter 6 - size (ub8)
3 1 1 IMMEDIAT 0 0 third spare parameter - integer
0 3 1 0 IMMEDIAT 0 0 Redo thread to mount
1 3 1 0 IMMEDIAT 0 0 if 1, issue threshold-based alerts
0 3 1 1 IMMEDIAT 0 0 internal os statistic gathering interval in seco
1 1 0 1 IMMEDIAT 0 0 maintain internal timing statistics
0 6 1 0 0 0 0 Total memory for allocating large extents
0 3 1 1 0 0 0 time period for duping of TQ statistics (s)
2 1 1 0 0 0 trace file custom identifier
0 1 1 0 IMMEDIAT 0 0 start DIAG process
ALL:256 2 1 0 0 0 0 trace buffer sizes per process
0 1 1 0 IMMEDIAT 0 0 trace buffer flushes if otrace cacheIO event i
0 1 1 0 IMMEDIAT 0 0 trace kcb buffer gets if otrace cacheIO event
0 3 1 1 IMMEDIAT 0 0 trace buffer busy wait timeouts
1 1 1 0 IMMEDIAT 0 0 enable KST timestamp on trace buffer wrap
0 1 1 0 IMMEDIAT 0 0 trace cr buffer creates if otrace cacheIO eve
1 1 1 0 IMMEDIAT 0 0 enable KST tracing
2 1 0 IMMEDIAT 0 0 trace events enabled at startup
0 1 1 0 0 0 0 Create publicly accessible trace files
65536 3 1 0 0 0 0 maximum size of trace file (in bytes)
ALL 2 1 0 IMMEDIAT 0 0 trace data archived by DIAG for these proce
0 1 1 0 IMMEDIAT 0 0 trace multi_block reads if otrace cacheIO ev
global 2 1 0 0 0 0 enabling trace navigation linking
text,multiple 2 1 0 0 0 0 trace data flush options
0 3 1 0 0 0 0 trace how long a current pin is held
ALL 2 1 0 0 0 0 enable KST tracing in process
259 3 0 0 0 0 0 max. number of concurrent active transactio
5 3 0 0 0 0 0 number of active transactions per rollback se
1 1 1 0 DEFERRE 0 0 transaction auditing records generated in the
0 3 1 0 IMMEDIAT 0 0 max number of parallel recovery slaves that
1 1 1 1 IMMEDIAT 0 0 do truncate optimization if set to TRUE
2 1 1 IMMEDIAT 0 0 TSM test connect string
1 3 1 0 IMMEDIAT 0 0 Disable TSM auto cleanup actions
0 1 1 0 IMMEDIAT 0 0 allow plugging in a tablespace with an incom
1 1 1 0 0 0 0 enable two-pass thread recovery
1 1 1 1 0 0 0 uses two-pass reverse polish alg. to generat
262144 6 1 0 0 0 0 UGA/CGA large extent size
1 1 1 0 IMMEDIAT 0 0 maintain fast-path statistics for ultrafast latch
1 1 1 0 IMMEDIAT 0 0 enable auto tuning of undo_retention
0 3 1 1 IMMEDIAT 0 0 debug flag for undo related operations
0 3 1 0 IMMEDIAT 0 0 invoke undo usage functions for testing
AUTO 2 0 0 0 0 0 instance runs in SMU mode if TRUE, else in
1800 3 0 0 IMMEDIAT 0 0 undo retention in seconds
ROLLBACK_ 2 0 0 IMMEDIAT 0 0 use/switch undo tablespace
YES_GSET_ 2 1 1 IMMEDIAT 0 0 expand queries with GSets into UNIONs for
1 1 1 1 IMMEDIAT 0 0 enables unnesting of correlated subqueries
1 1 1 1 IMMEDIAT 0 0 enable unused block compression
C:\ORACLE\P 2 0 0 IMMEDIAT 0 0 User process dump directory
1 1 1 1 IMMEDIAT 0 0 enable the use of column statistics for DDP f
0 1 1 0 0 0 0 Enable indirect data buffers (very large SGA
1 1 1 0 0 0 0 Enable Shared Page Tables - ISM
1 1 1 0 0 0 0 Use ISM for allocating large extents
0 1 1 1 0 0 0 use nosegment indexes in explain plan
1 1 1 0 IMMEDIAT 0 0 use real-free based allocator for PGA memo
1 1 1 1 IMMEDIAT 0 0 whether to use process local seq cache
1 1 1 0 0 0 0 use vector post
C:\oracle\pro 2 0 0 0 0 0 utl_file accessible directories list
0 1 1 0 IMMEDIAT 0 0 Scan database to validate result of flashback
2 1 0 0 0 0 Vendor library search root directory
1 1 1 0 IMMEDIAT 0 0 Verify that the redo logs needed for flashbac
0 1 1 1 IMMEDIAT 0 0 TRUE - verify consistency of undo quota sta
1024 3 1 1 IMMEDIAT 0 0 very_large_partitioned_table
1 1 1 0 0 0 0 wait for sync on commit MUST BE ALWAYS
0 3 1 0 0 0 0 maximum number of unusable blocks to wal
0 1 1 1 IMMEDIAT 0 0 is the watchpointing feature turned on?
0 3 1 1 IMMEDIAT 0 0 settings for window function optimizations
auto 2 0 1 IMMEDIAT 0 0 policy used to size SQL working areas (MAN
3 3 1 0 IMMEDIAT 0 0 write clones flag
8192 3 1 0 IMMEDIAT 0 0 maximum bytes for logging peeked bind valu
0 3 1 1 IMMEDIAT 0 0 Explain Plan tracing parameter
20 3 1 1 DEFERRE 0 0 OLAP API lower bound for auto materializati
PRED_AND_ 2 1 1 DEFERRE 0 0 OLAP API behavior for auto materialization
2 1 1 DEFERRE 0 0 OLAP API debug output disposition
TABULAR 2 1 1 DEFERRE 0 0 OLAP API cube densification
OVERFETCH 2 1 1 DEFERRE 0 0 OLAP API symmetric overfetch
PARTIAL 2 1 1 DEFERRE 0 0 OLAP API fetch type
0 1 1 1 DEFERRE 0 0 OLAP API generates WITH clause?
unique 2 1 1 DEFERRE 0 0 OLAP API hierarchy value type
NEVER 2 1 1 DEFERRE 0 0 When to load OLAP API library at server pro
1 3 1 1 DEFERRE 0 0 OLAP API min number of rows required to u
1 1 1 1 DEFERRE 0 0 OLAP API Enable source materialization
ALL 2 1 1 DEFERRE 0 0 OLAP API metadata reader mode
0 1 1 1 DEFERRE 0 0 OLAP API uses ODBO mode?
1 1 1 1 DEFERRE 0 0 OLAP API optimizes suppressions?
1 1 1 1 DEFERRE 0 0 OLAP API precomputes subqueries?
1 1 1 1 DEFERRE 0 0 OLAP API removes columns for materializat
1 1 1 1 DEFERRE 0 0 OLAP API sets NLS?
0 1 1 1 DEFERRE 0 0 OLAP API output Source definitions to trace
2 1 1 DEFERRE 0 0 OLAP API multi-join non-base hints
2 1 1 DEFERRE 0 0 OLAP API non-base hints
0 1 1 1 DEFERRE 0 0 OLAP API enable automatic dimension hints
1 1 1 1 DEFERRE 0 0 OLAP API enable automatic measure hints
2 1 1 DEFERRE 0 0 OLAP API dimension hints
1 1 1 1 DEFERRE 0 0 OLAP API enables AW join?
1 1 1 1 DEFERRE 0 0 OLAP API enables AW QDR merge?
2 1 1 DEFERRE 0 0 OLAP API generic hints
2 1 1 DEFERRE 0 0 OLAP API measure hints
1 1 1 1 DEFERRE 0 0 OLAP API enable optimization
16 3 1 1 DEFERRE 0 0 OLAP API prepare statement cache size
1 1 1 1 DEFERRE 0 0 OLAP API enable remove unused columns o
32 3 1 1 DEFERRE 0 0 OLAP API result set cache size
1 1 1 1 DEFERRE 0 0 OLAP API enable symmetric predicate for di
2 1 1 DEFERRE 0 0 OLAP API top dimension hints
2 1 1 DEFERRE 0 0 OLAP API top measure hints
1 1 1 1 DEFERRE 0 0 OLAP API enable bind variables optimization
0 1 1 1 DEFERRE 0 0 OLAP API stringifies order levels?
1000 3 1 1 DEFERRE 0 0 OLAP API suppression AW mask threshold
4000 3 1 1 DEFERRE 0 0 OLAP API suppression chunk size
1 1 1 1 DEFERRE 0 0 OLAP API uses models?
1 1 1 1 DEFERRE 0 0 OLAP API uses OLAP DML?
0 1 1 1 DEFERRE 0 0 OLAP API uses OLAP DML for rank?
0 3 1 1 IMMEDIAT 0 0 buffer size in KB needed for populate/query
0 1 1 0 IMMEDIAT 0 0 allow cross platform for pre10 compatible tab
0 1 1 0 IMMEDIAT 0 0 set cross platform info during file header rea
none 2 1 1 0 0 0 external tables code coverage parameter
none 2 1 1 0 0 0 external tables trace parameter
100000 3 1 1 IMMEDIAT 0 0 interval to check whether actses should yield
pecify dumps prior to 4031 error
1 error once for each n-second interval
number of 4031 dumps for this process
1 SGA heapdump error once for each n-second interval
number of SGA heapdumps
bort recovery on join reconfigurations
ameters for rolling operation
active instances in the cluster database
ptimize dlm reconfiguration for active/standby OPS

able adaptive fetch in parallel group by


hether ADDM gets run automatically after every AWR snapshot
parated list of ADDM nodes to skip
hether ADDM checks the input AWR snapshot version
mv to dependency list
we will adjust the SQL/PLUS output
able affinity at run time
aiowait timeouts before error is reported
efore an alert message is moved to exception queue
ert Message Cleanup
ert Message Purge
ckground Alert Posting
s be examined in creation order during allocation
which successful search in L1 should be updated
ommutativity of +, * when comparing expressions
simulation for testing
without connect by
-only open even if database is corrupt
logs even if it will cause corruption
minal recovery even if it may cause corruption
links as shared
ernate index-organized table leaf-block split-points
e this method for anti-join when possible
e this method for semi-join when possible
or use of star transformation
p ctx versioning
AQ Time Managers to start
or Time Managers to clean up IOT
number of seconds of redos the standby could lose

ay update vector read


e number of in-memory samples to the number of samples actually written to disk
or disable Active Session History flushing
ernal dummy ASH parameter used ONLY for testing!
ntage above which if the in-memory ASH is full the emergency flusher will be triggered
or disable Active Session sampling and flushing
or disable sampling every connected session including ones waiting for idle waits
val between two successive Active Session samples in millisecs
size of the in-memory Active Session History buffers

chunks created
only raw devices
k resilvering for external redundancy

s to mount automatically
cations for discovery
o wait before dropping a failing disk
fore offlined disks get dropped (in 3s ticks)
er of concurrent disks to emulate I/O errors
fore emulation begins (in 3s ticks)

rch order for discovery


size of individual I/O request
processes for disk rebalancing

time to wait before asmb exits

sue recovery claims asynchronously


sue recovery reads asynchronously
n which auditing files are to reside

tem auditing
o not prepare a buffer when the master is local

shing of specified AWR tables


sable Flushing AWR Workload Metrics
sable Flushing AWR Workload Metrics
able AWR MMON CPU Usage Tracking

AWR SQL Child Limit


for Background Processes
process dump directory
Disk I/O slaves
reserve from the large pool
uffer size to be used for kgc compression
umber of iterations used for kgc compression
ompression type used for kgc compression
the ksfq buffers used for backup/restore
ksfq buffer used for backup/restore
p in an incremental/optimized backup buffer, in bytes
Tape I/O slaves
bitmaps to store for each datafile
size of all change tracking buffer allocations, in bytes
umber of extents to allocate per buffer allocation
e change tracking buffer allocation, in bytes
cking datafile chunk size, in bytes
cking reserved crash recovery SGA space, in bytes
of change tracking file, in bytes
of change tracking file, in bytes
cking file for fixed tables
ber of entries in the private change tracking dba buffers
f all public change tracking dba buffers, in bytes
memory allow for BITMAP MERGE
xtensions to partition pruning for general predicates
ming semantics parameter
consecutive blocks per global cache server
cking possible
el for bloom filtering
disables bloom filter
tes with multiple MVs and base tables
y wait time in centiseconds
database blocks/latches in keep buffer pool
database blocks/latches in recycle buffer pool
ol threshold value
size of the message allowed in memory
cing flow control for buffered queues
D MV creation skipping MV log setup update
blocks should we allocate per free list on advancing HWM
enerate a BWR for a flushed PI
use of bitmap plans for tables w. only B-tree indexes
nable cache stats monitoring
nfiguration timeout interval
timeout value
ock check after checksum if both are turned on
espace thresholds
er of circuits
o entries to apply per transaction cleanup
ors cached by PL/SQL at each commit
artup in cluster database mode
instances to use for sizing cluster db SGA structures
cts for RAC use
ary selection

atistics v$undostat
mpression ratio
edicate-only column elimination
age tracking
ode has toward not preparing in a two-phase commit
n commit log write behaviour
will be completely compatible with this software version
compilation call heaps extents
mplex view merging
block size in bytes
system states after controlfile enqueue timeout
enqueue timeout in seconds
initial section size
max expansion rate
update sanity check

record keep time in days


onversion of set operator to join
covery coordinator side extra message buffer size

undo segment list


osting of equality semi-join
CPUs for this instance
converting CPU cost to I/O cost
ate bitmap buffer for bitmap index
ed outlines for DML statements
rant lock for CR requests when block is in global role
CR grants off, make it automatic, or turn it on
ush redo log before serving a CR buffer
WM brokered CTAS
size of the cursor bind capture area
seconds) between two bind capture for a cursor
nd buffer caching
number of buffers a cursor can pin at once
rsor features enabled bits.
ection and display of cursor plans
cursor plan hash value
sables using unparse to build projection/predicates

memory in order to get faster execution


buckets for cursor stats (2^).
hes for cursor stats.
cess startup
writer asynchronous writes

writer tracing
che for 16K buffers
che for 2K buffers
che for 32K buffers
che for 4K buffers
che for 8K buffers
nt set when buffer cooled
buffers always be too cold to keep in cache
nt which sends a buffer to head of replacement list
nt set when buffer moved to head of replacement list
nt which sends a buffer to head of replacement list
rform block check and checksum for System tablespace
ache buffer checks - low blkchk overwrite parameter
ache buffer check level

database blocks cached in memory: hidden parameter


database blocks cached in memory
ne data blocks on get (for debugging)
der tracing (non-zero only when debugging)
der tracing level
unmapped buffers (for tracking swap calls on blocks)
abase blocks (true only when debugging)
abase blocks (for strictly internal use only)
ecking and data and index block checking
ksum in db blocks and check during reads
re and dump block before image for debugging
and typ on cache disk read
k read even if some blocks are in cache
database block hash buckets
database block hash latches
writes for high priority reasons
entage of buffers to maintain known clean

Allowed Number of CR buffers per dba


e of buffers to inspect when looking for free
writes for medium priority reasons
NUMA nodes
mit in blocks
uota as a percent of cache size
abase block in bytes
ared table scan read buffer
edo for temp blocks
r protect calls
he sizing advisory
sory simulation batch size
sory sampling factor
costly crx examination functions
he Pre-Warm Enabled : hidden parameter
number of cr pins a process may have
FAULT buffer pool for standard block size buffers
e of DEFAULT buffer pool for standard block size buffers
change notification
abase location
controlfile destination #1
controlfile destination #2
controlfile destination #3
controlfile destination #4
controlfile destination #5
art of global database name stored with CREATE DATABASE
t object drop sanity check
t object checkpoint
t object truncate
able # db files
I/O buf size
read count for regular clients
atting I/O buf count
o be read each IO
me convert patterns and strings for standby/clone db
noncontiguous db blocks to be prefetched
read count for regular clients
Flashback Database log retention time in minutes.
de simultaneous buffer operations
dles cached each process
locks for hash latch contention
k checking override parameter
EP buffer pool for standard block size buffers
buffers which force dirty queue to be written
n based lost write detection mechanism

partitions for MTTR advisory


ulation sampling factor
ulation targets
ulation trace size
e entries to alert file
name specified in CREATE DATABASE
checkpoint ordered by lrba
in object checkpoint/reuse
default buffer pool considered hot
keep buffer pool considered hot
recycle buffer pool considered hot
he created per cpu in deferred cache create
abase recovery file location
ecovery files size limit
abase recovery temporal file location
CYCLE buffer pool for standard block size buffers
p checking override parameter for data/index blocks
he deferred create
Unique Name
writes DBWR should wait for
mory allocated to dbwriter for coalescing writes
ze of coalesced write
DBWR will not downgrade IMU txns for AGING
bwr histogram statistics in x$kcbbhs
er of outstanding DB Writer IOs
background database writer processes to start
t write detection mechanism
OWAIT DML lock acquisitions
ad process scan interval

server poll count


server post/wait
server post/wait call
cryption algorithm
ck on default selectivity for like/range predicate
ex maintenance until after MV is refreshed
broker configuration file #1
broker configuration file #2
mes for broker use
Guard broker framework (DMON process)

ag diagnostics
mension skip when null feature
hrunk aggregation
talayer sampling
nnection duplexing

locks for control, data, redo log files


nction-based index matching

acle executable image checking


cremental checkpoints for thread recovery
cremental recovery checkpoint mechanism
tance type check for ksp
erface checking at startup
bh(c)xor OSD functionality
ch-free SCN writes using 32-bit compare & swap
ch-free SCN writes using 64-bit compare & swap

ultiple block size support (for debugging)


gging to NT event log

e new recoverable recovery mechanism


e read optimization during media recovery
w sampling IO optimization
e fix for bug 1402161
lf-tune checkpointing
eams pool auto tuning
stem state dump

h I/O for random access devices


ons of dispatchers
splay rate statistic (100ths of a second)
e for rate statistic (100ths of a second)
nnesting of in subquery into distinct view
seconds a distributed transaction waits for a lock
seconds RECO holds outbound connections open
g of global enqueue type(s)
timeout value
one for each table modified in a transaction
dification monitoring
ntage of the shared pool to use for a mining model
number of rows from one call to domain index fetch routine
number of rows for one call to domain index dml routines

A memory use during drop of a partitioned table


roker monitor (DMON process)
cache flush for parallel execution
Sampling Service defaults: #IOs and IO Size
cision Tree Classification work area
ree Binning Enabled
ree Binning Test ID
ree Using Compressed Bitmaps Enabled
number of surrogates
ree Pruning Enabled
stance started by RMAN
mon subexpressions
nect by loop error message into trc file
p/exec heap sizes to tryace file
p time interval limit (in seconds)
er of dump within dump interval
evel query parse tree to trace
nables IPC dump at instance eviction time
ysstate dump during instance termination
ace dump during a process crash
are dynamic
shold (in seconds) between sending statistics messages
mination of common sub-expressions
ck level recovery
mmit SCN caching for all transactions
default implementation of affinity osds
l lock escalation against partitioned tables if TRUE
constraints on the table for validation
t refresh after move tablespace
able hash cluster overflow based on SIZE
WM synchronization

gxp driver usage for native net


UMA specific optimizations
disable MV refresh scheduling (revert to 9.2 behavior)
able latch waits
B metrics processing
w shipping optimization for wide table selects
to disable/enable kgh policy
lespace alerts
e dependent selectivity estimates
ueue multi instance
ash table length
ash chain latches
managed enqueues
for enqueues
nt control - default null string

ional messages to be generated during explain rewrite


pruning in iterator if set to TRUE
times to CR serve before downgrading lock
nables fair remote convert

able fast dual


able index fast full scan
ailability target time in RAC environment
nd on recovery reads
et of forward crash recovery in seconds
er of parallel recovery slaves that may be used
ent Itemset Counting Algorithm
quent Itemset Counting work area
temset Counting Maximum Itemset Length
temset Counting Minimum BITMAP Size
temset Counting Out Of Memory Candidates Generation
parameter - string
dapters for File I/O

ons on filesystem files

parameter - integer
DATE value
ntrol parameter
bling flashback on noarchivelog database
barrier interval in seconds
flashback copy latches
ack fuzzy barrier
generation buffer size
hint barrier percent
ogfile enqueue timeout for opens
ashback log I/O error behavior
lashback log size

flashback log size in bytes (OS limit)


number of flashback logs per flashback thread
umber of flashback logs per flashback thread
standby barrier interval in seconds
ose information about flashback database
shback write size in quarter MB
of trunc for datefolding rewrite
w query rewrite features
oncatenation of rollups using temp tables
e parameter - string
partition-wise join when TRUE
up-by and aggregation using hash scheme
e of one comparison of all group by keys
nable fast reconfiguration for gcs locks
gcs resource hash latches to be allocated per LMS process
rocess gcs requests during instance recovery
gcs resources to be allocated
background gcs server processes to start
pcm shadow locks to be allocated

ffinity minimum activity per minute


, enable dynamic object affinity
se async memcpy
heck for stale blocks
oalesce recovery reads
o defer down converts for hot buffers
et dynamic affinity locks
he element percent
etween file numbers and global cache locks
lru off, make it automatic, or turn it on
egrity check level
make recovery buffers current
latches per LMS process
number of bids which can be prepared
cl statistics are maintained
nable dynamic undo affinity
et affinity locks for undo
llow CR pins on PI and WRITING buffers
ector read current buffers
xtensions to partition pruning for general predicates
er enables GES deadlock detection debug diagnostics
nables GES diagnostics
han 0 enables GES system health check
er for global index with partition extended syntax
plication Context Pool Size in Bytes
at database links have same name as remote database
opushdown cut ratio
derby don't combine threshold
i/semi join for the GS query
ysis num call stacks
agement detection interval
nable H.A.R.D specific format changes
memory hash work area
able hash join
blocks hash join will read/write at once
r thresholds
ng address (high order 32-bits on 64-bit platforms)
bit filtering threshold (0 always enabled)
omatic server DD updates in HS agent self-registration
chronization threshold in percentage
nventional index maintenance for insert direct load
ality constant for dop vs. rows in index rebuild

SC in indexes, sort those columns ascending anyhow


ropagate commit SCN immediately
outer-join cardinality calculation
improvements for computing the average row length
stance Membership Recovery feature
wait for IMR disk voting (seconds)
Reconfiguration delay (seconds)
wait for split-brain resolution (seconds)
undo pools
number of writes for incremental recovery ckpt every 3 sec
use of index joins
etching factor
granules to process for deferred cache
ning SQL statements to execute upon database creation
in the startup code
allel inserts high water marks are brokered
nce group names
ame supported by the instance

tance to be executed
nstance can retain a newly acquired level1 bitmap
hecksum interconnect blocks
a-partition updates/deletes
a-partition updates/deletes with random local dist
emory undo for top level transactions
in the ior serialize code
pt IOs picked
before completion check
buffer pool from SGA

ed size in bytes of a Java sessionspace


e in bytes of java pool
es of java pool
mit on size in bytes of a Java sessionspace
terval in seconds for job queue co-ordinator
job queue slave processes
all kjbcommit
onservatively log flush before CR serving
ecord le history
eject pings on blocks in middle of a split
or undo block locks
locks per undo segment
bas after populating data buffers
umn size does not get modified
ssage network driver
map_hash table
mop_hash table

ntage of shared pool size to be used for KGL advice


e bucket count array
nt size for library cache memory allocations
GL hash collision is possible
for library cache heap 0
cache minimum threshold
cache retain threshold
heap size before KGL writes warnings to the alert log
library cache latches
GL to support multi-instance invalidations
GL to support multi-instance locks
GL to support multi-instance pins
length of the KGL object cache lru
t for locks and pins before timing out
latches if CAS is not supported.
ng controlfile enqueue blocker on timeout
han 0 enables killing enqueue blocker
hreads and do sessionspace migration at end of call
ession substitution
this will make KKS use mutex for cursor pins.
o use slffopen
el for library cache subheap level pins
eout for internal oradebug commands
text initialization flag
mber of buffers in buffered mode
watchpoints on a per-process basis
watchpoints to be shared by all processes
PCs to collect in the stack when watchpoint is hit

time a dying process is spared by PMON (in centi-secs)


e cache size
chronous writes issued through ksfd
string of lock type(s)
cking status

tion interval in minutes


nt for acquisition of locks
termination to allow processes to dump
seconds ksuitm waits before killing diag
to disable automatic slowsend diagnostics
rocess for KSXP
t for sends queued with the inter-instance IPC

KTU latches
trace parameter
allocation size in bytes for the large allocation pool
e in bytes of large pool
es of large pool
r which an instance can retain an active level1 bitmap

ess for which to collect latch stats


recovery structures
LDAP access option
e IOs used during a load operation
dom distribution method for left of nestedloops
ynchronous Broadcasts enabling boolean flag
ynchronous IO enabling boolean flag
te delay for debugging

wait time for lgwr to allow NetServer to progress


simulate network latency or buffer threshold
simulate network latency or buffer threshold
simulate errors lgwrns
simulate errors lgwr true async
GL advice should be turned on
number of non-system user sessions allowed
number of named users that can be created in the database
vel for number of non-system user sessions
t headers for redo
predicate with bind as an equality predicate
value to activate an additional lms
to cleanup level 0 cache res (in sec)
e of cached resources should be cleanup
ource: string of lock types(s)
ksum batch messages
contiguous blocks that will hash to the same HV bucket
erval in seconds
terval in seconds
emastering maximum affinity requests processed together
emastering bucket window size
emastering forced exclusive latches
ms invocation
ad adjustment
nables dynamic remastering
enqueue freelist
ges enqueue element freelist
nables enqueue reconfiguration
etween file id and master instance number
eliver global posts to remote nodes
t time for lmd in centiseconds
background gcs server processes to start
t time for lms in centiseconds
enqueues configured for cluster database
ource weight for this instance
ber of background global cache server processes
er of background global cache server processes
h message size
age buffer caching threshold
age buffer cleanup interval time
abase node join optimization in reconfig
ster database fault-tolerance mode
latches covering the PCM HV buckets in cgs
buckets in the object affinity hash table
latches in the object affinity hash table
cit process batching for IPC messages
client processes configured for cluster database
ation: process freeze timeout
ration timeout
receive buffer
resources configured for cluster database
resource hash buckets
resource partition configured for gcs
entage of send proxy reserve of send tickets
cluster database send buffers

queue message batching


queue maximum length
nables share lock optimization
queue minimum batching factor
queue batching mechanism
queue batching waittime in tick
zation timeout for DLM reconfiguration steps
aging tickets
ol ticket active sendback threshold
calization delta
nables resource name validation
transaction IDs configured for cluster database
QL or Database objects without compilation
al communication costing when TRUE
o between global and local communication (0..100)

space used for generating lock names for standby/clone database


e SGA in physical memory
fied areas of the SGA in physical memory
number of threads to mine
e avoid memcpy
buffers to allocate for archiving
ch archival buffer in log file blocks
tabase rules for enabling archivelog compression
e config parameter
eep time in centiseconds seconds when SYNC=PARALLEL
estination text string
estination #1 text string
estination #10 text string
estination #2 text string
estination #3 text string
estination #4 text string
estination #5 text string
estination #6 text string
estination #7 text string
estination #8 text string
estination #9 text string
estination #1 state text string
estination #10 state text string
estination #2 state text string
estination #3 state text string
estination #4 state text string
estination #5 state text string
estination #6 state text string
estination #7 state text string
estination #8 state text string
estination #9 state text string
hival destination text string
estination format
EXPEDITE attribute default value
number of active ARCH processes
number of archive destinations that must succeed
e network redo buffer size used by ARCH
network wait time in seconds when SYNC=PARALLEL
e protection auto demotion
e security enabled
val process on SGA initialization
archivelog operation tracing level
mages when changed during backup
ar buffer size
do buffers before write
o buffers (slows things down)
oint begin/end to alert file
cks checkpoint threshold
cks to verify after checkpoint
time interval between checkpoints in seconds
it-time block cleanout
o multi instance code
deletion policy for mandatory/all destination
the log writer event queues
me convert patterns and strings for standby/clone db
ally initiate log write if this many redo blocks in buffer
log buffer strands
namic strands
number of log buffer strands
and multiplier for log space preallocation
private log buffer strands for zero-copy redo
sions multiplier to deduce number of private strands
simultaneous copies into redo buffer(# of copy latches)
report space errors to alert log
number of seconds redos in the current log could span
ats enabled

ds for messages from master (DFS)


terialized views using consistent read snapshot
ed view MAV refreshes avoid double counting
ns during refresh of materialized views
r union all expansion during materialized view refresh
wait by ARCH to allow NetServer to complete archival
f new snapshot in .01 seconds
er of dispatchers
size (blocks) of dump file
er of roles a user can have enabled
during exponential backoff
time spent by LNS to archive last log during shutdown
rence protocols supported in a process
number of connections used for remote archival
er of shared servers
segments for which shrink stats will be maintained
o sleep while holding a latch
overy block read batch
overy reap time
oker num stat entries
Utility threshold pct for bc
Utility threshold pct for sp
oker allow policy to shrink shared pool
oker allow policy to shrink java pool
oker allow policy to shrink streams pool
oker policy to timeout shrink shared/java pool
oker statistics gathering interval
ory management activity
nule sanity check
mory annotation collection level
nnotation pre-allocation scaling
mory annotation collection level
nnotation in-memory store
xtent size for fixed-size-extent heaps
queue resources - dependent on # processes & # buffers
ats aggregation at compile/partition maintenance time
number freeable blocks for shrink to be present
number freeable extents for shrink to be present
SCN to start with in 2^30 units
rs for debugging redo corruptions
tes with multiple MVs and/or base tables
e instances for media recovery
multi-join-key table lookup prefetch is enabled
ent to analyze after complete/PCT refresh
cision based on cost or on rules
s fractional percentage of size of mv
terialized views using EUT(partition)-based algorithm
rialized view refreshes to use parallel query
ed view MV refresh new setup disabling
percentage change required in MV to force an index rebuild
erialized views with selections and fast refresh
nality hints to refresh queries
ality constant for dop vs. time in MV refresh
r mv uses rolling cursor invalidation instead of immediate
able Maintenance Window Schedules
Implicit Conversion between CHAR and NCHAR
plicit conversion bewteen clob and nclob be allowed
lti-block readahead for an index scan
lti-block readahead tracing

V refresh fast on commit allowed


hether new sorts can be used as system sort
hen new sort avoids sorting ordered input
ptions for the new sort algorithm
al join orders based on new ordering heuristics
e use of new cost estimate for sort
dar system name

currency symbol
e date format
anguage name

urrency territory name

umns using byte or char semantics by default


an exception instead of allowing implicit conversion
ric characters
stic definition name

e with timezone format

mezone format
er ready services of startup and shutdown
eatures are used
sion during optimization disabled
y through this resetlogs operation
time for NetServer to flush oustanding writes
Time Bound for NetServer
es that this instance should run on
size in bytes of NUMA pool
number of cached attributes per instance
child latches for long op array
Dictionary Accessibility Support
e of maximum size over optimal of the user session's object cache
e of the user session's object cache in bytes
object level statistics collection
o segment list
pi history retention
pi interface object history collection
pi interface object history retention
pi interface operation history retention
pi interface operation history collection
pi memory alloc/free history collection
pi memory alloc/free history collection pausing
pi memory operation history retention
pi session history collection
pi session history retention
regate max buffer size
regate debug flags
regate function cache enabler
regate function merge threshold
regate max thread tuples creation
regate min buffer size
regate minimum cardinality of dimensions for thread
regate Multi-path Hierarhies enabled
regate status array usage threshold
regate function storeback probability
regate max worklists generated at once
regate max work parents
cate Errorlog Format
RUE to enable continuous OLAP tracing - otherwise only exceptional events will be logged
Outfile copy output to event log (tracefile)
ension In-Core Hash Table Class
ension In-Core Hash Table Maximum Size
Export BLOB size
generator dimension column size
generator measure column size
ect Hash Table Class
e Pool Expand Rate
e Pool High Watermark
e Pool Hit Target
e Pool Low Watermark
e Pool Pressure Threshold
e Pool Shrink Rate
olap page pool in bytes
allel update pagespace by group
allel update threshold for number of small pagespaces
allel update threshold in pages
utLog copy output to event log (tracefile)
sion Cache knob
Buffer Size
us Boolean max incore bits
us Boolean CBM threshold
RUE to output OLAP table function timed statistics trace
messages to OLAP outfile
able old connect by
unnecessary entries in OLS sessinfo table

ck on default selectivity for like/range predicate


sors per session
n links per session
n links per instance
ctivity for null values
able auto stats collection job
proved costing of index access using in-list(s)
lock size used by optimizer
ache statistics
cartesian join enabled
for cost-based query transformation
st based transformation query size restriction

ptimizer to use the specified permutation


ectivity estimation for builtin functions
x stats collection on index creation/rebuild
ased transformation for connect by
ct computation of subquery selectivity
ost-based query transformation
osting of filter predicates in IO cost model
f generating result set when #rows per key > 1

ptimizer to use the same degree of parallelism


lectivity in choosing star transformation dimensions
r transformation sanity checks
dynamic sampling
blocks for optimizer dynamic sampling
s before trying cost-based query transformation
extended cursor sharing
plan compatibility parameter
ased flter predicate pull up transformation
e embedded hints to be ignored
percent index caching
ndex cost adjustment
w for invalidation of cursors of analyzed objects
oin elimination enabled
e optimizer join order search algorithm
able sanity check for multi-column join selectivity
maximum join permutations per query block
um cached blocks
rge join cartesian

ng of optimizer mode for user recursive SQL also


nd run plans using several compilation environments
oin cardinality using non-rounded input values
order bys from views before query transformation
expansion approach used
nsformation of outer-join to anti-join if possible
percent parallel
n distinct from query block to table
ased query transformation for push pred optimization
seed value for random plans
use of first K rows due to rownum predicate
able saving old versions of optimizer stats
secure view merging and predicate pushdown/movearound
r self-induced caching
able index skip scan
ndex skip scan for predicates with guessed selectivity
able sort-merge join method
nnesting of subquery in a bottom-up manner
star plan enabled
able star transformation in with clause queries
tistics usage
race parameter
-join pred upon transitive equality pred generation
ges to query optimizer
undo cost change
s for skews across partitions
able dictionary stats gathering at db create/upgrade
nable index [fast] full scan more often
he way default equijoin selectivity are computed
eking of user binds
t processes to execute oradebug commands?
ered nested loop costing
ered semi-join subquery
expanded plan for NVL/DECODE predicate
uto-logon accounts
es from the operating system

ent names from _other_wait_threshold calculations


wait percentage for event wait class Other
TREE hint enabled in outline
allelism cost fudge factor
number of users running with default DOP
aptive setting of degree for multiple user streams
elligent defaults for parallel execution parameters
adcasting of small inputs to hash and sort merge joins
ximum number of instances for parallel query
of PX buffers to OS page boundary
buffer size for parallel execution
heduler percent used for testing
buckets for each round of fix write
roup to use for all parallel operations
ecution load balanced slave allocation
threads to allocate per instance
parallel query servers per instance
size of shared pool memory to reserve for pq servers
percent of threads required for parallel query
parallel query servers per instance
sition- to step through SMON
messages for each round of parallel replay
artup in parallel server mode
efore parallel query server dies (in 1/100 sec)
instances to use for sizing OPS SGA structures
between dequeue timeouts (in 1/100ths)
conds) to wait before retrying slave acquisition
parallel execution threads per CPU
allel_txn hint with updates and deletes
table block size
tial partition-wise join when TRUE
able partitioned views
file enqueue timeout in seconds
ed view PCT refreshes avoid double counting
paration of global index maintenance for PDML
t on different index when doing index maint
t on different partition when doing index maint
flashback buffer filled to be considered partial full
e for the aggregate PGA memory consumed by the instance
extent size
size of the PGA memory for one process

gressive kill test


cess clean-up interval (cs)
essive kill test instrumention
n outline data enabled
nonymous block code-type
unction Cache Enabled

ompiler flags

upon which the PL/SQL circular buffer is dumped


mum cache hit percentage required to keep caching active

e library number of subdirectories


VL optimize
ptimize level
ersion 2.x compatibility flag
ompiler warnings settings
d balancing constants (S,P,D,I,L,C,M)
e gid values and copy them before returning a row
cate elimination if set to TRUE
edicate move-around
ommit of IMU transactions
ga for process
cates into views before rewrite
ms_output of materialized view refresh schedule
ess of large extent memory segment

ojection pushdown debugging


jecting out unreferenced columns of a view
shing join predicate inside a view
shing join predicate inside a union all view
shing join predicate inside a union view
ous get granule in the slave
broadcasting fudge factor percentage
esg buffers in seconds
el for parallel compilation
el for parallel compilation
restartable qerpx dynamic optimization
mples for restartable qerpx dynamic optimization
e of a rowid range granule (in KB)
ery sampling for index create (100000 = 100%)

which LMON will check whether to publish PX load


o send a PX message via shared memory
number of rowid range granules to generate per slave
q for minus/interect operators
number of rowid range granules to generate per slave
o send a PX message over the internconnect
rallel partition granules to be sorted on size
rallel granule stealing in shared nothing environment
disables NSS Plan B reparse with outline
allel_max_servers if greater than (processes - fudge)
rtition wise group by enabled
parallel rownum pushdown optimization
age send timeout value in seconds
re cursors with QC

Pool as source of PX buffers


e of a external table granule (in KB)
ernal parameter to control QA
ernal parameter to specify QA lrg type
e cost based rewrite with materialized views
f query execution cache
uery rewrite before&after or only before view merging
uery rewrite before&after or only after view merging
and drop redundant joins
te of queries using materialized views if enabled
h cannonical form for expressions
fresh partition containment
d query rewrite with MVs fudge factor
write using materialized views with desired integrity
with jg migration
ite max disjuncts
y rewrite, if referenced tables are not dataless
eneral rewrite using set operator summaries
ol chain before rewrite after view-merging
nables parallel fixwrite at reconfiguration
nables parallel replay and cleanup at reconfiguration
nables parallel verify at reconfiguration
Distinguished Name
elay opening of read only files until first access
max total heap size, in Kbytes
s for real-free heap
l-free page size in bytes
elay with real time apply
value with real time apply
ble recovery batch size (percentage of buffer cache)
nable expensive integrity checks
server processes to use for parallel recovery
uffer cache percentage
ead recovery write verify
ransactions may be IMU

d redo/undo compatibility sanity check


number of unusable blocks to unlink from freelist
lock sends across interconnect are reliable
hival enable setting
ocedure-call dependencies mode parameter

file usage parameter


secure remote clients to use auto-logon accounts
secure remote clients to use os roles
moval of subsumed aggregated subquery
ependency for Replication parallel propagation
tch for resource limit
resource manager always
mgr top plan
ile to this location
able_timeout
blocks being examine for index block reuse
r/Semi/Anti Hash Enabled
which rman backup i/o's are done

undo segments
do segment number
sition to step rollback
Oracle will collect rowsource statistics
of rowsource statistic sampling (must be a power of 2)
e tree tracing level
cached cursors for row cache management
w cr for all sql

rows per block used for sampling IO optimization


are parameter - integer
write self-join algorithm
heckpointing lag the tail of the redo log
e of total physical i/os for self-tune ckpt
end ast message to foreground
end close with block even with direct sends
y to send CR requests to PI buffers

ect read in serial


l recovery or parallel recovery
rame segments
mes supported by the instance
ystem sessions
cursors to cache in a session.
pl/sql instantiations to cache in a session.
p context size
per session or a latch per group of sessions
Manager session idle limit check interval in seconds
cursors pins to keep in a session
number of open files allowed per session
ssion wait history collection
pare parameter - string list

for Shadow Processes


ng address (low order 32-bits on 64-bit platforms)
ol maximum size when auto SGA enabled
ol minimum size when auto SGA enabled
allocation size in bytes for reserved area of shared pool
e memory of the shared pool allocated for the reserved area
es of reserved area of shared pool
e in bytes of shared pool
es of shared pool
shared servers to start up
er of shared server sessions
k timeout in ms
e of exceptions at which to switch to full length aggs
e of variable sized buffers for non-distinct aggregates
messages to batch in a side channel message (DFS)
fore shipping out the batched side channelmessages
mple view merging performed by the optimizer
et minimum delta
nternal bound percent
balance threshold (size)
balance threshold (count)

count of invalid chunks on pin list


eserved heap count
eserved object count
actor for the simulator
nd multiple of pool size
t detached processes
e parameter - string list
p OSD reaping limit
nutes before idle ach's are reaped
mark warning interval
onds between interface detection checks
n idle time in seconds before keep alive is initiated. min: 30 sec max: 1800 sec default: 300 sec
log buffering space (in bytes) for timed wait (0 means unbufferd
onds before timed wait is invoked
kip assume message for consigns at the master
ble indexes if set to TRUE
ve mapping when TRUE
umber of slave group in a slave mapper
evel of table size for direct reads
nable v$pga_advice
default size of the PGA advice workarea history log
se the AUTO size policy cost functions
IO size (in KB) used by sort/hash-join in auto mode
O size (in KB) used by sort/hash-join in auto mode
memory manager automatically computed bound
ontrols on the memory manager
B of the instance freeable PGA memory to retain
work area for insertion sort(v1)
work area size in auto mode (serial)
work area size in auto mode
work area size in auto mode (global)
retain size in SGA for shared server sessions (0 for AUTO)
f tracing for SQL memory manager
ON internal errors
erver and port configuration parameter
g> - set debug event for testing SMU operations
rror simulation in KTU code
for error simulation in KTU code
parated *AND double-quoted* list of AUM timeouts: mql, tur, sess_exprn, qry_exprn, slot_intvl
memory sort work area retained between fetch calls
memory sort work area
or sort eimination under first_rows mode
read count for sort

spin waiting for a latch


number of rules in sql spreadsheet
cates through reference spreadsheet
W for hash table in spreadsheet
able for spreadsheet
ect privilege for searched update/delete
on progression monitoring cost threshold
qualifier for applying hintsets
egory qualifier for applying hintsets
ect Capability Table Override
ect Capability Table (testing only)
e of the SQL statement to debug
ompile-time unfolding of sql model forloops

ge version parameter for compatibility issues

atabase archivelog destination text string


n files are created/dropped automatically on standby
use of star transformation

g Advisory control parameter


g parameter
ool maximum size when auto SGA enabled
es of the streams pool
e in bytes of streams pool
pruning cost factor
use of subquery predicates to perform pruning
use of subquery predicates with MVs to perform pruning
pruning reduction factor
able SWRF Metric Frequent Mode Collection
able SWRF MMON DB Feature Usage
able SWRF MMON FLushing
able SWRF MMON Metrics Collection
to enable/disable SWRF
parameter for SWRF
able DB Feature Usage Testing
trace metadata comparisons for synonym repointing
eter for SYSAUX
percent system index caching
m triggers enabled
up prefetch vector size
up prefetch threshold
mated full table scan and index ffs cost by one
h I/O requests for tape devices
max log lag percentage
ime for arhcived version of online log
mode for testing transportable database
blocks for a dimension before we temp transform
s if temp table is created with cache option
nction ksusigskip
ter 1 - integer
eter 2 - string
eter 3 - string
eter 4 - string list
ter 5 - deprecated integer
ter 6 - size (ub8)
parameter - integer
ad to mount
hreshold-based alerts
statistic gathering interval in seconds
nternal timing statistics
ory for allocating large extents
d for duping of TQ statistics (s)
ustom identifier

r sizes per process


r flushes if otrace cacheIO event is set
buffer gets if otrace cacheIO event is set
r busy wait timeouts
T timestamp on trace buffer wrap
ffer creates if otrace cacheIO event is set

ts enabled at startup
blicly accessible trace files
size of trace file (in bytes)
archived by DIAG for these processes
_block reads if otrace cacheIO event is set
ace navigation linking
flush options
long a current pin is held
T tracing in process
ber of concurrent active transactions
active transactions per rollback segment
n auditing records generated in the redo log
er of parallel recovery slaves that may be used
e optimization if set to TRUE
onnect string
SM auto cleanup actions
ging in a tablespace with an incompatible character set
o-pass thread recovery
pass reverse polish alg. to generate canonical forms
large extent size
ast-path statistics for ultrafast latches
o tuning of undo_retention
for undo related operations
do usage functions for testing
uns in SMU mode if TRUE, else in RBU mode
tion in seconds
undo tablespace
eries with GSets into UNIONs for rewrite
nnesting of correlated subqueries
used block compression
ess dump directory
use of column statistics for DDP functions
irect data buffers (very large SGA on 32-bit platforms)
ared Page Tables - ISM
or allocating large extents
ment indexes in explain plan
ee based allocator for PGA memory
use process local seq cache

essible directories list


base to validate result of flashback database
rary search root directory
the redo logs needed for flashback are available
rify consistency of undo quota statistics
_partitioned_table
nc on commit MUST BE ALWAYS TRUE
number of unusable blocks to walk across freelist
hpointing feature turned on?
r window function optimizations
d to size SQL working areas (MANUAL/AUTO)

bytes for logging peeked bind values for V$SQL_PLAN (0 = OFF)


an tracing parameter
lower bound for auto materialization.
behavior for auto materialization
debug output disposition
cube densification
symmetric overfetch

generates WITH clause?


hierarchy value type
ad OLAP API library at server process start
min number of rows required to use rowcache in query materialization
Enable source materialization
metadata reader mode
uses ODBO mode?
optimizes suppressions?
precomputes subqueries?
removes columns for materialization?

output Source definitions to trace file


multi-join non-base hints
non-base hints
enable automatic dimension hints
enable automatic measure hints
dimension hints
enables AW join?
enables AW QDR merge?
generic hints
measure hints
enable optimization
prepare statement cache size
enable remove unused columns optimizations
result set cache size
enable symmetric predicate for dimension groups
top dimension hints
top measure hints
enable bind variables optimization
stringifies order levels?
suppression AW mask threshold
suppression chunk size
uses models?
uses OLAP DML?
uses OLAP DML for rank?
in KB needed for populate/query operation
s platform for pre10 compatible tablespace
platform info during file header read
bles code coverage parameter
bles trace parameter
check whether actses should yield

pecify dumps prior to 4031 error


1 error once for each n-second interval
number of 4031 dumps for this process
1 SGA heapdump error once for each n-second interval
number of SGA heapdumps
bort recovery on join reconfigurations
ameters for rolling operation
active instances in the cluster database
ptimize dlm reconfiguration for active/standby OPS

able adaptive fetch in parallel group by


hether ADDM gets run automatically after every AWR snapshot
parated list of ADDM nodes to skip
hether ADDM checks the input AWR snapshot version
mv to dependency list
we will adjust the SQL/PLUS output
able affinity at run time
aiowait timeouts before error is reported
efore an alert message is moved to exception queue
ert Message Cleanup
ert Message Purge
ckground Alert Posting
s be examined in creation order during allocation
which successful search in L1 should be updated
ommutativity of +, * when comparing expressions
simulation for testing
without connect by
-only open even if database is corrupt
logs even if it will cause corruption
minal recovery even if it may cause corruption
links as shared
ernate index-organized table leaf-block split-points
e this method for anti-join when possible
e this method for semi-join when possible
or use of star transformation
p ctx versioning
AQ Time Managers to start
or Time Managers to clean up IOT
number of seconds of redos the standby could lose

ay update vector read


e number of in-memory samples to the number of samples actually written to disk
or disable Active Session History flushing
ernal dummy ASH parameter used ONLY for testing!
ntage above which if the in-memory ASH is full the emergency flusher will be triggered
or disable Active Session sampling and flushing
or disable sampling every connected session including ones waiting for idle waits
val between two successive Active Session samples in millisecs
size of the in-memory Active Session History buffers

chunks created
only raw devices
k resilvering for external redundancy

s to mount automatically
cations for discovery
o wait before dropping a failing disk
fore offlined disks get dropped (in 3s ticks)
er of concurrent disks to emulate I/O errors
fore emulation begins (in 3s ticks)

rch order for discovery


size of individual I/O request
processes for disk rebalancing

time to wait before asmb exits

sue recovery claims asynchronously


sue recovery reads asynchronously
n which auditing files are to reside
tem auditing
o not prepare a buffer when the master is local

shing of specified AWR tables


sable Flushing AWR Workload Metrics
sable Flushing AWR Workload Metrics
able AWR MMON CPU Usage Tracking

AWR SQL Child Limit


for Background Processes
process dump directory
Disk I/O slaves
reserve from the large pool
uffer size to be used for kgc compression
umber of iterations used for kgc compression
ompression type used for kgc compression
the ksfq buffers used for backup/restore
ksfq buffer used for backup/restore
p in an incremental/optimized backup buffer, in bytes
Tape I/O slaves
bitmaps to store for each datafile
size of all change tracking buffer allocations, in bytes
umber of extents to allocate per buffer allocation
e change tracking buffer allocation, in bytes
cking datafile chunk size, in bytes
cking reserved crash recovery SGA space, in bytes
of change tracking file, in bytes
of change tracking file, in bytes
cking file for fixed tables
ber of entries in the private change tracking dba buffers
f all public change tracking dba buffers, in bytes
memory allow for BITMAP MERGE
xtensions to partition pruning for general predicates
ming semantics parameter
consecutive blocks per global cache server
cking possible
el for bloom filtering
disables bloom filter
tes with multiple MVs and base tables
y wait time in centiseconds
database blocks/latches in keep buffer pool
database blocks/latches in recycle buffer pool
ol threshold value
size of the message allowed in memory
cing flow control for buffered queues
D MV creation skipping MV log setup update
blocks should we allocate per free list on advancing HWM
enerate a BWR for a flushed PI
use of bitmap plans for tables w. only B-tree indexes
nable cache stats monitoring
nfiguration timeout interval
timeout value
ock check after checksum if both are turned on
espace thresholds
er of circuits
o entries to apply per transaction cleanup
ors cached by PL/SQL at each commit
artup in cluster database mode
instances to use for sizing cluster db SGA structures
cts for RAC use
ary selection

atistics v$undostat
mpression ratio
edicate-only column elimination
age tracking
ode has toward not preparing in a two-phase commit
n commit log write behaviour
will be completely compatible with this software version
compilation call heaps extents
mplex view merging
block size in bytes
system states after controlfile enqueue timeout
enqueue timeout in seconds
initial section size
max expansion rate
update sanity check

record keep time in days


onversion of set operator to join
covery coordinator side extra message buffer size

undo segment list


osting of equality semi-join
CPUs for this instance
converting CPU cost to I/O cost
ate bitmap buffer for bitmap index
ed outlines for DML statements
rant lock for CR requests when block is in global role
CR grants off, make it automatic, or turn it on
ush redo log before serving a CR buffer
WM brokered CTAS
size of the cursor bind capture area
seconds) between two bind capture for a cursor
nd buffer caching
number of buffers a cursor can pin at once
rsor features enabled bits.
ection and display of cursor plans
cursor plan hash value
sables using unparse to build projection/predicates

memory in order to get faster execution


buckets for cursor stats (2^).
hes for cursor stats.
cess startup
writer asynchronous writes

writer tracing
che for 16K buffers
che for 2K buffers
che for 32K buffers
che for 4K buffers
che for 8K buffers
nt set when buffer cooled
buffers always be too cold to keep in cache
nt which sends a buffer to head of replacement list
nt set when buffer moved to head of replacement list
nt which sends a buffer to head of replacement list
rform block check and checksum for System tablespace
ache buffer checks - low blkchk overwrite parameter
ache buffer check level

database blocks cached in memory: hidden parameter


database blocks cached in memory
ne data blocks on get (for debugging)
der tracing (non-zero only when debugging)
der tracing level
unmapped buffers (for tracking swap calls on blocks)
abase blocks (true only when debugging)
abase blocks (for strictly internal use only)
ecking and data and index block checking
ksum in db blocks and check during reads
re and dump block before image for debugging
and typ on cache disk read
k read even if some blocks are in cache
database block hash buckets
database block hash latches
writes for high priority reasons
entage of buffers to maintain known clean

Allowed Number of CR buffers per dba


e of buffers to inspect when looking for free
writes for medium priority reasons
NUMA nodes
mit in blocks
uota as a percent of cache size
abase block in bytes
ared table scan read buffer
edo for temp blocks
r protect calls
he sizing advisory
sory simulation batch size
sory sampling factor
costly crx examination functions
he Pre-Warm Enabled : hidden parameter
number of cr pins a process may have
FAULT buffer pool for standard block size buffers
e of DEFAULT buffer pool for standard block size buffers
change notification
abase location
controlfile destination #1
controlfile destination #2
controlfile destination #3
controlfile destination #4
controlfile destination #5
art of global database name stored with CREATE DATABASE
t object drop sanity check
t object checkpoint
t object truncate
able # db files
I/O buf size
read count for regular clients
atting I/O buf count
o be read each IO
me convert patterns and strings for standby/clone db
noncontiguous db blocks to be prefetched
read count for regular clients
Flashback Database log retention time in minutes.
de simultaneous buffer operations
dles cached each process
locks for hash latch contention
k checking override parameter
EP buffer pool for standard block size buffers
buffers which force dirty queue to be written
n based lost write detection mechanism

partitions for MTTR advisory


ulation sampling factor
ulation targets
ulation trace size
e entries to alert file
name specified in CREATE DATABASE
checkpoint ordered by lrba
in object checkpoint/reuse
default buffer pool considered hot
keep buffer pool considered hot
recycle buffer pool considered hot
he created per cpu in deferred cache create
abase recovery file location
ecovery files size limit
abase recovery temporal file location
CYCLE buffer pool for standard block size buffers
p checking override parameter for data/index blocks
he deferred create
Unique Name
writes DBWR should wait for
mory allocated to dbwriter for coalescing writes
ze of coalesced write
DBWR will not downgrade IMU txns for AGING
bwr histogram statistics in x$kcbbhs
er of outstanding DB Writer IOs
background database writer processes to start
t write detection mechanism
OWAIT DML lock acquisitions
ad process scan interval

server poll count


server post/wait
server post/wait call
cryption algorithm
ck on default selectivity for like/range predicate
ex maintenance until after MV is refreshed
broker configuration file #1
broker configuration file #2
mes for broker use
Guard broker framework (DMON process)

ag diagnostics
mension skip when null feature
hrunk aggregation
talayer sampling
nnection duplexing

locks for control, data, redo log files


nction-based index matching

acle executable image checking


cremental checkpoints for thread recovery
cremental recovery checkpoint mechanism
tance type check for ksp
erface checking at startup
bh(c)xor OSD functionality
ch-free SCN writes using 32-bit compare & swap
ch-free SCN writes using 64-bit compare & swap

ultiple block size support (for debugging)


gging to NT event log

e new recoverable recovery mechanism


e read optimization during media recovery
w sampling IO optimization
e fix for bug 1402161
lf-tune checkpointing
eams pool auto tuning
stem state dump

h I/O for random access devices


ons of dispatchers
splay rate statistic (100ths of a second)
e for rate statistic (100ths of a second)
nnesting of in subquery into distinct view
seconds a distributed transaction waits for a lock
seconds RECO holds outbound connections open
g of global enqueue type(s)
timeout value
one for each table modified in a transaction
dification monitoring
ntage of the shared pool to use for a mining model
number of rows from one call to domain index fetch routine
number of rows for one call to domain index dml routines

A memory use during drop of a partitioned table


roker monitor (DMON process)
cache flush for parallel execution
Sampling Service defaults: #IOs and IO Size
cision Tree Classification work area
ree Binning Enabled
ree Binning Test ID
ree Using Compressed Bitmaps Enabled
number of surrogates
ree Pruning Enabled
stance started by RMAN
mon subexpressions
nect by loop error message into trc file
p/exec heap sizes to tryace file
p time interval limit (in seconds)
er of dump within dump interval
evel query parse tree to trace
nables IPC dump at instance eviction time
ysstate dump during instance termination
ace dump during a process crash
are dynamic
shold (in seconds) between sending statistics messages
mination of common sub-expressions
ck level recovery
mmit SCN caching for all transactions
default implementation of affinity osds
l lock escalation against partitioned tables if TRUE
constraints on the table for validation
t refresh after move tablespace
able hash cluster overflow based on SIZE
WM synchronization

gxp driver usage for native net


UMA specific optimizations
disable MV refresh scheduling (revert to 9.2 behavior)
able latch waits
B metrics processing
w shipping optimization for wide table selects
to disable/enable kgh policy
lespace alerts
e dependent selectivity estimates
ueue multi instance
ash table length
ash chain latches
managed enqueues
for enqueues
nt control - default null string

ional messages to be generated during explain rewrite


pruning in iterator if set to TRUE
times to CR serve before downgrading lock
nables fair remote convert

able fast dual


able index fast full scan
ailability target time in RAC environment
nd on recovery reads
et of forward crash recovery in seconds
er of parallel recovery slaves that may be used
ent Itemset Counting Algorithm
quent Itemset Counting work area
temset Counting Maximum Itemset Length
temset Counting Minimum BITMAP Size
temset Counting Out Of Memory Candidates Generation
parameter - string
dapters for File I/O

ons on filesystem files

parameter - integer
DATE value
ntrol parameter
bling flashback on noarchivelog database
barrier interval in seconds
flashback copy latches
ack fuzzy barrier
generation buffer size
hint barrier percent
ogfile enqueue timeout for opens
ashback log I/O error behavior
lashback log size

flashback log size in bytes (OS limit)


number of flashback logs per flashback thread
umber of flashback logs per flashback thread
standby barrier interval in seconds
ose information about flashback database
shback write size in quarter MB
of trunc for datefolding rewrite
w query rewrite features
oncatenation of rollups using temp tables
e parameter - string
partition-wise join when TRUE
up-by and aggregation using hash scheme
e of one comparison of all group by keys
nable fast reconfiguration for gcs locks
gcs resource hash latches to be allocated per LMS process
rocess gcs requests during instance recovery
gcs resources to be allocated
background gcs server processes to start
pcm shadow locks to be allocated

ffinity minimum activity per minute


, enable dynamic object affinity
se async memcpy
heck for stale blocks
oalesce recovery reads
o defer down converts for hot buffers
et dynamic affinity locks
he element percent
etween file numbers and global cache locks
lru off, make it automatic, or turn it on
egrity check level
make recovery buffers current
latches per LMS process
number of bids which can be prepared
cl statistics are maintained
nable dynamic undo affinity
et affinity locks for undo
llow CR pins on PI and WRITING buffers
ector read current buffers
xtensions to partition pruning for general predicates
er enables GES deadlock detection debug diagnostics
nables GES diagnostics
han 0 enables GES system health check
er for global index with partition extended syntax
plication Context Pool Size in Bytes
at database links have same name as remote database
opushdown cut ratio
derby don't combine threshold
i/semi join for the GS query
ysis num call stacks
agement detection interval
nable H.A.R.D specific format changes
memory hash work area
able hash join
blocks hash join will read/write at once
r thresholds
ng address (high order 32-bits on 64-bit platforms)
bit filtering threshold (0 always enabled)
omatic server DD updates in HS agent self-registration
chronization threshold in percentage
nventional index maintenance for insert direct load
ality constant for dop vs. rows in index rebuild

SC in indexes, sort those columns ascending anyhow


ropagate commit SCN immediately
outer-join cardinality calculation
improvements for computing the average row length
stance Membership Recovery feature
wait for IMR disk voting (seconds)
Reconfiguration delay (seconds)
wait for split-brain resolution (seconds)
undo pools
number of writes for incremental recovery ckpt every 3 sec
use of index joins
etching factor
granules to process for deferred cache
ning SQL statements to execute upon database creation
in the startup code
allel inserts high water marks are brokered
nce group names
ame supported by the instance

tance to be executed
nstance can retain a newly acquired level1 bitmap
hecksum interconnect blocks
a-partition updates/deletes
a-partition updates/deletes with random local dist
emory undo for top level transactions
in the ior serialize code
pt IOs picked
before completion check
buffer pool from SGA

ed size in bytes of a Java sessionspace


e in bytes of java pool
es of java pool
mit on size in bytes of a Java sessionspace
terval in seconds for job queue co-ordinator
job queue slave processes
all kjbcommit
onservatively log flush before CR serving
ecord le history
eject pings on blocks in middle of a split
or undo block locks
locks per undo segment
bas after populating data buffers
umn size does not get modified
ssage network driver
map_hash table
mop_hash table

ntage of shared pool size to be used for KGL advice


e bucket count array
nt size for library cache memory allocations
GL hash collision is possible
for library cache heap 0
cache minimum threshold
cache retain threshold
heap size before KGL writes warnings to the alert log
library cache latches
GL to support multi-instance invalidations
GL to support multi-instance locks
GL to support multi-instance pins
length of the KGL object cache lru
t for locks and pins before timing out
latches if CAS is not supported.
ng controlfile enqueue blocker on timeout
han 0 enables killing enqueue blocker
hreads and do sessionspace migration at end of call
ession substitution
this will make KKS use mutex for cursor pins.
o use slffopen
el for library cache subheap level pins
eout for internal oradebug commands
text initialization flag
mber of buffers in buffered mode
watchpoints on a per-process basis
watchpoints to be shared by all processes
PCs to collect in the stack when watchpoint is hit

time a dying process is spared by PMON (in centi-secs)


e cache size
chronous writes issued through ksfd
string of lock type(s)
cking status

tion interval in minutes


nt for acquisition of locks
termination to allow processes to dump
seconds ksuitm waits before killing diag
to disable automatic slowsend diagnostics
rocess for KSXP
t for sends queued with the inter-instance IPC

KTU latches
trace parameter
allocation size in bytes for the large allocation pool
e in bytes of large pool
es of large pool
r which an instance can retain an active level1 bitmap

ess for which to collect latch stats


recovery structures
LDAP access option
e IOs used during a load operation
dom distribution method for left of nestedloops
ynchronous Broadcasts enabling boolean flag
ynchronous IO enabling boolean flag
te delay for debugging

wait time for lgwr to allow NetServer to progress


simulate network latency or buffer threshold
simulate network latency or buffer threshold
simulate errors lgwrns
simulate errors lgwr true async
GL advice should be turned on
number of non-system user sessions allowed
number of named users that can be created in the database
vel for number of non-system user sessions
t headers for redo
predicate with bind as an equality predicate
value to activate an additional lms
to cleanup level 0 cache res (in sec)
e of cached resources should be cleanup
ource: string of lock types(s)
ksum batch messages
contiguous blocks that will hash to the same HV bucket
erval in seconds
terval in seconds
emastering maximum affinity requests processed together
emastering bucket window size
emastering forced exclusive latches
ms invocation
ad adjustment
nables dynamic remastering
enqueue freelist
ges enqueue element freelist
nables enqueue reconfiguration
etween file id and master instance number
eliver global posts to remote nodes
t time for lmd in centiseconds
background gcs server processes to start
t time for lms in centiseconds
enqueues configured for cluster database
ource weight for this instance
ber of background global cache server processes
er of background global cache server processes
h message size
age buffer caching threshold
age buffer cleanup interval time
abase node join optimization in reconfig
ster database fault-tolerance mode
latches covering the PCM HV buckets in cgs
buckets in the object affinity hash table
latches in the object affinity hash table
cit process batching for IPC messages
client processes configured for cluster database
ation: process freeze timeout
ration timeout
receive buffer
resources configured for cluster database
resource hash buckets
resource partition configured for gcs
entage of send proxy reserve of send tickets
cluster database send buffers

queue message batching


queue maximum length
nables share lock optimization
queue minimum batching factor
queue batching mechanism
queue batching waittime in tick
zation timeout for DLM reconfiguration steps
aging tickets
ol ticket active sendback threshold
calization delta
nables resource name validation
transaction IDs configured for cluster database
QL or Database objects without compilation
al communication costing when TRUE
o between global and local communication (0..100)

space used for generating lock names for standby/clone database


e SGA in physical memory
fied areas of the SGA in physical memory
number of threads to mine
e avoid memcpy
buffers to allocate for archiving
ch archival buffer in log file blocks

tabase rules for enabling archivelog compression


e config parameter
eep time in centiseconds seconds when SYNC=PARALLEL
estination text string
estination #1 text string
estination #10 text string
estination #2 text string
estination #3 text string
estination #4 text string
estination #5 text string
estination #6 text string
estination #7 text string
estination #8 text string
estination #9 text string
estination #1 state text string
estination #10 state text string
estination #2 state text string
estination #3 state text string
estination #4 state text string
estination #5 state text string
estination #6 state text string
estination #7 state text string
estination #8 state text string
estination #9 state text string
hival destination text string
estination format
EXPEDITE attribute default value
number of active ARCH processes
number of archive destinations that must succeed
e network redo buffer size used by ARCH
network wait time in seconds when SYNC=PARALLEL
e protection auto demotion
e security enabled
val process on SGA initialization
archivelog operation tracing level
mages when changed during backup
ar buffer size
do buffers before write
o buffers (slows things down)
oint begin/end to alert file
cks checkpoint threshold
cks to verify after checkpoint
time interval between checkpoints in seconds
it-time block cleanout
o multi instance code
deletion policy for mandatory/all destination
the log writer event queues
me convert patterns and strings for standby/clone db
ally initiate log write if this many redo blocks in buffer
log buffer strands
namic strands
number of log buffer strands
and multiplier for log space preallocation
private log buffer strands for zero-copy redo
sions multiplier to deduce number of private strands
simultaneous copies into redo buffer(# of copy latches)
report space errors to alert log
number of seconds redos in the current log could span
ats enabled

ds for messages from master (DFS)


terialized views using consistent read snapshot
ed view MAV refreshes avoid double counting
ns during refresh of materialized views
r union all expansion during materialized view refresh
wait by ARCH to allow NetServer to complete archival
f new snapshot in .01 seconds
er of dispatchers
size (blocks) of dump file
er of roles a user can have enabled
during exponential backoff
time spent by LNS to archive last log during shutdown
rence protocols supported in a process
number of connections used for remote archival
er of shared servers
segments for which shrink stats will be maintained
o sleep while holding a latch
overy block read batch
overy reap time
oker num stat entries
Utility threshold pct for bc
Utility threshold pct for sp
oker allow policy to shrink shared pool
oker allow policy to shrink java pool
oker allow policy to shrink streams pool
oker policy to timeout shrink shared/java pool
oker statistics gathering interval
ory management activity
nule sanity check
mory annotation collection level
nnotation pre-allocation scaling
mory annotation collection level
nnotation in-memory store
xtent size for fixed-size-extent heaps
queue resources - dependent on # processes & # buffers
ats aggregation at compile/partition maintenance time
number freeable blocks for shrink to be present
number freeable extents for shrink to be present
SCN to start with in 2^30 units
rs for debugging redo corruptions
tes with multiple MVs and/or base tables
e instances for media recovery
multi-join-key table lookup prefetch is enabled
ent to analyze after complete/PCT refresh
cision based on cost or on rules
s fractional percentage of size of mv
terialized views using EUT(partition)-based algorithm
rialized view refreshes to use parallel query
ed view MV refresh new setup disabling
percentage change required in MV to force an index rebuild
erialized views with selections and fast refresh
nality hints to refresh queries
ality constant for dop vs. time in MV refresh
r mv uses rolling cursor invalidation instead of immediate
able Maintenance Window Schedules
Implicit Conversion between CHAR and NCHAR
plicit conversion bewteen clob and nclob be allowed
lti-block readahead for an index scan
lti-block readahead tracing

V refresh fast on commit allowed


hether new sorts can be used as system sort
hen new sort avoids sorting ordered input
ptions for the new sort algorithm
al join orders based on new ordering heuristics
e use of new cost estimate for sort
dar system name

currency symbol
e date format
anguage name

urrency territory name

umns using byte or char semantics by default


an exception instead of allowing implicit conversion
ric characters
stic definition name

e with timezone format

mezone format
er ready services of startup and shutdown
eatures are used
sion during optimization disabled
y through this resetlogs operation
time for NetServer to flush oustanding writes
Time Bound for NetServer
es that this instance should run on
size in bytes of NUMA pool
number of cached attributes per instance
child latches for long op array
Dictionary Accessibility Support
e of maximum size over optimal of the user session's object cache
e of the user session's object cache in bytes
object level statistics collection
o segment list

pi history retention
pi interface object history collection
pi interface object history retention
pi interface operation history retention
pi interface operation history collection
pi memory alloc/free history collection
pi memory alloc/free history collection pausing
pi memory operation history retention
pi session history collection
pi session history retention
regate max buffer size
regate debug flags
regate function cache enabler
regate function merge threshold
regate max thread tuples creation
regate min buffer size
regate minimum cardinality of dimensions for thread
regate Multi-path Hierarhies enabled
regate status array usage threshold
regate function storeback probability
regate max worklists generated at once
regate max work parents
cate Errorlog Format
RUE to enable continuous OLAP tracing - otherwise only exceptional events will be logged
Outfile copy output to event log (tracefile)
ension In-Core Hash Table Class
ension In-Core Hash Table Maximum Size
Export BLOB size
generator dimension column size
generator measure column size
ect Hash Table Class
e Pool Expand Rate
e Pool High Watermark
e Pool Hit Target
e Pool Low Watermark
e Pool Pressure Threshold
e Pool Shrink Rate
olap page pool in bytes
allel update pagespace by group
allel update threshold for number of small pagespaces
allel update threshold in pages
utLog copy output to event log (tracefile)
sion Cache knob
Buffer Size
us Boolean max incore bits
us Boolean CBM threshold
RUE to output OLAP table function timed statistics trace
messages to OLAP outfile
able old connect by
unnecessary entries in OLS sessinfo table

ck on default selectivity for like/range predicate


sors per session
n links per session
n links per instance
ctivity for null values
able auto stats collection job
proved costing of index access using in-list(s)
lock size used by optimizer
ache statistics
cartesian join enabled
for cost-based query transformation
st based transformation query size restriction

ptimizer to use the specified permutation


ectivity estimation for builtin functions
x stats collection on index creation/rebuild
ased transformation for connect by
ct computation of subquery selectivity
ost-based query transformation
osting of filter predicates in IO cost model
f generating result set when #rows per key > 1
ptimizer to use the same degree of parallelism
lectivity in choosing star transformation dimensions
r transformation sanity checks
dynamic sampling
blocks for optimizer dynamic sampling
s before trying cost-based query transformation
extended cursor sharing
plan compatibility parameter
ased flter predicate pull up transformation
e embedded hints to be ignored
percent index caching
ndex cost adjustment
w for invalidation of cursors of analyzed objects
oin elimination enabled
e optimizer join order search algorithm
able sanity check for multi-column join selectivity
maximum join permutations per query block
um cached blocks
rge join cartesian

ng of optimizer mode for user recursive SQL also


nd run plans using several compilation environments
oin cardinality using non-rounded input values
order bys from views before query transformation
expansion approach used
nsformation of outer-join to anti-join if possible
percent parallel
n distinct from query block to table
ased query transformation for push pred optimization
seed value for random plans
use of first K rows due to rownum predicate
able saving old versions of optimizer stats

secure view merging and predicate pushdown/movearound


r self-induced caching
able index skip scan
ndex skip scan for predicates with guessed selectivity
able sort-merge join method
nnesting of subquery in a bottom-up manner
star plan enabled
able star transformation in with clause queries
tistics usage
race parameter
-join pred upon transitive equality pred generation
ges to query optimizer
undo cost change
s for skews across partitions
able dictionary stats gathering at db create/upgrade
nable index [fast] full scan more often
he way default equijoin selectivity are computed
eking of user binds
t processes to execute oradebug commands?
ered nested loop costing
ered semi-join subquery
expanded plan for NVL/DECODE predicate
uto-logon accounts
es from the operating system

ent names from _other_wait_threshold calculations


wait percentage for event wait class Other
TREE hint enabled in outline
allelism cost fudge factor
number of users running with default DOP
aptive setting of degree for multiple user streams
elligent defaults for parallel execution parameters
adcasting of small inputs to hash and sort merge joins
ximum number of instances for parallel query
of PX buffers to OS page boundary
buffer size for parallel execution
heduler percent used for testing
buckets for each round of fix write
roup to use for all parallel operations
ecution load balanced slave allocation
threads to allocate per instance
parallel query servers per instance
size of shared pool memory to reserve for pq servers
percent of threads required for parallel query
parallel query servers per instance
sition- to step through SMON
messages for each round of parallel replay
artup in parallel server mode
efore parallel query server dies (in 1/100 sec)
instances to use for sizing OPS SGA structures
between dequeue timeouts (in 1/100ths)
conds) to wait before retrying slave acquisition
parallel execution threads per CPU
allel_txn hint with updates and deletes
table block size
tial partition-wise join when TRUE
able partitioned views
file enqueue timeout in seconds
ed view PCT refreshes avoid double counting
paration of global index maintenance for PDML
t on different index when doing index maint
t on different partition when doing index maint
flashback buffer filled to be considered partial full
e for the aggregate PGA memory consumed by the instance
extent size
size of the PGA memory for one process

gressive kill test


cess clean-up interval (cs)
essive kill test instrumention
n outline data enabled
nonymous block code-type
unction Cache Enabled
ompiler flags

upon which the PL/SQL circular buffer is dumped


mum cache hit percentage required to keep caching active

e library number of subdirectories


VL optimize
ptimize level
ersion 2.x compatibility flag
ompiler warnings settings
d balancing constants (S,P,D,I,L,C,M)
e gid values and copy them before returning a row
cate elimination if set to TRUE
edicate move-around
ommit of IMU transactions
ga for process
cates into views before rewrite
ms_output of materialized view refresh schedule
ess of large extent memory segment

ojection pushdown debugging


jecting out unreferenced columns of a view
shing join predicate inside a view
shing join predicate inside a union all view
shing join predicate inside a union view
ous get granule in the slave
broadcasting fudge factor percentage
esg buffers in seconds
el for parallel compilation
el for parallel compilation
restartable qerpx dynamic optimization
mples for restartable qerpx dynamic optimization
e of a rowid range granule (in KB)
ery sampling for index create (100000 = 100%)

which LMON will check whether to publish PX load


o send a PX message via shared memory
number of rowid range granules to generate per slave
q for minus/interect operators
number of rowid range granules to generate per slave
o send a PX message over the internconnect
rallel partition granules to be sorted on size
rallel granule stealing in shared nothing environment
disables NSS Plan B reparse with outline
allel_max_servers if greater than (processes - fudge)
rtition wise group by enabled
parallel rownum pushdown optimization
age send timeout value in seconds
re cursors with QC
Pool as source of PX buffers
e of a external table granule (in KB)
ernal parameter to control QA
ernal parameter to specify QA lrg type
e cost based rewrite with materialized views
f query execution cache
uery rewrite before&after or only before view merging
uery rewrite before&after or only after view merging
and drop redundant joins
te of queries using materialized views if enabled
h cannonical form for expressions
fresh partition containment
d query rewrite with MVs fudge factor
write using materialized views with desired integrity
with jg migration
ite max disjuncts
y rewrite, if referenced tables are not dataless
eneral rewrite using set operator summaries
ol chain before rewrite after view-merging
nables parallel fixwrite at reconfiguration
nables parallel replay and cleanup at reconfiguration
nables parallel verify at reconfiguration
Distinguished Name
elay opening of read only files until first access
max total heap size, in Kbytes
s for real-free heap
l-free page size in bytes
elay with real time apply
value with real time apply
ble recovery batch size (percentage of buffer cache)
nable expensive integrity checks
server processes to use for parallel recovery
uffer cache percentage
ead recovery write verify
ransactions may be IMU

d redo/undo compatibility sanity check


number of unusable blocks to unlink from freelist
lock sends across interconnect are reliable
hival enable setting
ocedure-call dependencies mode parameter

file usage parameter


secure remote clients to use auto-logon accounts
secure remote clients to use os roles
moval of subsumed aggregated subquery
ependency for Replication parallel propagation
tch for resource limit
resource manager always
mgr top plan
ile to this location
able_timeout
blocks being examine for index block reuse
r/Semi/Anti Hash Enabled
which rman backup i/o's are done

undo segments
do segment number
sition to step rollback
Oracle will collect rowsource statistics
of rowsource statistic sampling (must be a power of 2)
e tree tracing level
cached cursors for row cache management
w cr for all sql

rows per block used for sampling IO optimization


are parameter - integer
write self-join algorithm
heckpointing lag the tail of the redo log
e of total physical i/os for self-tune ckpt
end ast message to foreground
end close with block even with direct sends
y to send CR requests to PI buffers

ect read in serial


l recovery or parallel recovery
rame segments
mes supported by the instance
ystem sessions
cursors to cache in a session.
pl/sql instantiations to cache in a session.
p context size
per session or a latch per group of sessions
Manager session idle limit check interval in seconds
cursors pins to keep in a session
number of open files allowed per session
ssion wait history collection
pare parameter - string list

for Shadow Processes


ng address (low order 32-bits on 64-bit platforms)
ol maximum size when auto SGA enabled
ol minimum size when auto SGA enabled
allocation size in bytes for reserved area of shared pool
e memory of the shared pool allocated for the reserved area
es of reserved area of shared pool
e in bytes of shared pool
es of shared pool
shared servers to start up
er of shared server sessions
k timeout in ms
e of exceptions at which to switch to full length aggs
e of variable sized buffers for non-distinct aggregates
messages to batch in a side channel message (DFS)
fore shipping out the batched side channelmessages
mple view merging performed by the optimizer
et minimum delta
nternal bound percent
balance threshold (size)
balance threshold (count)

count of invalid chunks on pin list


eserved heap count
eserved object count
actor for the simulator
nd multiple of pool size
t detached processes
e parameter - string list
p OSD reaping limit
nutes before idle ach's are reaped
mark warning interval
onds between interface detection checks
n idle time in seconds before keep alive is initiated. min: 30 sec max: 1800 sec default: 300 sec
log buffering space (in bytes) for timed wait (0 means unbufferd
onds before timed wait is invoked
kip assume message for consigns at the master
ble indexes if set to TRUE
ve mapping when TRUE
umber of slave group in a slave mapper
evel of table size for direct reads
nable v$pga_advice
default size of the PGA advice workarea history log
se the AUTO size policy cost functions
IO size (in KB) used by sort/hash-join in auto mode
O size (in KB) used by sort/hash-join in auto mode
memory manager automatically computed bound
ontrols on the memory manager
B of the instance freeable PGA memory to retain
work area for insertion sort(v1)
work area size in auto mode (serial)
work area size in auto mode
work area size in auto mode (global)
retain size in SGA for shared server sessions (0 for AUTO)
f tracing for SQL memory manager
ON internal errors
erver and port configuration parameter
g> - set debug event for testing SMU operations
rror simulation in KTU code
for error simulation in KTU code
parated *AND double-quoted* list of AUM timeouts: mql, tur, sess_exprn, qry_exprn, slot_intvl
memory sort work area retained between fetch calls
memory sort work area
or sort eimination under first_rows mode
read count for sort

spin waiting for a latch


number of rules in sql spreadsheet
cates through reference spreadsheet
W for hash table in spreadsheet
able for spreadsheet
ect privilege for searched update/delete
on progression monitoring cost threshold
qualifier for applying hintsets
egory qualifier for applying hintsets
ect Capability Table Override
ect Capability Table (testing only)
e of the SQL statement to debug
ompile-time unfolding of sql model forloops

ge version parameter for compatibility issues

atabase archivelog destination text string


n files are created/dropped automatically on standby
use of star transformation

g Advisory control parameter


g parameter
ool maximum size when auto SGA enabled
es of the streams pool
e in bytes of streams pool
pruning cost factor
use of subquery predicates to perform pruning
use of subquery predicates with MVs to perform pruning
pruning reduction factor
able SWRF Metric Frequent Mode Collection
able SWRF MMON DB Feature Usage
able SWRF MMON FLushing
able SWRF MMON Metrics Collection
to enable/disable SWRF
parameter for SWRF
able DB Feature Usage Testing
trace metadata comparisons for synonym repointing
eter for SYSAUX
percent system index caching
m triggers enabled
up prefetch vector size
up prefetch threshold
mated full table scan and index ffs cost by one
h I/O requests for tape devices
max log lag percentage
ime for arhcived version of online log
mode for testing transportable database
blocks for a dimension before we temp transform
s if temp table is created with cache option
nction ksusigskip
ter 1 - integer
eter 2 - string
eter 3 - string
eter 4 - string list
ter 5 - deprecated integer
ter 6 - size (ub8)
parameter - integer
ad to mount
hreshold-based alerts
statistic gathering interval in seconds
nternal timing statistics
ory for allocating large extents
d for duping of TQ statistics (s)
ustom identifier

r sizes per process


r flushes if otrace cacheIO event is set
buffer gets if otrace cacheIO event is set
r busy wait timeouts
T timestamp on trace buffer wrap
ffer creates if otrace cacheIO event is set

ts enabled at startup
blicly accessible trace files
size of trace file (in bytes)
archived by DIAG for these processes
_block reads if otrace cacheIO event is set
ace navigation linking
flush options
long a current pin is held
T tracing in process
ber of concurrent active transactions
active transactions per rollback segment
n auditing records generated in the redo log
er of parallel recovery slaves that may be used
e optimization if set to TRUE
onnect string
SM auto cleanup actions
ging in a tablespace with an incompatible character set
o-pass thread recovery
pass reverse polish alg. to generate canonical forms
large extent size
ast-path statistics for ultrafast latches
o tuning of undo_retention
for undo related operations
do usage functions for testing
uns in SMU mode if TRUE, else in RBU mode
tion in seconds
undo tablespace
eries with GSets into UNIONs for rewrite
nnesting of correlated subqueries
used block compression
ess dump directory
use of column statistics for DDP functions
irect data buffers (very large SGA on 32-bit platforms)
ared Page Tables - ISM
or allocating large extents
ment indexes in explain plan
ee based allocator for PGA memory
use process local seq cache

essible directories list


base to validate result of flashback database
rary search root directory
the redo logs needed for flashback are available
rify consistency of undo quota statistics
_partitioned_table
nc on commit MUST BE ALWAYS TRUE
number of unusable blocks to walk across freelist
hpointing feature turned on?
r window function optimizations
d to size SQL working areas (MANUAL/AUTO)

bytes for logging peeked bind values for V$SQL_PLAN (0 = OFF)


an tracing parameter
lower bound for auto materialization.
behavior for auto materialization
debug output disposition
cube densification
symmetric overfetch

generates WITH clause?


hierarchy value type
ad OLAP API library at server process start
min number of rows required to use rowcache in query materialization
Enable source materialization
metadata reader mode
uses ODBO mode?
optimizes suppressions?
precomputes subqueries?
removes columns for materialization?

output Source definitions to trace file


multi-join non-base hints
non-base hints
enable automatic dimension hints
enable automatic measure hints
dimension hints
enables AW join?
enables AW QDR merge?
generic hints
measure hints
enable optimization
prepare statement cache size
enable remove unused columns optimizations
result set cache size
enable symmetric predicate for dimension groups
top dimension hints
top measure hints
enable bind variables optimization
stringifies order levels?
suppression AW mask threshold
suppression chunk size
uses models?
uses OLAP DML?
uses OLAP DML for rank?
in KB needed for populate/query operation
s platform for pre10 compatible tablespace
platform info during file header read
bles code coverage parameter
bles trace parameter
check whether actses should yield

pecify dumps prior to 4031 error


1 error once for each n-second interval
number of 4031 dumps for this process
1 SGA heapdump error once for each n-second interval
number of SGA heapdumps
bort recovery on join reconfigurations
ameters for rolling operation
active instances in the cluster database
ptimize dlm reconfiguration for active/standby OPS

able adaptive fetch in parallel group by


hether ADDM gets run automatically after every AWR snapshot
parated list of ADDM nodes to skip
hether ADDM checks the input AWR snapshot version
mv to dependency list
we will adjust the SQL/PLUS output
able affinity at run time
aiowait timeouts before error is reported
efore an alert message is moved to exception queue
ert Message Cleanup
ert Message Purge
ckground Alert Posting
s be examined in creation order during allocation
which successful search in L1 should be updated
ommutativity of +, * when comparing expressions
simulation for testing
without connect by
-only open even if database is corrupt
logs even if it will cause corruption
minal recovery even if it may cause corruption
links as shared
ernate index-organized table leaf-block split-points
e this method for anti-join when possible
e this method for semi-join when possible
or use of star transformation
p ctx versioning
AQ Time Managers to start
or Time Managers to clean up IOT
number of seconds of redos the standby could lose

ay update vector read


e number of in-memory samples to the number of samples actually written to disk
or disable Active Session History flushing
ernal dummy ASH parameter used ONLY for testing!
ntage above which if the in-memory ASH is full the emergency flusher will be triggered
or disable Active Session sampling and flushing
or disable sampling every connected session including ones waiting for idle waits
val between two successive Active Session samples in millisecs
size of the in-memory Active Session History buffers

chunks created
only raw devices
k resilvering for external redundancy

s to mount automatically
cations for discovery
o wait before dropping a failing disk
fore offlined disks get dropped (in 3s ticks)
er of concurrent disks to emulate I/O errors
fore emulation begins (in 3s ticks)

rch order for discovery


size of individual I/O request
processes for disk rebalancing

time to wait before asmb exits

sue recovery claims asynchronously


sue recovery reads asynchronously
n which auditing files are to reside

tem auditing
o not prepare a buffer when the master is local

shing of specified AWR tables


sable Flushing AWR Workload Metrics
sable Flushing AWR Workload Metrics
able AWR MMON CPU Usage Tracking

AWR SQL Child Limit


for Background Processes
process dump directory
Disk I/O slaves
reserve from the large pool
uffer size to be used for kgc compression
umber of iterations used for kgc compression
ompression type used for kgc compression
the ksfq buffers used for backup/restore
ksfq buffer used for backup/restore
p in an incremental/optimized backup buffer, in bytes
Tape I/O slaves
bitmaps to store for each datafile
size of all change tracking buffer allocations, in bytes
umber of extents to allocate per buffer allocation
e change tracking buffer allocation, in bytes
cking datafile chunk size, in bytes
cking reserved crash recovery SGA space, in bytes
of change tracking file, in bytes
of change tracking file, in bytes
cking file for fixed tables
ber of entries in the private change tracking dba buffers
f all public change tracking dba buffers, in bytes
memory allow for BITMAP MERGE
xtensions to partition pruning for general predicates
ming semantics parameter
consecutive blocks per global cache server
cking possible
el for bloom filtering
disables bloom filter
tes with multiple MVs and base tables
y wait time in centiseconds
database blocks/latches in keep buffer pool
database blocks/latches in recycle buffer pool
ol threshold value
size of the message allowed in memory
cing flow control for buffered queues
D MV creation skipping MV log setup update
blocks should we allocate per free list on advancing HWM
enerate a BWR for a flushed PI
use of bitmap plans for tables w. only B-tree indexes
nable cache stats monitoring
nfiguration timeout interval
timeout value
ock check after checksum if both are turned on
espace thresholds
er of circuits
o entries to apply per transaction cleanup
ors cached by PL/SQL at each commit
artup in cluster database mode
instances to use for sizing cluster db SGA structures
cts for RAC use
ary selection

atistics v$undostat
mpression ratio
edicate-only column elimination
age tracking
ode has toward not preparing in a two-phase commit
n commit log write behaviour
will be completely compatible with this software version
compilation call heaps extents
mplex view merging
block size in bytes
system states after controlfile enqueue timeout
enqueue timeout in seconds
initial section size
max expansion rate
update sanity check

record keep time in days


onversion of set operator to join
covery coordinator side extra message buffer size

undo segment list


osting of equality semi-join
CPUs for this instance
converting CPU cost to I/O cost
ate bitmap buffer for bitmap index
ed outlines for DML statements
rant lock for CR requests when block is in global role
CR grants off, make it automatic, or turn it on
ush redo log before serving a CR buffer
WM brokered CTAS
size of the cursor bind capture area
seconds) between two bind capture for a cursor
nd buffer caching
number of buffers a cursor can pin at once
rsor features enabled bits.
ection and display of cursor plans
cursor plan hash value
sables using unparse to build projection/predicates

memory in order to get faster execution


buckets for cursor stats (2^).
hes for cursor stats.
cess startup
writer asynchronous writes

writer tracing
che for 16K buffers
che for 2K buffers
che for 32K buffers
che for 4K buffers
che for 8K buffers
nt set when buffer cooled
buffers always be too cold to keep in cache
nt which sends a buffer to head of replacement list
nt set when buffer moved to head of replacement list
nt which sends a buffer to head of replacement list
rform block check and checksum for System tablespace
ache buffer checks - low blkchk overwrite parameter
ache buffer check level

database blocks cached in memory: hidden parameter


database blocks cached in memory
ne data blocks on get (for debugging)
der tracing (non-zero only when debugging)
der tracing level
unmapped buffers (for tracking swap calls on blocks)
abase blocks (true only when debugging)
abase blocks (for strictly internal use only)
ecking and data and index block checking
ksum in db blocks and check during reads
re and dump block before image for debugging
and typ on cache disk read
k read even if some blocks are in cache
database block hash buckets
database block hash latches
writes for high priority reasons
entage of buffers to maintain known clean

Allowed Number of CR buffers per dba


e of buffers to inspect when looking for free
writes for medium priority reasons
NUMA nodes
mit in blocks
uota as a percent of cache size
abase block in bytes
ared table scan read buffer
edo for temp blocks
r protect calls
he sizing advisory
sory simulation batch size
sory sampling factor
costly crx examination functions
he Pre-Warm Enabled : hidden parameter
number of cr pins a process may have
FAULT buffer pool for standard block size buffers
e of DEFAULT buffer pool for standard block size buffers
change notification
abase location
controlfile destination #1
controlfile destination #2
controlfile destination #3
controlfile destination #4
controlfile destination #5
art of global database name stored with CREATE DATABASE
t object drop sanity check
t object checkpoint
t object truncate
able # db files
I/O buf size
read count for regular clients
atting I/O buf count
o be read each IO
me convert patterns and strings for standby/clone db
noncontiguous db blocks to be prefetched
read count for regular clients
Flashback Database log retention time in minutes.
de simultaneous buffer operations
dles cached each process
locks for hash latch contention
k checking override parameter
EP buffer pool for standard block size buffers
buffers which force dirty queue to be written
n based lost write detection mechanism

partitions for MTTR advisory


ulation sampling factor
ulation targets
ulation trace size
e entries to alert file
name specified in CREATE DATABASE
checkpoint ordered by lrba
in object checkpoint/reuse
default buffer pool considered hot
keep buffer pool considered hot
recycle buffer pool considered hot
he created per cpu in deferred cache create
abase recovery file location
ecovery files size limit
abase recovery temporal file location
CYCLE buffer pool for standard block size buffers
p checking override parameter for data/index blocks
he deferred create
Unique Name
writes DBWR should wait for
mory allocated to dbwriter for coalescing writes
ze of coalesced write
DBWR will not downgrade IMU txns for AGING
bwr histogram statistics in x$kcbbhs
er of outstanding DB Writer IOs
background database writer processes to start
t write detection mechanism
OWAIT DML lock acquisitions
ad process scan interval

server poll count


server post/wait
server post/wait call
cryption algorithm
ck on default selectivity for like/range predicate
ex maintenance until after MV is refreshed
broker configuration file #1
broker configuration file #2
mes for broker use
Guard broker framework (DMON process)

ag diagnostics
mension skip when null feature
hrunk aggregation
talayer sampling
nnection duplexing

locks for control, data, redo log files


nction-based index matching

acle executable image checking


cremental checkpoints for thread recovery
cremental recovery checkpoint mechanism
tance type check for ksp
erface checking at startup
bh(c)xor OSD functionality
ch-free SCN writes using 32-bit compare & swap
ch-free SCN writes using 64-bit compare & swap

ultiple block size support (for debugging)


gging to NT event log

e new recoverable recovery mechanism


e read optimization during media recovery
w sampling IO optimization
e fix for bug 1402161
lf-tune checkpointing
eams pool auto tuning
stem state dump

h I/O for random access devices


ons of dispatchers
splay rate statistic (100ths of a second)
e for rate statistic (100ths of a second)
nnesting of in subquery into distinct view
seconds a distributed transaction waits for a lock
seconds RECO holds outbound connections open
g of global enqueue type(s)
timeout value
one for each table modified in a transaction
dification monitoring
ntage of the shared pool to use for a mining model
number of rows from one call to domain index fetch routine
number of rows for one call to domain index dml routines

A memory use during drop of a partitioned table


roker monitor (DMON process)
cache flush for parallel execution
Sampling Service defaults: #IOs and IO Size
cision Tree Classification work area
ree Binning Enabled
ree Binning Test ID
ree Using Compressed Bitmaps Enabled
number of surrogates
ree Pruning Enabled
stance started by RMAN
mon subexpressions
nect by loop error message into trc file
p/exec heap sizes to tryace file
p time interval limit (in seconds)
er of dump within dump interval
evel query parse tree to trace
nables IPC dump at instance eviction time
ysstate dump during instance termination
ace dump during a process crash
are dynamic
shold (in seconds) between sending statistics messages
mination of common sub-expressions
ck level recovery
mmit SCN caching for all transactions
default implementation of affinity osds
l lock escalation against partitioned tables if TRUE
constraints on the table for validation
t refresh after move tablespace
able hash cluster overflow based on SIZE
WM synchronization

gxp driver usage for native net


UMA specific optimizations
disable MV refresh scheduling (revert to 9.2 behavior)
able latch waits
B metrics processing
w shipping optimization for wide table selects
to disable/enable kgh policy
lespace alerts
e dependent selectivity estimates
ueue multi instance
ash table length
ash chain latches
managed enqueues
for enqueues
nt control - default null string

ional messages to be generated during explain rewrite


pruning in iterator if set to TRUE
times to CR serve before downgrading lock
nables fair remote convert

able fast dual


able index fast full scan
ailability target time in RAC environment
nd on recovery reads
et of forward crash recovery in seconds
er of parallel recovery slaves that may be used
ent Itemset Counting Algorithm
quent Itemset Counting work area
temset Counting Maximum Itemset Length
temset Counting Minimum BITMAP Size
temset Counting Out Of Memory Candidates Generation
parameter - string
dapters for File I/O

ons on filesystem files

parameter - integer
DATE value
ntrol parameter
bling flashback on noarchivelog database
barrier interval in seconds
flashback copy latches
ack fuzzy barrier
generation buffer size
hint barrier percent
ogfile enqueue timeout for opens
ashback log I/O error behavior
lashback log size

flashback log size in bytes (OS limit)


number of flashback logs per flashback thread
umber of flashback logs per flashback thread
standby barrier interval in seconds
ose information about flashback database
shback write size in quarter MB
of trunc for datefolding rewrite
w query rewrite features
oncatenation of rollups using temp tables
e parameter - string
partition-wise join when TRUE
up-by and aggregation using hash scheme
e of one comparison of all group by keys
nable fast reconfiguration for gcs locks
gcs resource hash latches to be allocated per LMS process
rocess gcs requests during instance recovery
gcs resources to be allocated
background gcs server processes to start
pcm shadow locks to be allocated

ffinity minimum activity per minute


, enable dynamic object affinity
se async memcpy
heck for stale blocks
oalesce recovery reads
o defer down converts for hot buffers
et dynamic affinity locks
he element percent
etween file numbers and global cache locks
lru off, make it automatic, or turn it on
egrity check level
make recovery buffers current
latches per LMS process
number of bids which can be prepared
cl statistics are maintained
nable dynamic undo affinity
et affinity locks for undo
llow CR pins on PI and WRITING buffers
ector read current buffers
xtensions to partition pruning for general predicates
er enables GES deadlock detection debug diagnostics
nables GES diagnostics
han 0 enables GES system health check
er for global index with partition extended syntax
plication Context Pool Size in Bytes
at database links have same name as remote database
opushdown cut ratio
derby don't combine threshold
i/semi join for the GS query
ysis num call stacks
agement detection interval
nable H.A.R.D specific format changes
memory hash work area
able hash join
blocks hash join will read/write at once
r thresholds
ng address (high order 32-bits on 64-bit platforms)
bit filtering threshold (0 always enabled)
omatic server DD updates in HS agent self-registration
chronization threshold in percentage
nventional index maintenance for insert direct load
ality constant for dop vs. rows in index rebuild

SC in indexes, sort those columns ascending anyhow


ropagate commit SCN immediately
outer-join cardinality calculation
improvements for computing the average row length
stance Membership Recovery feature
wait for IMR disk voting (seconds)
Reconfiguration delay (seconds)
wait for split-brain resolution (seconds)
undo pools
number of writes for incremental recovery ckpt every 3 sec
use of index joins
etching factor
granules to process for deferred cache
ning SQL statements to execute upon database creation
in the startup code
allel inserts high water marks are brokered
nce group names
ame supported by the instance

tance to be executed
nstance can retain a newly acquired level1 bitmap
hecksum interconnect blocks
a-partition updates/deletes
a-partition updates/deletes with random local dist
emory undo for top level transactions
in the ior serialize code
pt IOs picked
before completion check
buffer pool from SGA

ed size in bytes of a Java sessionspace


e in bytes of java pool
es of java pool
mit on size in bytes of a Java sessionspace
terval in seconds for job queue co-ordinator
job queue slave processes
all kjbcommit
onservatively log flush before CR serving
ecord le history
eject pings on blocks in middle of a split
or undo block locks
locks per undo segment
bas after populating data buffers
umn size does not get modified
ssage network driver
map_hash table
mop_hash table

ntage of shared pool size to be used for KGL advice


e bucket count array
nt size for library cache memory allocations
GL hash collision is possible
for library cache heap 0
cache minimum threshold
cache retain threshold
heap size before KGL writes warnings to the alert log
library cache latches
GL to support multi-instance invalidations
GL to support multi-instance locks
GL to support multi-instance pins
length of the KGL object cache lru
t for locks and pins before timing out
latches if CAS is not supported.
ng controlfile enqueue blocker on timeout
han 0 enables killing enqueue blocker
hreads and do sessionspace migration at end of call
ession substitution
this will make KKS use mutex for cursor pins.
o use slffopen
el for library cache subheap level pins
eout for internal oradebug commands
text initialization flag
mber of buffers in buffered mode
watchpoints on a per-process basis
watchpoints to be shared by all processes
PCs to collect in the stack when watchpoint is hit

time a dying process is spared by PMON (in centi-secs)


e cache size
chronous writes issued through ksfd
string of lock type(s)
cking status

tion interval in minutes


nt for acquisition of locks
termination to allow processes to dump
seconds ksuitm waits before killing diag
to disable automatic slowsend diagnostics
rocess for KSXP
t for sends queued with the inter-instance IPC

KTU latches
trace parameter
allocation size in bytes for the large allocation pool
e in bytes of large pool
es of large pool
r which an instance can retain an active level1 bitmap

ess for which to collect latch stats


recovery structures
LDAP access option
e IOs used during a load operation
dom distribution method for left of nestedloops
ynchronous Broadcasts enabling boolean flag
ynchronous IO enabling boolean flag
te delay for debugging

wait time for lgwr to allow NetServer to progress


simulate network latency or buffer threshold
simulate network latency or buffer threshold
simulate errors lgwrns
simulate errors lgwr true async
GL advice should be turned on
number of non-system user sessions allowed
number of named users that can be created in the database
vel for number of non-system user sessions
t headers for redo
predicate with bind as an equality predicate
value to activate an additional lms
to cleanup level 0 cache res (in sec)
e of cached resources should be cleanup
ource: string of lock types(s)
ksum batch messages
contiguous blocks that will hash to the same HV bucket
erval in seconds
terval in seconds
emastering maximum affinity requests processed together
emastering bucket window size
emastering forced exclusive latches
ms invocation
ad adjustment
nables dynamic remastering
enqueue freelist
ges enqueue element freelist
nables enqueue reconfiguration
etween file id and master instance number
eliver global posts to remote nodes
t time for lmd in centiseconds
background gcs server processes to start
t time for lms in centiseconds
enqueues configured for cluster database
ource weight for this instance
ber of background global cache server processes
er of background global cache server processes
h message size
age buffer caching threshold
age buffer cleanup interval time
abase node join optimization in reconfig
ster database fault-tolerance mode
latches covering the PCM HV buckets in cgs
buckets in the object affinity hash table
latches in the object affinity hash table
cit process batching for IPC messages
client processes configured for cluster database
ation: process freeze timeout
ration timeout
receive buffer
resources configured for cluster database
resource hash buckets
resource partition configured for gcs
entage of send proxy reserve of send tickets
cluster database send buffers

queue message batching


queue maximum length
nables share lock optimization
queue minimum batching factor
queue batching mechanism
queue batching waittime in tick
zation timeout for DLM reconfiguration steps
aging tickets
ol ticket active sendback threshold
calization delta
nables resource name validation
transaction IDs configured for cluster database
QL or Database objects without compilation
al communication costing when TRUE
o between global and local communication (0..100)

space used for generating lock names for standby/clone database


e SGA in physical memory
fied areas of the SGA in physical memory
number of threads to mine
e avoid memcpy
buffers to allocate for archiving
ch archival buffer in log file blocks

tabase rules for enabling archivelog compression


e config parameter
eep time in centiseconds seconds when SYNC=PARALLEL
estination text string
estination #1 text string
estination #10 text string
estination #2 text string
estination #3 text string
estination #4 text string
estination #5 text string
estination #6 text string
estination #7 text string
estination #8 text string
estination #9 text string
estination #1 state text string
estination #10 state text string
estination #2 state text string
estination #3 state text string
estination #4 state text string
estination #5 state text string
estination #6 state text string
estination #7 state text string
estination #8 state text string
estination #9 state text string
hival destination text string
estination format
EXPEDITE attribute default value
number of active ARCH processes
number of archive destinations that must succeed
e network redo buffer size used by ARCH
network wait time in seconds when SYNC=PARALLEL
e protection auto demotion
e security enabled
val process on SGA initialization
archivelog operation tracing level
mages when changed during backup
ar buffer size
do buffers before write
o buffers (slows things down)
oint begin/end to alert file
cks checkpoint threshold
cks to verify after checkpoint
time interval between checkpoints in seconds
it-time block cleanout
o multi instance code
deletion policy for mandatory/all destination
the log writer event queues
me convert patterns and strings for standby/clone db
ally initiate log write if this many redo blocks in buffer
log buffer strands
namic strands
number of log buffer strands
and multiplier for log space preallocation
private log buffer strands for zero-copy redo
sions multiplier to deduce number of private strands
simultaneous copies into redo buffer(# of copy latches)
report space errors to alert log
number of seconds redos in the current log could span
ats enabled

ds for messages from master (DFS)


terialized views using consistent read snapshot
ed view MAV refreshes avoid double counting
ns during refresh of materialized views
r union all expansion during materialized view refresh
wait by ARCH to allow NetServer to complete archival
f new snapshot in .01 seconds
er of dispatchers
size (blocks) of dump file
er of roles a user can have enabled
during exponential backoff
time spent by LNS to archive last log during shutdown
rence protocols supported in a process
number of connections used for remote archival
er of shared servers
segments for which shrink stats will be maintained
o sleep while holding a latch
overy block read batch
overy reap time
oker num stat entries
Utility threshold pct for bc
Utility threshold pct for sp
oker allow policy to shrink shared pool
oker allow policy to shrink java pool
oker allow policy to shrink streams pool
oker policy to timeout shrink shared/java pool
oker statistics gathering interval
ory management activity
nule sanity check
mory annotation collection level
nnotation pre-allocation scaling
mory annotation collection level
nnotation in-memory store
xtent size for fixed-size-extent heaps
queue resources - dependent on # processes & # buffers
ats aggregation at compile/partition maintenance time
number freeable blocks for shrink to be present
number freeable extents for shrink to be present
SCN to start with in 2^30 units
rs for debugging redo corruptions
tes with multiple MVs and/or base tables
e instances for media recovery
multi-join-key table lookup prefetch is enabled
ent to analyze after complete/PCT refresh
cision based on cost or on rules
s fractional percentage of size of mv
terialized views using EUT(partition)-based algorithm
rialized view refreshes to use parallel query
ed view MV refresh new setup disabling
percentage change required in MV to force an index rebuild
erialized views with selections and fast refresh
nality hints to refresh queries
ality constant for dop vs. time in MV refresh
r mv uses rolling cursor invalidation instead of immediate
able Maintenance Window Schedules
Implicit Conversion between CHAR and NCHAR
plicit conversion bewteen clob and nclob be allowed
lti-block readahead for an index scan
lti-block readahead tracing

V refresh fast on commit allowed


hether new sorts can be used as system sort
hen new sort avoids sorting ordered input
ptions for the new sort algorithm
al join orders based on new ordering heuristics
e use of new cost estimate for sort
dar system name

currency symbol
e date format
anguage name

urrency territory name

umns using byte or char semantics by default


an exception instead of allowing implicit conversion
ric characters
stic definition name

e with timezone format

mezone format
er ready services of startup and shutdown
eatures are used
sion during optimization disabled
y through this resetlogs operation
time for NetServer to flush oustanding writes
Time Bound for NetServer
es that this instance should run on
size in bytes of NUMA pool
number of cached attributes per instance
child latches for long op array
Dictionary Accessibility Support
e of maximum size over optimal of the user session's object cache
e of the user session's object cache in bytes
object level statistics collection
o segment list

pi history retention
pi interface object history collection
pi interface object history retention
pi interface operation history retention
pi interface operation history collection
pi memory alloc/free history collection
pi memory alloc/free history collection pausing
pi memory operation history retention
pi session history collection
pi session history retention
regate max buffer size
regate debug flags
regate function cache enabler
regate function merge threshold
regate max thread tuples creation
regate min buffer size
regate minimum cardinality of dimensions for thread
regate Multi-path Hierarhies enabled
regate status array usage threshold
regate function storeback probability
regate max worklists generated at once
regate max work parents
cate Errorlog Format
RUE to enable continuous OLAP tracing - otherwise only exceptional events will be logged
Outfile copy output to event log (tracefile)
ension In-Core Hash Table Class
ension In-Core Hash Table Maximum Size
Export BLOB size
generator dimension column size
generator measure column size
ect Hash Table Class
e Pool Expand Rate
e Pool High Watermark
e Pool Hit Target
e Pool Low Watermark
e Pool Pressure Threshold
e Pool Shrink Rate
olap page pool in bytes
allel update pagespace by group
allel update threshold for number of small pagespaces
allel update threshold in pages
utLog copy output to event log (tracefile)
sion Cache knob
Buffer Size
us Boolean max incore bits
us Boolean CBM threshold
RUE to output OLAP table function timed statistics trace
messages to OLAP outfile
able old connect by
unnecessary entries in OLS sessinfo table

ck on default selectivity for like/range predicate


sors per session
n links per session
n links per instance
ctivity for null values
able auto stats collection job
proved costing of index access using in-list(s)
lock size used by optimizer
ache statistics
cartesian join enabled
for cost-based query transformation
st based transformation query size restriction

ptimizer to use the specified permutation


ectivity estimation for builtin functions
x stats collection on index creation/rebuild
ased transformation for connect by
ct computation of subquery selectivity
ost-based query transformation
osting of filter predicates in IO cost model
f generating result set when #rows per key > 1

ptimizer to use the same degree of parallelism


lectivity in choosing star transformation dimensions
r transformation sanity checks
dynamic sampling
blocks for optimizer dynamic sampling
s before trying cost-based query transformation
extended cursor sharing
plan compatibility parameter
ased flter predicate pull up transformation
e embedded hints to be ignored
percent index caching
ndex cost adjustment
w for invalidation of cursors of analyzed objects
oin elimination enabled
e optimizer join order search algorithm
able sanity check for multi-column join selectivity
maximum join permutations per query block
um cached blocks
rge join cartesian

ng of optimizer mode for user recursive SQL also


nd run plans using several compilation environments
oin cardinality using non-rounded input values
order bys from views before query transformation
expansion approach used
nsformation of outer-join to anti-join if possible
percent parallel
n distinct from query block to table
ased query transformation for push pred optimization
seed value for random plans
use of first K rows due to rownum predicate
able saving old versions of optimizer stats

secure view merging and predicate pushdown/movearound


r self-induced caching
able index skip scan
ndex skip scan for predicates with guessed selectivity
able sort-merge join method
nnesting of subquery in a bottom-up manner
star plan enabled
able star transformation in with clause queries
tistics usage
race parameter
-join pred upon transitive equality pred generation
ges to query optimizer
undo cost change
s for skews across partitions
able dictionary stats gathering at db create/upgrade
nable index [fast] full scan more often
he way default equijoin selectivity are computed
eking of user binds
t processes to execute oradebug commands?
ered nested loop costing
ered semi-join subquery
expanded plan for NVL/DECODE predicate
uto-logon accounts
es from the operating system

ent names from _other_wait_threshold calculations


wait percentage for event wait class Other
TREE hint enabled in outline
allelism cost fudge factor
number of users running with default DOP
aptive setting of degree for multiple user streams
elligent defaults for parallel execution parameters
adcasting of small inputs to hash and sort merge joins
ximum number of instances for parallel query
of PX buffers to OS page boundary
buffer size for parallel execution
heduler percent used for testing
buckets for each round of fix write
roup to use for all parallel operations
ecution load balanced slave allocation
threads to allocate per instance
parallel query servers per instance
size of shared pool memory to reserve for pq servers
percent of threads required for parallel query
parallel query servers per instance
sition- to step through SMON
messages for each round of parallel replay
artup in parallel server mode
efore parallel query server dies (in 1/100 sec)
instances to use for sizing OPS SGA structures
between dequeue timeouts (in 1/100ths)
conds) to wait before retrying slave acquisition
parallel execution threads per CPU
allel_txn hint with updates and deletes
table block size
tial partition-wise join when TRUE
able partitioned views
file enqueue timeout in seconds
ed view PCT refreshes avoid double counting
paration of global index maintenance for PDML
t on different index when doing index maint
t on different partition when doing index maint
flashback buffer filled to be considered partial full
e for the aggregate PGA memory consumed by the instance
extent size
size of the PGA memory for one process

gressive kill test


cess clean-up interval (cs)
essive kill test instrumention
n outline data enabled
nonymous block code-type
unction Cache Enabled

ompiler flags

upon which the PL/SQL circular buffer is dumped


mum cache hit percentage required to keep caching active

e library number of subdirectories


VL optimize
ptimize level
ersion 2.x compatibility flag
ompiler warnings settings
d balancing constants (S,P,D,I,L,C,M)
e gid values and copy them before returning a row
cate elimination if set to TRUE
edicate move-around
ommit of IMU transactions
ga for process
cates into views before rewrite
ms_output of materialized view refresh schedule
ess of large extent memory segment
ojection pushdown debugging
jecting out unreferenced columns of a view
shing join predicate inside a view
shing join predicate inside a union all view
shing join predicate inside a union view
ous get granule in the slave
broadcasting fudge factor percentage
esg buffers in seconds
el for parallel compilation
el for parallel compilation
restartable qerpx dynamic optimization
mples for restartable qerpx dynamic optimization
e of a rowid range granule (in KB)
ery sampling for index create (100000 = 100%)

which LMON will check whether to publish PX load


o send a PX message via shared memory
number of rowid range granules to generate per slave
q for minus/interect operators
number of rowid range granules to generate per slave
o send a PX message over the internconnect
rallel partition granules to be sorted on size
rallel granule stealing in shared nothing environment
disables NSS Plan B reparse with outline
allel_max_servers if greater than (processes - fudge)
rtition wise group by enabled
parallel rownum pushdown optimization
age send timeout value in seconds
re cursors with QC

Pool as source of PX buffers


e of a external table granule (in KB)
ernal parameter to control QA
ernal parameter to specify QA lrg type
e cost based rewrite with materialized views
f query execution cache
uery rewrite before&after or only before view merging
uery rewrite before&after or only after view merging
and drop redundant joins
te of queries using materialized views if enabled
h cannonical form for expressions
fresh partition containment
d query rewrite with MVs fudge factor
write using materialized views with desired integrity
with jg migration
ite max disjuncts
y rewrite, if referenced tables are not dataless
eneral rewrite using set operator summaries
ol chain before rewrite after view-merging
nables parallel fixwrite at reconfiguration
nables parallel replay and cleanup at reconfiguration
nables parallel verify at reconfiguration
Distinguished Name
elay opening of read only files until first access
max total heap size, in Kbytes
s for real-free heap
l-free page size in bytes
elay with real time apply
value with real time apply
ble recovery batch size (percentage of buffer cache)
nable expensive integrity checks
server processes to use for parallel recovery
uffer cache percentage
ead recovery write verify
ransactions may be IMU

d redo/undo compatibility sanity check


number of unusable blocks to unlink from freelist
lock sends across interconnect are reliable
hival enable setting
ocedure-call dependencies mode parameter

file usage parameter


secure remote clients to use auto-logon accounts
secure remote clients to use os roles
moval of subsumed aggregated subquery
ependency for Replication parallel propagation
tch for resource limit
resource manager always
mgr top plan
ile to this location
able_timeout
blocks being examine for index block reuse
r/Semi/Anti Hash Enabled
which rman backup i/o's are done

undo segments
do segment number
sition to step rollback
Oracle will collect rowsource statistics
of rowsource statistic sampling (must be a power of 2)
e tree tracing level
cached cursors for row cache management
w cr for all sql

rows per block used for sampling IO optimization


are parameter - integer
write self-join algorithm
heckpointing lag the tail of the redo log
e of total physical i/os for self-tune ckpt
end ast message to foreground
end close with block even with direct sends
y to send CR requests to PI buffers
ect read in serial
l recovery or parallel recovery
rame segments
mes supported by the instance
ystem sessions
cursors to cache in a session.
pl/sql instantiations to cache in a session.
p context size
per session or a latch per group of sessions
Manager session idle limit check interval in seconds
cursors pins to keep in a session
number of open files allowed per session
ssion wait history collection
pare parameter - string list

for Shadow Processes


ng address (low order 32-bits on 64-bit platforms)
ol maximum size when auto SGA enabled
ol minimum size when auto SGA enabled
allocation size in bytes for reserved area of shared pool
e memory of the shared pool allocated for the reserved area
es of reserved area of shared pool
e in bytes of shared pool
es of shared pool
shared servers to start up
er of shared server sessions
k timeout in ms
e of exceptions at which to switch to full length aggs
e of variable sized buffers for non-distinct aggregates
messages to batch in a side channel message (DFS)
fore shipping out the batched side channelmessages
mple view merging performed by the optimizer
et minimum delta
nternal bound percent
balance threshold (size)
balance threshold (count)

count of invalid chunks on pin list


eserved heap count
eserved object count
actor for the simulator
nd multiple of pool size
t detached processes
e parameter - string list
p OSD reaping limit
nutes before idle ach's are reaped
mark warning interval
onds between interface detection checks
n idle time in seconds before keep alive is initiated. min: 30 sec max: 1800 sec default: 300 sec
log buffering space (in bytes) for timed wait (0 means unbufferd
onds before timed wait is invoked
kip assume message for consigns at the master
ble indexes if set to TRUE
ve mapping when TRUE
umber of slave group in a slave mapper
evel of table size for direct reads
nable v$pga_advice
default size of the PGA advice workarea history log
se the AUTO size policy cost functions
IO size (in KB) used by sort/hash-join in auto mode
O size (in KB) used by sort/hash-join in auto mode
memory manager automatically computed bound
ontrols on the memory manager
B of the instance freeable PGA memory to retain
work area for insertion sort(v1)
work area size in auto mode (serial)
work area size in auto mode
work area size in auto mode (global)
retain size in SGA for shared server sessions (0 for AUTO)
f tracing for SQL memory manager
ON internal errors
erver and port configuration parameter
g> - set debug event for testing SMU operations
rror simulation in KTU code
for error simulation in KTU code
parated *AND double-quoted* list of AUM timeouts: mql, tur, sess_exprn, qry_exprn, slot_intvl
memory sort work area retained between fetch calls
memory sort work area
or sort eimination under first_rows mode
read count for sort

spin waiting for a latch


number of rules in sql spreadsheet
cates through reference spreadsheet
W for hash table in spreadsheet
able for spreadsheet
ect privilege for searched update/delete
on progression monitoring cost threshold
qualifier for applying hintsets
egory qualifier for applying hintsets
ect Capability Table Override
ect Capability Table (testing only)
e of the SQL statement to debug
ompile-time unfolding of sql model forloops

ge version parameter for compatibility issues

atabase archivelog destination text string


n files are created/dropped automatically on standby
use of star transformation

g Advisory control parameter


g parameter
ool maximum size when auto SGA enabled
es of the streams pool
e in bytes of streams pool
pruning cost factor
use of subquery predicates to perform pruning
use of subquery predicates with MVs to perform pruning
pruning reduction factor
able SWRF Metric Frequent Mode Collection
able SWRF MMON DB Feature Usage
able SWRF MMON FLushing
able SWRF MMON Metrics Collection
to enable/disable SWRF
parameter for SWRF
able DB Feature Usage Testing
trace metadata comparisons for synonym repointing
eter for SYSAUX
percent system index caching
m triggers enabled
up prefetch vector size
up prefetch threshold
mated full table scan and index ffs cost by one
h I/O requests for tape devices
max log lag percentage
ime for arhcived version of online log
mode for testing transportable database
blocks for a dimension before we temp transform
s if temp table is created with cache option
nction ksusigskip
ter 1 - integer
eter 2 - string
eter 3 - string
eter 4 - string list
ter 5 - deprecated integer
ter 6 - size (ub8)
parameter - integer
ad to mount
hreshold-based alerts
statistic gathering interval in seconds
nternal timing statistics
ory for allocating large extents
d for duping of TQ statistics (s)
ustom identifier

r sizes per process


r flushes if otrace cacheIO event is set
buffer gets if otrace cacheIO event is set
r busy wait timeouts
T timestamp on trace buffer wrap
ffer creates if otrace cacheIO event is set

ts enabled at startup
blicly accessible trace files
size of trace file (in bytes)
archived by DIAG for these processes
_block reads if otrace cacheIO event is set
ace navigation linking
flush options
long a current pin is held
T tracing in process
ber of concurrent active transactions
active transactions per rollback segment
n auditing records generated in the redo log
er of parallel recovery slaves that may be used
e optimization if set to TRUE
onnect string
SM auto cleanup actions
ging in a tablespace with an incompatible character set
o-pass thread recovery
pass reverse polish alg. to generate canonical forms
large extent size
ast-path statistics for ultrafast latches
o tuning of undo_retention
for undo related operations
do usage functions for testing
uns in SMU mode if TRUE, else in RBU mode
tion in seconds
undo tablespace
eries with GSets into UNIONs for rewrite
nnesting of correlated subqueries
used block compression
ess dump directory
use of column statistics for DDP functions
irect data buffers (very large SGA on 32-bit platforms)
ared Page Tables - ISM
or allocating large extents
ment indexes in explain plan
ee based allocator for PGA memory
use process local seq cache

essible directories list


base to validate result of flashback database
rary search root directory
the redo logs needed for flashback are available
rify consistency of undo quota statistics
_partitioned_table
nc on commit MUST BE ALWAYS TRUE
number of unusable blocks to walk across freelist
hpointing feature turned on?
r window function optimizations
d to size SQL working areas (MANUAL/AUTO)

bytes for logging peeked bind values for V$SQL_PLAN (0 = OFF)


an tracing parameter
lower bound for auto materialization.
behavior for auto materialization
debug output disposition
cube densification
symmetric overfetch

generates WITH clause?


hierarchy value type
ad OLAP API library at server process start
min number of rows required to use rowcache in query materialization
Enable source materialization
metadata reader mode
uses ODBO mode?
optimizes suppressions?
precomputes subqueries?
removes columns for materialization?

output Source definitions to trace file


multi-join non-base hints
non-base hints
enable automatic dimension hints
enable automatic measure hints
dimension hints
enables AW join?
enables AW QDR merge?
generic hints
measure hints
enable optimization
prepare statement cache size
enable remove unused columns optimizations
result set cache size
enable symmetric predicate for dimension groups
top dimension hints
top measure hints
enable bind variables optimization
stringifies order levels?
suppression AW mask threshold
suppression chunk size
uses models?
uses OLAP DML?
uses OLAP DML for rank?
in KB needed for populate/query operation
s platform for pre10 compatible tablespace
platform info during file header read
bles code coverage parameter
bles trace parameter
check whether actses should yield
16KB ASSM Auto
SP2-0267: pagesize option 100000 out of range (0 through 50000)

COUNT(*)
----------

Session altered.

Elapsed: 00:00:00.00

Session altered.

Elapsed: 00:00:00.03

Table created.

Elapsed: 00:00:00.82

Index created.

Elapsed: 00:00:00.01

'CREATINGUMS
------------
CREATING UMS

Table created.

Elapsed: 00:00:00.06

'CREATINGVENDORS
----------------
CREATING VENDORS

Table created.

Elapsed: 00:00:00.09

Table created.

Elapsed: 00:00:00.15

'CREATINGPARTS
--------------
CREATING PARTS

Table created.
Elapsed: 00:00:00.23

Index created.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:00:00.03

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:00:00.01

Table created.

Elapsed: 00:00:00.26

'CREATINGPO_HEADER
------------------
CREATING PO_HEADER

Table created.

Elapsed: 00:00:00.12

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00
Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00

Table created.

Elapsed: 00:00:00.12

'CREATINGPO_LINE
----------------
CREATING PO_LINE

Table created.

Elapsed: 00:00:00.14

Index created.

Elapsed: 00:00:00.03

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:00:00.01

Table created.

Elapsed: 00:00:00.11

Table created.

Elapsed: 00:00:00.01

'INSERTINGINTOLOCATIONS'
------------------------
INSERTING INTO LOCATIONS

Session altered.
Elapsed: 00:00:00.00

2200 rows created.

Elapsed: 00:00:00.31

Execution Plan
----------------------------------------------------------
Plan hash value: 2528327348

-----------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 72 | 4 (0)| 00:00:01 |
| 1 | COUNT | | | | | |
| 2 | NESTED LOOPS | | 1 | 72 | 4 (0)| 00:00:01 |
| 3 | VIEW | | 1 | 36 | 2 (0)| 00:00:01 |
| 4 | COUNT | | | | | |
|* 5 | CONNECT BY WITHOUT FILTERING| | | | | |
| 6 | FAST DUAL | | 1 | | 2 (0)| 00:00:01 |
|* 7 | VIEW | | 1 | 36 | 2 (0)| 00:00:01 |
| 8 | COUNT | | | | | |
|* 9 | CONNECT BY WITHOUT FILTERING| | | | | |
| 10 | FAST DUAL | | 1 | | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

5 - filter(LEVEL<=200)
7 - filter("LOC"."RN">=MOD("WH"."RN",10)*20+1)
9 - filter(LEVEL<=20)

Statistics
----------------------------------------------------------
322 recursive calls
1755 db block gets
163 consistent gets
1 physical reads
861820 redo size
679 bytes sent via SQL*Net to client
1075 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
203 sorts (memory)
0 sorts (disk)
2200 rows processed

Commit complete.
Elapsed: 00:00:00.01

PL/SQL procedure successfully completed.

Elapsed: 00:00:00.95

8 rows created.

Elapsed: 00:00:00.01

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter(LEVEL<=8)

Statistics
----------------------------------------------------------
53 recursive calls
23 db block gets
8 consistent gets
0 physical reads
0 redo size
679 bytes sent via SQL*Net to client
685 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
8 rows processed

Commit complete.

Elapsed: 00:00:00.00

PL/SQL procedure successfully completed.


Elapsed: 00:00:00.03

'INSERTINGINTOVENDORS'
----------------------
INSERTING INTO VENDORS

Session altered.

Elapsed: 00:00:00.00

50000 rows created.

Elapsed: 00:00:04.48

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter(LEVEL<=50000)

Statistics
----------------------------------------------------------
2365 recursive calls
11944 db block gets
2400 consistent gets
0 physical reads
18942216 redo size
680 bytes sent via SQL*Net to client
2073 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
50000 rows processed

'ELIMINATINGDUPV'
-----------------
ELIMINATING DUP V

214 rows deleted.

Elapsed: 00:00:00.21

Execution Plan
----------------------------------------------------------
Plan hash value: 2737996044

----------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time
----------------------------------------------------------------------------------------------
| 0 | DELETE STATEMENT | | 277 | 12188 | | 1557 (1)| 00:00:2
| 1 | DELETE | VENDORS_TEMP | | | | |
|* 2 | HASH JOIN RIGHT SEMI | | 277 | 12188 | | 1557 (1)| 00:00:2
| 3 | VIEW | VW_NSO_1 | 2269 | 49918 | | 1081 (1)| 00:00:1
|* 4 | HASH JOIN | | 2269 | 99836 | 1520K| 1081 (1)| 00:00:1
| 5 | VIEW | | 45379 | 974K| | 478 (2)| 00:00:0
|* 6 | FILTER | | | | | |
| 7 | SORT GROUP BY | | 45379 | 974K| | 478 (2)| 00:00:0
| 8 | TABLE ACCESS FULL| VENDORS_TEMP | 45379 | 974K| | 475 (1)| 00:00:0
| 9 | TABLE ACCESS FULL | VENDORS_TEMP | 45379 | 974K| | 475 (1)| 00:00:0
| 10 | TABLE ACCESS FULL | VENDORS_TEMP | 45379 | 974K| | 475 (1)| 00:00:0
----------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - access("VENDOR_ID"="$nso_col_1" AND "TERMS_NET_DAYS"="$nso_col_2")


4 - access("V"."VENDOR_ID"="M"."VENDOR_ID")
filter("V"."TERMS_NET_DAYS">"M"."TERMS_NET_DAYS")
6 - filter(COUNT(*)>1)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
64 recursive calls
229 db block gets
4560 consistent gets
0 physical reads
141680 redo size
680 bytes sent via SQL*Net to client
945 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
9 sorts (memory)
0 sorts (disk)
214 rows processed

49786 rows created.

Elapsed: 00:00:01.23

Execution Plan
----------------------------------------------------------
Plan hash value: 448063788

----------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 45379 | 43M| 476 (1)| 00:00:07 |
| 1 | TABLE ACCESS FULL| VENDORS_TEMP | 45379 | 43M| 476 (1)| 00:00:07 |
----------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
2077 recursive calls
109783 db block gets
4478 consistent gets
0 physical reads
33003408 redo size
680 bytes sent via SQL*Net to client
584 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
49786 rows processed

Commit complete.

Elapsed: 00:00:00.34

PL/SQL procedure successfully completed.

Elapsed: 00:00:01.14
'INSERTINGINTOPARTS'
--------------------
INSERTING INTO PARTS

Session altered.

Elapsed: 00:00:00.04

100000 rows created.

Elapsed: 00:00:14.03

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter(LEVEL<=100000)

Statistics
----------------------------------------------------------
4005 recursive calls
23681 db block gets
4617 consistent gets
0 physical reads
38076588 redo size
680 bytes sent via SQL*Net to client
3187 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
100000 rows processed

'REMOVINGDUPLICATEPARTS'
------------------------
REMOVING DUPLICATE PARTS
306 rows deleted.

Elapsed: 00:00:00.43

Execution Plan
----------------------------------------------------------
Plan hash value: 201048256

----------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time
----------------------------------------------------------------------------------------------
| 0 | DELETE STATEMENT | | 504 | 30240 | | 3137 (1)| 00:00:44
| 1 | DELETE | PARTS_TEMP | | | | |
|* 2 | HASH JOIN RIGHT SEMI | | 504 | 30240 | | 3137 (1)| 00:00:44
| 3 | VIEW | VW_NSO_1 | 4136 | 121K| | 2188 (1)| 00:00:31
|* 4 | HASH JOIN | | 4136 | 242K| 3408K| 2188 (1)| 00:00:31
| 5 | TABLE ACCESS FULL | PARTS_TEMP | 82716 | 2423K| | 948 (1)| 00:00:14
| 6 | VIEW | | 82716 | 2423K| | 953 (1)| 00:00:14
|* 7 | FILTER | | | | | |
| 8 | SORT GROUP BY | | 82716 | 2423K| | 953 (1)| 00:00:14
| 9 | TABLE ACCESS FULL| PARTS_TEMP | 82716 | 2423K| | 948 (1)| 00:00:14
| 10 | TABLE ACCESS FULL | PARTS_TEMP | 82716 | 2423K| | 948 (1)| 00:00:14
----------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - access("PART_ID"="$nso_col_1" AND "ORDER_POINT"="$nso_col_2")


4 - access("V"."PART_ID"="M"."PART_ID")
filter("V"."ORDER_POINT">"M"."ORDER_POINT")
7 - filter(COUNT(*)>1)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
64 recursive calls
333 db block gets
8340 consistent gets
0 physical reads
259216 redo size
680 bytes sent via SQL*Net to client
909 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
9 sorts (memory)
0 sorts (disk)
306 rows processed

99694 rows created.

Elapsed: 00:00:06.68

Execution Plan
----------------------------------------------------------
Plan hash value: 3663493195

--------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 82716 | 96M| 956 (2)| 00:00:14 |
| 1 | TABLE ACCESS FULL| PARTS_TEMP | 82716 | 96M| 956 (2)| 00:00:14 |
--------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
7388 recursive calls
430352 db block gets
15397 consistent gets
2 physical reads
139580300 redo size
680 bytes sent via SQL*Net to client
580 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
99694 rows processed

99694 rows updated.

Elapsed: 00:03:01.90

Execution Plan
----------------------------------------------------------
Plan hash value: 424025735

---------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 87825 | 2658K| 951 (1)| 00:00:14 |
| 1 | UPDATE | PARTS | | | | |
| 2 | TABLE ACCESS FULL | PARTS | 87825 | 2658K| 951 (1)| 00:00:14 |
|* 3 | VIEW | | 2200 | 68200 | 4 (0)| 00:00:01 |
| 4 | COUNT | | | | | |
| 5 | INDEX FAST FULL SCAN| SYS_C004155 | 2200 | 41800 | 4 (0)| 00:00:01 |
---------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

3 - filter("RN"=MOD(:B1,2000))

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
99 recursive calls
243046 db block gets
1430226 consistent gets
0 physical reads
30262784 redo size
681 bytes sent via SQL*Net to client
798 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
99694 rows processed

66462 rows updated.

Elapsed: 00:00:04.73

Execution Plan
----------------------------------------------------------
Plan hash value: 2752843369

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 58484 | 685K| 952 (1)| 00:00:14 |
| 1 | UPDATE | PARTS | | | | |
| 2 | COUNT | | | | | |
|* 3 | TABLE ACCESS FULL| PARTS | 58484 | 685K| 952 (1)| 00:00:14 |
-----------------------------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------

3 - filter("PURCHASED"='Y')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
806 recursive calls
334790 db block gets
3523 consistent gets
0 physical reads
36363728 redo size
682 bytes sent via SQL*Net to client
687 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
66462 rows processed

Commit complete.

Elapsed: 00:00:00.00

PL/SQL procedure successfully completed.

Elapsed: 00:00:05.70

'INSERTINGINTOPO_HEADER'
------------------------
INSERTING INTO PO_HEADER

Session altered.

Elapsed: 00:00:00.03

500000 rows created.

Elapsed: 00:00:57.25

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter(LEVEL<=500000)

Statistics
----------------------------------------------------------
4732 recursive calls
60178 db block gets
12340 consistent gets
0 physical reads
101922912 redo size
682 bytes sent via SQL*Net to client
2301 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
500000 rows processed

500000 rows created.

Elapsed: 00:00:36.14

Execution Plan
----------------------------------------------------------
Plan hash value: 2716451106

------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
------------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 509K| 473M| 2515 (2)| 00:00:36 |
| 1 | TABLE ACCESS FULL| PO_HEADER_TEMP | 509K| 473M| 2515 (2)| 00:00:36 |
------------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement
Statistics
----------------------------------------------------------
10634 recursive calls
3126101 db block gets
43528 consistent gets
52 physical reads
595290444 redo size
682 bytes sent via SQL*Net to client
588 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
500000 rows processed

Commit complete.

Elapsed: 00:00:00.01

PL/SQL procedure successfully completed.

Elapsed: 00:00:06.28

'INSERTINGINTOPO_LINES'
-----------------------
INSERTING INTO PO_LINES

Session altered.

Elapsed: 00:00:00.01

12205347 rows created.

Elapsed: 00:03:13.82

Execution Plan
----------------------------------------------------------
Plan hash value: 3988977532

----------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time
----------------------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 249 | 19422 | 25 (0)| 00:00:0
| 1 | COUNT | | | | |
| 2 | TABLE ACCESS BY INDEX ROWID | PARTS | 249 | 7221 | 23 (0)| 00:00:0
| 3 | NESTED LOOPS | | 249 | 19422 | 25 (0)| 00:00:0
| 4 | VIEW | | 1 | 49 | 2 (0)| 00:00:0
| 5 | COUNT | | | | |
|* 6 | CONNECT BY WITHOUT FILTERING| | | | |
| 7 | FAST DUAL | | 1 | | 2 (0)| 00:00:0
|* 8 | INDEX RANGE SCAN | IND_PARTS_7 | 449 | | 1 (0)| 00:00:0
----------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

6 - filter(LEVEL<=500000)
8 - access("P"."ORDER_POINT">="START_LINE" AND
"P"."ORDER_POINT"<="START_LINE"+"LINES"-1)

Statistics
----------------------------------------------------------
10581 recursive calls
1073189 db block gets
1769166 consistent gets
108 physical reads
1923408908 redo size
683 bytes sent via SQL*Net to client
1686 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
12205347 rows processed

12205347 rows created.

Elapsed: 01:08:11.78

Execution Plan
----------------------------------------------------------
Plan hash value: 1069489789

----------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 13M| 13G| 47676 (3)| 00:11:08 |
| 1 | TABLE ACCESS FULL| PO_LINE_TEMP | 13M| 13G| 47676 (3)| 00:11:08 |
----------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
106566 recursive calls
124734674 db block gets
909474 consistent gets
166177 physical reads
SP2-0642: SQL*Plus internal error state 1075, context 1:4:4294967295
Unsafe to proceed
683 bytes sent via SQL*Net to client
584 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
12205347 rows processed

Commit complete.

Elapsed: 00:00:00.00

PL/SQL procedure successfully completed.

Elapsed: 00:02:54.90

'UPDATE-ROLLBACKTEST
--------------------
UPDATE-ROLLBACK TEST

Session altered.

Elapsed: 00:00:00.04

3539069 rows updated.

Elapsed: 05:45:30.21

Execution Plan
----------------------------------------------------------
Plan hash value: 2613867723

-----------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 4581K| 52M| 12516 (1)| 00:02:56 |
| 1 | UPDATE | PO_LINE | | | | |
|* 2 | INDEX RANGE SCAN| IND_PO_LINE_3 | 4581K| 52M| 12516 (1)| 00:02:56 |
-----------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------
2 - access("PART_ID">='3000000PART' AND "PART_ID"<='6576035PART')

Statistics
----------------------------------------------------------
2092 recursive calls
115125604 db block gets
92059751 consistent gets
2705378 physical reads
1504368784 redo size
686 bytes sent via SQL*Net to client
632 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
1 sorts (disk)
3539069 rows processed

Rollback complete.

Elapsed: 05:32:18.11

'INSERT-NARROW-TABL
-------------------
INSERT-NARROW-TABLE

Session altered.

Elapsed: 00:00:00.01

900000 rows created.

Elapsed: 00:00:07.12

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------
2 - filter(LEVEL<=900000)

Statistics
----------------------------------------------------------
1416 recursive calls
10454 db block gets
1321 consistent gets
21 physical reads
13762316 redo size
687 bytes sent via SQL*Net to client
615 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
9 sorts (memory)
0 sorts (disk)
900000 rows processed

Commit complete.

Elapsed: 00:00:02.64

STAT_NAME VALUE
------------------------- ----------
consistent gets 96712536
db block gets 256118893
table fetch by rowid 12211025
table fetch continued row 3
table scan blocks gotten 376281
table scan rows gotten 14838624

900000 rows updated.

Elapsed: 00:25:16.75

Execution Plan
----------------------------------------------------------
Plan hash value: 2650735695

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 1 | 26 | 2 (0)| 00:00:01 |
| 1 | UPDATE | NARROW | | | | |
| 2 | TABLE ACCESS FULL| NARROW | 1 | 26 | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1798 recursive calls
400038732 db block gets
1308238 consistent gets
1 physical reads
627119556 redo size
688 bytes sent via SQL*Net to client
597 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
900000 rows processed

STAT_NAME VALUE
------------------------- ----------
consistent gets 98020916
db block gets 656157670
table fetch by rowid 12211029
table fetch continued row 3
table scan blocks gotten 378418
table scan rows gotten 16898180

900000 rows updated.

Elapsed: 00:44:08.42

Execution Plan
----------------------------------------------------------
Plan hash value: 2650735695

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 1 | 26 | 2 (0)| 00:00:01 |
| 1 | UPDATE | NARROW | | | | |
| 2 | TABLE ACCESS FULL| NARROW | 1 | 26 | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
850 recursive calls
735436883 db block gets
1097045 consistent gets
0 physical reads
312503112 redo size
688 bytes sent via SQL*Net to client
589 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
900000 rows processed

900000 rows updated.

Elapsed: 00:11:53.21

Execution Plan
----------------------------------------------------------
Plan hash value: 2650735695

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 1 | 26 | 2 (0)| 00:00:01 |
| 1 | UPDATE | NARROW | | | | |
| 2 | TABLE ACCESS FULL| NARROW | 1 | 26 | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
274 recursive calls
195989191 db block gets
259615 consistent gets
0 physical reads
257410288 redo size
688 bytes sent via SQL*Net to client
559 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
900000 rows processed

STAT_NAME VALUE
------------------------- ----------
consistent gets 99377682
db block gets 1587583804
table fetch by rowid 12211033
table fetch continued row 3
table scan blocks gotten 390950
table scan rows gotten 23099883

C1 C2
---------- ----------
.615661413 .615661413
.694658313 .694658313
.809016947 .809016947
.857167259 .857167259
.933580398 .933580398
.981627168 .981627168
.994521887 .994521887
1 1
...

900000 rows selected.

Elapsed: 00:01:45.35

Execution Plan
----------------------------------------------------------
Plan hash value: 3043013035

----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 26 | 2 (0)| 00:00:01 |
| 1 | TABLE ACCESS FULL| NARROW | 1 | 26 | 2 (0)| 00:00:01 |
----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
2 recursive calls
1 db block gets
63602 consistent gets
0 physical reads
176 redo size
22139480 bytes sent via SQL*Net to client
660370 bytes received via SQL*Net from client
60001 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
900000 rows processed

STAT_NAME VALUE
------------------------- ----------
consistent gets 99441356
db block gets 1587583845
table fetch by rowid 12211037
table fetch continued row 3
table scan blocks gotten 454544
table scan rows gotten 48775982

450000 rows deleted.

Elapsed: 00:00:09.04
Execution Plan
----------------------------------------------------------
Plan hash value: 3059185100

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | DELETE STATEMENT | | 1 | 13 | 2 (0)| 00:00:01 |
| 1 | DELETE | NARROW | | | | |
|* 2 | TABLE ACCESS FULL| NARROW | 1 | 13 | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("C1"<0)

Statistics
----------------------------------------------------------
91 recursive calls
847973 db block gets
3855 consistent gets
0 physical reads
201202816 redo size
690 bytes sent via SQL*Net to client
565 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
450000 rows processed

Commit complete.

Elapsed: 00:00:00.01

'TABLEANDINDEXSTATS'
---------------------
TABLE AND INDEX STATS

PL/SQL procedure successfully completed.

Elapsed: 00:00:01.45

TABLE_NAME NUM_ROWS BLOCKS AVG_ROW_LEN


------------------------------ ---------- ---------- -----------
LOCATIONS 2200 16 81
NARROW 447112 3838 13
PARTS 99694 2515 362
PO_HEADER 506757 6577 162
PO_LINE 12173239 123536 119
UMS 8 5 7
VENDORS 49786 1255 341

TABLE_NAME INDEX_NAME BLEVEL LEAF_BLOCKS DISTINCT_KEYS AVG_LEAF_BLOCKS_PER_KEY AVG_DA


---------- --------------- ---------- ----------- ------------- ----------------------- ------
LOCATIONS IND_LOCATIONS_1 1 5 200 1
LOCATIONS SYS_C004155 1 6 2200 1
PARTS IND_PARTS_1 1 137 1 137
PARTS IND_PARTS_2 1 277 1 277
PARTS IND_PARTS_3 1 151 8 18
PARTS IND_PARTS_4 1 137 1 137
PARTS IND_PARTS_5 1 128 8983 1
PARTS IND_PARTS_6 1 151 8 18
PARTS IND_PARTS_7 1 159 99694 1
PARTS SYS_C004205 1 248 99694 1
PO_HEADER IND_PO_HEADER_1 2 1024 8983 1
PO_HEADER IND_PO_HEADER_2 2 1024 8983 1
PO_HEADER IND_PO_HEADER_3 1 724 1 724
PO_HEADER IND_PO_HEADER_4 1 624 2 312
PO_HEADER SYS_C004260 1 931 500000 1
PO_LINE IND_PO_LINE_1 0 0 0 0
PO_LINE IND_PO_LINE_2 0 0 0 0
PO_LINE IND_PO_LINE_3 2 33070 3545 9
PO_LINE IND_PO_LINE_4 2 31466 3545 8
PO_LINE SYS_C004294 2 49721 11723640 1
UMS SYS_C004159 0 1 8 1
VENDORS SYS_C004165 1 97 49786 1

System altered.

Elapsed: 00:00:04.90

System altered.

Elapsed: 00:00:00.12

Session altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.00
AND POL.PART_ID=P.ID
*
ERROR at line 13:
ORA-00904: "P"."ID": invalid identifier
Elapsed: 00:00:00.17
P.DESCIPTION
*
ERROR at line 14:
ORA-00904: "P"."DESCIPTION": invalid identifier

Elapsed: 00:00:00.01

LOCATIONS
----------

Elapsed: 00:00:00.04

Execution Plan
----------------------------------------------------------
Plan hash value: 3384977531

---------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
---------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 4 (0)| 00:00:01 |
| 1 | SORT AGGREGATE | | 1 | | |
| 2 | INDEX FAST FULL SCAN| IND_LOCATIONS_1 | 2200 | 4 (0)| 00:00:01 |
---------------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
13 consistent gets
10 physical reads
0 redo size
412 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

PRODUCT_CODE PARTS_LARGE_WH
--------------- --------------
FG 23129
INVENTORY 3091
JANITOR 1544
OFFICE 1548
SHOP 1545

Elapsed: 00:00:01.01

Execution Plan
----------------------------------------------------------
Plan hash value: 3005476749

-----------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 5 | 115 | 960 (2)| 00:00:14 |
| 1 | SORT GROUP BY | | 5 | 115 | 960 (2)| 00:00:14 |
|* 2 | HASH JOIN | | 5534 | 124K| 959 (2)| 00:00:14 |
| 3 | VIEW | | 1 | 9 | 5 (20)| 00:00:01 |
|* 4 | FILTER | | | | | |
| 5 | HASH GROUP BY | | 1 | 9 | 5 (20)| 00:00:01 |
| 6 | INDEX FAST FULL SCAN| SYS_C004155 | 2200 | 19800 | 4 (0)| 00:00:01 |
| 7 | TABLE ACCESS FULL | PARTS | 99694 | 1363K| 953 (1)| 00:00:14 |
-----------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - access("W"."WAREHOUSE_ID"="P"."PRIMARY_WHS_ID")
4 - filter(COUNT(*)>160)

Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
2538 consistent gets
2527 physical reads
0 redo size
581 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
5 rows processed

COUNT(*)
----------
Elapsed: 00:00:00.04

Execution Plan
----------------------------------------------------------
Plan hash value: 3298521242

----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 7 | 956 (2)| 00:00:14 |
| 1 | SORT AGGREGATE | | 1 | 7 | | |
|* 2 | TABLE ACCESS FULL| PARTS | 98697 | 674K| 956 (2)| 00:00:14 |
----------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("QTY_ON_HAND">1000)

Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
2525 consistent gets
0 physical reads
0 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

COUNT(*)
----------

Elapsed: 00:00:00.43

Execution Plan
----------------------------------------------------------
Plan hash value: 3333389930

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 7 | 474 (1)| 00:00:07 |
| 1 | SORT AGGREGATE | | 1 | 7 | | |
|* 2 | TABLE ACCESS FULL| VENDORS | 49 | 343 | 474 (1)| 00:00:07 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("ZIPCODE">' 44444')

Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
1263 consistent gets
1256 physical reads
0 redo size
412 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

COUNT(*)
----------

Elapsed: 00:00:00.07

Execution Plan
----------------------------------------------------------
Plan hash value: 3410092070

--------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 21 | 4 (0)| 00:00:01 |
| 1 | SORT AGGREGATE | | 1 | 21 | | |
|* 2 | TABLE ACCESS BY INDEX ROWID| PO_LINE | 27 | 567 | 4 (0)| 00:00:01 |
|* 3 | INDEX RANGE SCAN | SYS_C004294 | 27 | | 3 (0)| 00:00:01 |
--------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("POL"."PART_ID" IS NOT NULL)


3 - access("POL"."PURC_ORDER_ID">='10000' AND "POL"."PURC_ORDER_ID"<='20000')
Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
6 consistent gets
5 physical reads
80 redo size
410 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

PART_ID A PRODUCT_CODE MAX_QTY_PRD_ABC MIN_QTY_PRD_ABC DR_QTY_PRD_AB


------------------------------ - --------------- --------------- --------------- -------------
10000000PART B FG 100000 .001 1382
1000022PART A FG 100000 .002 112
1000209PART A FG 100000 .002 101
1000259PART C FG 100000 0 378
...
9999998PART B FG 100000 .001 220
9999999PART B SHOP 99026.807 3489.554 47

99694 rows selected.

Elapsed: 00:01:24.86

Execution Plan
----------------------------------------------------------
Plan hash value: 2057956106

--------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
--------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 99694 | 3796K| | 2851 (2)| 00:00:40 |
| 1 | SORT ORDER BY | | 99694 | 3796K| 10M| 2851 (2)| 00:00:40 |
| 2 | WINDOW SORT | | 99694 | 3796K| 10M| 2851 (2)| 00:00:40 |
| 3 | WINDOW SORT | | 99694 | 3796K| 10M| 2851 (2)| 00:00:40 |
| 4 | TABLE ACCESS FULL| PARTS | 99694 | 3796K| | 956 (2)| 00:00:14 |
--------------------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
2523 consistent gets
0 physical reads
0 redo size
4109253 bytes sent via SQL*Net to client
73487 bytes received via SQL*Net from client
6648 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
99694 rows processed

VENDOR_ID VENDOR_NAME
--------------- --------------------------------------------------
1000020VEN 382030VENDOR NAME
1000186VEN 773432VENDOR NAME
1001324VEN 864606VENDOR NAME
1001380VEN 580185VENDOR NAME
...
9999995VEN 802822VENDOR NAME
9999997VEN 716062VENDOR NAME

41120 rows selected.

Elapsed: 00:00:56.68

Execution Plan
----------------------------------------------------------
Plan hash value: 1378243240

---------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
---------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 40634 | 1587K| | 120K (2)| 00:28:04 |
| 1 | MERGE JOIN ANTI | | 40634 | 1587K| | 120K (2)| 00:28:04 |
| 2 | SORT JOIN | | 49786 | 1409K| 3920K| 727 (1)| 00:00:11 |
| 3 | TABLE ACCESS FULL | VENDORS | 49786 | 1409K| | 475 (1)| 00:00:07 |
|* 4 | SORT UNIQUE | | 9152 | 98K| | 119K (2)| 00:27:54 |
| 5 | VIEW | | 9152 | 98K| | 119K (2)| 00:27:54 |
| 6 | HASH UNIQUE | | 9152 | 518K| 793M| 119K (2)| 00:27:54 |
|* 7 | HASH JOIN | | 12M| 673M| | 67484 (2)| 00:15:45 |
|* 8 | TABLE ACCESS FULL | PARTS | 19939 | 331K| | 950 (1)| 00:00:14 |
|* 9 | HASH JOIN | | 12M| 475M| 15M| 66456 (1)| 00:15:31 |
| 10 | TABLE ACCESS FULL| PO_HEADER | 506K| 9897K| | 2500 (2)| 00:00:35 |
| 11 | TABLE ACCESS FULL| PO_LINE | 12M| 243M| | 46778 (1)| 00:10:55 |
---------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------
4 - access("V"."VENDOR_ID"="PV"."VENDOR_ID")
filter("V"."VENDOR_ID"="PV"."VENDOR_ID")
7 - access("POL"."PART_ID"="P"."PART_ID")
8 - filter("P"."PRODUCT_CODE"='FG')
9 - access("PO"."PURC_ORDER_ID"="POL"."PURC_ORDER_ID")

Statistics
----------------------------------------------------------
29 recursive calls
0 db block gets
135804 consistent gets
129866 physical reads
152136 redo size
1584681 bytes sent via SQL*Net to client
30532 bytes received via SQL*Net from client
2743 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
41120 rows processed

PART_ID DESCRIPTION
------------------------------ ----------------------------------------
QTY_ON_HAND RANK_PC_QTY AVG_PC_QTY MIN_PC_QTY MAX_PC_QTY COUNT_PC RANK_CC_QTY
AVG_CC_QTY MIN_CC_QTY MAX_CC_QTY COUNT_CC RANK_VENDOR_QTY AVG_VENDOR_QTY
MIN_VENDOR_QTY MAX_VENDOR_QTY COUNT_VENDOR
----------- ----------- ---------- ---------- ---------- ---------- -----------
10000000PART 10000000DESCRIPTION
99939.083 1597 62825.9166 0 99939.083 74768 309
62855.4356 .002 99939.083 13940 1043 62493.765
3489.551 99939.083 32190

1000022PART 1000022DESCRIPTION
17364.487 66930 7573.22913 0 17364.487 74768 12791
7921.08607 .002 17364.487 1452 8 17364.487
17364.487 17364.487 1
...

9999999PART 9999999DESCRIPTION
61566.149 3319 23998.0777 3489.551 61566.149 4983 8228
31959.2693 .001 61566.149 6012 5 32125.3248
3490.111 61566.149 4

99694 rows selected.

Elapsed: 00:03:13.93

Execution Plan
----------------------------------------------------------
Plan hash value: 3734429483

--------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
--------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 99694 | 5841K| | 9084 (1)| 00:02:08 |
| 1 | SORT ORDER BY | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 2 | WINDOW SORT | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 3 | WINDOW SORT | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 4 | WINDOW SORT | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 5 | WINDOW SORT | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 6 | WINDOW SORT | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 7 | WINDOW SORT | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 8 | WINDOW SORT | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 9 | WINDOW SORT | | 99694 | 5841K| 15M| 9084 (1)| 00:02:08 |
| 10 | TABLE ACCESS FULL| PARTS | 99694 | 5841K| | 956 (2)| 00:00:14 |
--------------------------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
2523 consistent gets
0 physical reads
0 redo size
16380898 bytes sent via SQL*Net to client
73487 bytes received via SQL*Net from client
6648 SQL*Net roundtrips to/from client
9 sorts (memory)
0 sorts (disk)
99694 rows processed

PRODUCT_CODE UNIT_PRICE UNIT_PRICE UNIT_PRICE UNIT_PRICE UNIT_PRICE


--------------- ---------- ---------- ---------- ---------- ----------
FG 73661 73661 73661 73661 73661
INVENTORY 9971 9971 9971 9971 9971
JANITOR 4984 4984 4984 4984 4984
OFFICE 4991 4991 4991 4991 4991
SHOP 4984 4984 4984 4984 4984

Elapsed: 00:00:00.14

Execution Plan
----------------------------------------------------------
Plan hash value: 815198312
----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 5 | 60 | 961 (2)| 00:00:14 |
| 1 | SORT GROUP BY | | 5 | 60 | 961 (2)| 00:00:14 |
| 2 | TABLE ACCESS FULL| PARTS | 99694 | 1168K| 956 (2)| 00:00:14 |
----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
2523 consistent gets
0 physical reads
0 redo size
901 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
5 rows processed

PO.ID=POL.PURC_ORDER_ID
*
ERROR at line 25:
ORA-00904: "PO"."ID": invalid identifier

Elapsed: 00:00:00.00

'FINISHE
--------
FINISHED

Start, End Time, Elapsed Hours

********************************************************************************
DELETE FROM
VENDORS_TEMP
WHERE
(VENDOR_ID,TERMS_NET_DAYS) IN
(SELECT
V.VENDOR_ID,
V.TERMS_NET_DAYS
FROM
VENDORS_TEMP V,
(SELECT
VENDOR_ID,
MIN(TERMS_NET_DAYS) TERMS_NET_DAYS
FROM
VENDORS_TEMP
GROUP BY
VENDOR_ID
HAVING
COUNT(*)>1) M
WHERE
V.VENDOR_ID=M.VENDOR_ID
AND V.TERMS_NET_DAYS>M.TERMS_NET_DAYS)

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.02 0 12 0 0
Execute 1 0.17 0.16 0 3783 228 214
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.17 0.19 0 3795 228 214

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 DELETE VENDORS_TEMP (cr=3783 pr=0 pw=0 time=168920 us)
214 HASH JOIN RIGHT SEMI (cr=3783 pr=0 pw=0 time=279592 us)
214 VIEW VW_NSO_1 (cr=2522 pr=0 pw=0 time=242250 us)
214 HASH JOIN (cr=2522 pr=0 pw=0 time=242035 us)
135 VIEW (cr=1261 pr=0 pw=0 time=1696875 us)
135 FILTER (cr=1261 pr=0 pw=0 time=1696739 us)
49786 SORT GROUP BY (cr=1261 pr=0 pw=0 time=136242 us)
50000 TABLE ACCESS FULL VENDORS_TEMP (cr=1261 pr=0 pw=0 time=50055 us)
50000 TABLE ACCESS FULL VENDORS_TEMP (cr=1261 pr=0 pw=0 time=50 us)
50000 TABLE ACCESS FULL VENDORS_TEMP (cr=1261 pr=0 pw=0 time=48 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
VENDORS
SELECT
*
FROM
VENDORS_TEMP

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 1 0 0
Execute 1 1.00 1.20 0 3880 109687 49786
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 1.00 1.20 0 3881 109687 49786

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
49786 TABLE ACCESS FULL VENDORS_TEMP (cr=1261 pr=0 pw=0 time=49833 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log file switch completion 3 0.08 0.12
log buffer space 1 0.06 0.06
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

DELETE FROM
PARTS_TEMP
WHERE
(PART_ID,ORDER_POINT) IN
(SELECT
V.PART_ID,
V.ORDER_POINT
FROM
PARTS_TEMP V,
(SELECT
PART_ID,
MIN(ORDER_POINT) ORDER_POINT
FROM
PARTS_TEMP
GROUP BY
PART_ID
HAVING
COUNT(*)>1) M
WHERE
V.PART_ID=M.PART_ID
AND V.ORDER_POINT>M.ORDER_POINT)

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 12 0 0
Execute 1 0.39 0.39 0 7569 332 306
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.40 0.40 0 7581 332 306

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 DELETE PARTS_TEMP (cr=7569 pr=0 pw=0 time=394714 us)
306 HASH JOIN RIGHT SEMI (cr=7569 pr=0 pw=0 time=370338 us)
306 VIEW VW_NSO_1 (cr=5046 pr=0 pw=0 time=279681 us)
306 HASH JOIN (cr=5046 pr=0 pw=0 time=279373 us)
100000 TABLE ACCESS FULL PARTS_TEMP (cr=2523 pr=0 pw=0 time=43 us)
193 VIEW (cr=2523 pr=0 pw=0 time=5003674 us)
193 FILTER (cr=2523 pr=0 pw=0 time=5003286 us)
99694 SORT GROUP BY (cr=2523 pr=0 pw=0 time=310079 us)
100000 TABLE ACCESS FULL PARTS_TEMP (cr=2523 pr=0 pw=0 time=100056 us)
100000 TABLE ACCESS FULL PARTS_TEMP (cr=2523 pr=0 pw=0 time=62 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
PARTS
SELECT
*
FROM
PARTS_TEMP

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 1 0 0
Execute 1 5.31 6.57 2 13417 430014 99694
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 5.31 6.57 2 13418 430014 99694
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
99694 TABLE ACCESS FULL PARTS_TEMP (cr=2523 pr=0 pw=0 time=99755 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log buffer space 5 0.47 1.19
db file sequential read 2 0.03 0.03
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
PARTS P
SET
(PRIMARY_WHS_ID,PRIMARY_LOC_ID)=(
SELECT
WAREHOUSE_ID,
LOCATION_ID
FROM
(SELECT
WAREHOUSE_ID,
LOCATION_ID,
ROWNUM RN
FROM
LOCATIONS)
WHERE
MOD(P.ORDER_POINT,2000)=RN)

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 1 0 0
Execute 1 181.84 181.88 0 1430092 243045 99694
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 181.85 181.88 0 1430093 243045 99694

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE PARTS (cr=1301098 pr=0 pw=0 time=166113123 us)
209293 TABLE ACCESS FULL PARTS (cr=5298 pr=0 pw=0 time=209419 us)
109546 VIEW (cr=1424787 pr=0 pw=0 time=178733219 us)
241117800 COUNT (cr=1424787 pr=0 pw=0 time=242636466 us)
241117800 INDEX FAST FULL SCAN SYS_C004155 (cr=1424787 pr=0 pw=0 time=1360603 us)(object i

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
PARTS
SET
PREF_VENDOR_ID=TRIM(TO_CHAR(ABS(ROUND(COS((MOD(ROWNUM,9000)*2+1)*3.14159265/180*51.491976)*1
WHERE
PURCHASED='Y'

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 1 0 0
Execute 1 4.67 4.71 0 3232 334758 66462
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 4.68 4.71 0 3233 334758 66462

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE PARTS (cr=3454 pr=0 pw=0 time=4724589 us)
66462 COUNT (cr=2523 pr=0 pw=0 time=199437 us)
66462 TABLE ACCESS FULL PARTS (cr=2523 pr=0 pw=0 time=133508 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
PO_HEADER
SELECT
*
FROM
PO_HEADER_TEMP

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 1 0 0
Execute 1 25.43 35.97 52 40417 3125664 500000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 25.45 35.98 52 40418 3125664 500000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
500000 TABLE ACCESS FULL PO_HEADER_TEMP (cr=6588 pr=52 pw=0 time=1000053 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log buffer space 23 0.97 6.34
log file switch completion 3 0.06 0.08
db file scattered read 5 1.35 1.98
db file sequential read 1 1.11 1.11
log file sync 1 0.00 0.00
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
PO_LINE
SELECT
*
FROM
PO_LINE_TEMP

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 1 0 0
Execute 1 658.75 1209.04 165432 909034 124734673 12205347
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 658.75 1209.04 165432 909035 124734673 12205347

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30
Rows Row Source Operation
------- ---------------------------------------------------
12205347 TABLE ACCESS FULL PO_LINE_TEMP (cr=123311 pr=123288 pw=0 time=341763816 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file scattered read 1950 8.14 366.26
db file sequential read 42586 8.22 2393.84
log buffer space 21 0.98 4.33
log file switch completion 54 0.98 4.28
rdbms ipc reply 1553 1.99 9.77
control file sequential read 3504 6.54 82.98
Data file init write 9168 9.75 234.17
db file single write 219 0.03 0.22
control file parallel write 657 1.17 2.51
enq: CF - contention 2 0.00 0.00
buffer busy waits 1 0.07 0.07
log file sync 1 0.00 0.00
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
NARROW
SELECT
ROWNUM,
NULL
FROM
DUAL
CONNECT BY
LEVEL<=900000

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 0 0 0
Execute 1 1.57 6.90 6 975 10406 900000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 1.59 6.91 6 975 10406 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
900000 COUNT (cr=0 pr=0 pw=0 time=1800031 us)
900000 CONNECT BY WITHOUT FILTERING (cr=0 pr=0 pw=0 time=905640 us)
1 FAST DUAL (cr=0 pr=0 pw=0 time=2 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file sequential read 6 0.02 0.05
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
NARROW
SET
C1=ROUND(SIN(C1*3.14159265/180),2),
C2=C1

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 1490.17 1516.72 1 1307673 400038672 900000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 1490.17 1516.72 1 1307673 400038672 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE NARROW (cr=1184222 pr=0 pw=0 time=362121409 us)
1929756 TABLE ACCESS FULL NARROW (cr=68552 pr=0 pw=0 time=3859644 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log buffer space 15 0.99 12.61
db file sequential read 1 0.01 0.01
log file switch completion 2 0.03 0.04
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
NARROW
SET
C1=ROUND(SIN(C2*3.14159265/180),10)

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 0 0 0
Execute 1 2645.95 2430.93 0 1096804 735436849 900000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 2645.96 2430.93 0 1096804 735436849 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE NARROW (cr=1067053 pr=0 pw=0 time=2008118842 us)
1814605 TABLE ACCESS FULL NARROW (cr=17487 pr=0 pw=0 time=3629342 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log file switch completion 2 0.22 0.25
log buffer space 1 0.06 0.06
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
NARROW
SET
C2=C1

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 712.59 713.20 0 259527 195989183 900000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 712.59 713.20 0 259527 195989183 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE NARROW (cr=225235 pr=0 pw=0 time=608439794 us)
1830776 TABLE ACCESS FULL NARROW (cr=29461 pr=0 pw=0 time=1830917 us)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

SELECT
*
FROM
NARROW

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 60001 2.79 2.66 0 63602 1 900000
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 60003 2.79 2.66 0 63602 1 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
900000 TABLE ACCESS FULL NARROW (cr=63602 pr=0 pw=0 time=900715 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 60001 0.00 0.07
SQL*Net message from client 60001 0.01 98.02
********************************************************************************

SELECT
COUNT(*) LOCATIONS
FROM
LOCATIONS

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.03 10 13 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.00 0.03 10 13 0 1
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=13 pr=10 pw=0 time=37709 us)
2200 INDEX FAST FULL SCAN IND_LOCATIONS_1 (cr=13 pr=10 pw=0 time=17859 us)(object id 1176

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 1 0.01 0.01
db file scattered read 2 0.01 0.02
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
PRODUCT_CODE,
COUNT(*) PARTS_LARGE_WH
FROM
(SELECT
WAREHOUSE_ID
FROM
LOCATIONS
GROUP BY
WAREHOUSE_ID
HAVING
COUNT(*)>160) W,
PARTS P
WHERE
W.WAREHOUSE_ID=P.PRIMARY_WHS_ID
GROUP BY
PRODUCT_CODE
ORDER BY
PRODUCT_CODE

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.07 1.01 2526 2536 0 5
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.07 1.01 2526 2536 0 5

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
5 SORT GROUP BY (cr=2536 pr=2526 pw=0 time=1012768 us)
30857 HASH JOIN (cr=2536 pr=2526 pw=0 time=101722 us)
4 VIEW (cr=13 pr=10 pw=0 time=25755 us)
4 FILTER (cr=13 pr=10 pw=0 time=25745 us)
20 HASH GROUP BY (cr=13 pr=10 pw=0 time=25766 us)
2200 INDEX FAST FULL SCAN SYS_C004155 (cr=13 pr=10 pw=0 time=23175 us)(object id 1176
99694 TABLE ACCESS FULL PARTS (cr=2523 pr=2516 pw=0 time=13621 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 2 0.01 0.01
db file scattered read 56 0.03 0.88
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
COUNT(*)
FROM
PARTS
WHERE
QTY_ON_HAND>1000

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.04 0.03 0 2523 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.04 0.04 0 2523 0 1

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=2523 pr=0 pw=0 time=38765 us)
98586 TABLE ACCESS FULL PARTS (cr=2523 pr=0 pw=0 time=98622 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
COUNT(*)
FROM
VENDORS
WHERE
ZIPCODE>' 44444'

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.06 0.42 1256 1261 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.06 0.42 1256 1261 0 1

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=1261 pr=1256 pw=0 time=426189 us)
5528 TABLE ACCESS FULL VENDORS (cr=1261 pr=1256 pw=0 time=374832 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 1 0.02 0.02
db file scattered read 34 0.03 0.36
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
COUNT(*)
FROM
PO_LINE POL,
PARTS P
WHERE
POL.PURC_ORDER_ID BETWEEN '10000' AND '20000'
AND POL.PART_ID=P.PART_ID

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.04 4 4 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.00 0.05 4 4 0 1

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=4 pr=4 pw=0 time=47780 us)
0 TABLE ACCESS BY INDEX ROWID PO_LINE (cr=4 pr=4 pw=0 time=47764 us)
0 INDEX RANGE SCAN SYS_C004294 (cr=4 pr=4 pw=0 time=47759 us)(object id 11792)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 4 0.01 0.04
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
PART_ID,
ABC_CODE,
PRODUCT_CODE,
MAX(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE,ABC_CODE) MAX_QTY_PRD_ABC,
MIN(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE,ABC_CODE) MIN_QTY_PRD_ABC,
DENSE_RANK() OVER (PARTITION BY PRODUCT_CODE,ABC_CODE ORDER BY QTY_ON_HAND) DR_QTY_PRD_ABC,
DENSE_RANK() OVER (PARTITION BY PREF_VENDOR_ID ORDER BY ORDER_POINT) DR_OP_VEND
FROM
PARTS
ORDER BY
PART_ID

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 6648 1.03 0.92 0 2523 0 99694
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 6650 1.03 0.93 0 2523 0 99694

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
99694 SORT ORDER BY (cr=2523 pr=0 pw=0 time=655968 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=488492 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=318390 us)
99694 TABLE ACCESS FULL PARTS (cr=2523 pr=0 pw=0 time=99731 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 6648 0.00 0.00
SQL*Net message from client 6648 0.05 83.33
********************************************************************************

SELECT
V.VENDOR_ID,
V.VENDOR_NAME
FROM
VENDORS V,
(SELECT DISTINCT
PO.VENDOR_ID
FROM
PO_HEADER PO,
PO_LINE POL,
PARTS P
WHERE
PO.PURC_ORDER_ID=POL.PURC_ORDER_ID
AND POL.PART_ID=P.PART_ID
AND P.PRODUCT_CODE='FG') PV
WHERE
V.VENDOR_ID=PV.VENDOR_ID(+)
AND PV.VENDOR_ID IS NULL
ORDER BY
V.VENDOR_ID

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2743 18.96 51.02 129866 135796 0 41120
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2745 18.96 51.03 129866 135796 0 41120

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
41120 MERGE JOIN ANTI (cr=135796 pr=129866 pw=0 time=50942331 us)
49786 SORT JOIN (cr=1261 pr=0 pw=0 time=89630 us)
49786 TABLE ACCESS FULL VENDORS (cr=1261 pr=0 pw=0 time=41 us)
8666 SORT UNIQUE (cr=134535 pr=129866 pw=0 time=50831542 us)
8666 VIEW (cr=134535 pr=129866 pw=0 time=50736668 us)
8666 HASH UNIQUE (cr=134535 pr=129866 pw=0 time=50727999 us)
9176048 HASH JOIN (cr=134535 pr=129866 pw=0 time=57253025 us)
74768 TABLE ACCESS FULL PARTS (cr=2523 pr=0 pw=0 time=74807 us)
12205347 HASH JOIN (cr=132012 pr=129866 pw=0 time=63167765 us)
500000 TABLE ACCESS FULL PO_HEADER (cr=8701 pr=6578 pw=0 time=16010980 us)
12205347 TABLE ACCESS FULL PO_LINE (cr=123311 pr=123288 pw=0 time=24427060 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2743 0.00 0.00
db file sequential read 5 0.01 0.05
db file scattered read 2068 0.04 31.97
SQL*Net message from client 2743 0.01 5.42
********************************************************************************

SELECT
PART_ID,
DESCRIPTION,
QTY_ON_HAND,
RANK() OVER (PARTITION BY PRODUCT_CODE ORDER BY QTY_ON_HAND DESC NULLS LAST) RANK_PC_QTY,
AVG(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE ORDER BY QTY_ON_HAND) AVG_PC_QTY,
MIN(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE ORDER BY QTY_ON_HAND) MIN_PC_QTY,
MAX(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE ORDER BY QTY_ON_HAND) MAX_PC_QTY,
COUNT(UNIT_MATERIAL_COST) OVER (PARTITION BY PRODUCT_CODE ORDER BY UNIT_MATERIAL_COST) COUNT
RANK() OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND DESC NULLS LAST) RANK_CC_QTY,
AVG(QTY_ON_HAND) OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND) AVG_CC_QTY,
MIN(QTY_ON_HAND) OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND) MIN_CC_QTY,
MAX(QTY_ON_HAND) OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND) MAX_CC_QTY,
COUNT(QTY_ON_HAND) OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND) COUNT_CC,
RANK() OVER (PARTITION BY NVL(PREF_VENDOR_ID,'IN_HOUSE_FAB') ORDER BY QTY_ON_HAND DESC NULLS
AVG(QTY_ON_HAND) OVER (PARTITION BY NVL(PREF_VENDOR_ID,'IN_HOUSE_FAB') ORDER BY QTY_ON_HAND)
MIN(QTY_ON_HAND) OVER (PARTITION BY NVL(PREF_VENDOR_ID,'IN_HOUSE_FAB') ORDER BY QTY_ON_HAND)
MAX(QTY_ON_HAND) OVER (PARTITION BY NVL(PREF_VENDOR_ID,'IN_HOUSE_FAB') ORDER BY QTY_ON_HAND)
COUNT(QTY_ON_HAND) OVER (PARTITION BY PREF_VENDOR_ID ORDER BY QTY_ON_HAND) COUNT_VENDOR
FROM
PARTS
ORDER BY
PART_ID

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 6648 4.26 4.26 0 2523 0 99694
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 6650 4.26 4.26 0 2523 0 99694

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
99694 SORT ORDER BY (cr=2523 pr=0 pw=0 time=3409999 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=3105023 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=2843444 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=2195031 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=1841531 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=1547025 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=993068 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=783291 us)
99694 WINDOW SORT (cr=2523 pr=0 pw=0 time=315780 us)
99694 TABLE ACCESS FULL PARTS (cr=2523 pr=0 pw=0 time=99738 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 6648 0.00 0.01
SQL*Net message from client 6648 0.05 188.91
SQL*Net more data to client 6646 0.00 0.17
********************************************************************************

SELECT
PRODUCT_CODE,
RANK(1) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE,
RANK(2) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE,
RANK(3) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE,
RANK(4) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE,
RANK(5) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE
FROM
PARTS
GROUP BY
PRODUCT_CODE
ORDER BY
PRODUCT_CODE

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.14 0.13 0 2523 0 5
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.14 0.13 0 2523 0 5
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
5 SORT GROUP BY (cr=2523 pr=0 pw=0 time=138414 us)
99694 TABLE ACCESS FULL PARTS (cr=2523 pr=0 pw=0 time=99730 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
SQL*Net message from client 2 0.00 0.00
********************************************************************************

Final Update on Table NARROW


PARSING IN CURSOR #37 len=27 dep=0 uid=30 oct=6 lid=30 tim=2430976042 hv=1018754752 ad='4dcbeb
UPDATE
NARROW
SET
C2=C1
END OF STMT
PARSE #37:c=0,e=624,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=2430976038
*** 2008-06-17 09:35:27.093
=====================
PARSING IN CURSOR #40 len=36 dep=1 uid=0 oct=3 lid=0 tim=2506696444 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #40:c=0,e=20,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2506696439
EXEC #40:c=0,e=31,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2506696629
FETCH #40:c=0,e=35,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=2506696692
FETCH #40:c=0,e=4,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2506696723
STAT #40 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=33 us)
=====================
PARSING IN CURSOR #39 len=103 dep=1 uid=0 oct=6 lid=0 tim=2506696979 hv=3840466760 ad='51101a3
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #39:c=0,e=16,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2506696976
EXEC #39:c=0,e=172,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=2506697272
STAT #39 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=144 us)'
STAT #39 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=45 u
STAT #39 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=12 u
=====================
PARSING IN CURSOR #43 len=296 dep=1 uid=0 oct=6 lid=0 tim=2506697418 hv=2379717279 ad='5110e95
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #43:c=0,e=14,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2506697416
EXEC #43:c=0,e=262,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=2506697827
STAT #43 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=238 us)'
STAT #43 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=118
STAT #43 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
*** 2008-06-17 09:35:54.718
=====================
PARSING IN CURSOR #40 len=36 dep=1 uid=0 oct=3 lid=0 tim=2534321974 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #40:c=0,e=20,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2534321969
EXEC #40:c=0,e=33,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2534322164
FETCH #40:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=2534322226
FETCH #40:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=2534322258
STAT #40 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=32 us)
*** 2008-06-17 09:40:04.000
=====================
PARSING IN CURSOR #39 len=36 dep=1 uid=0 oct=3 lid=0 tim=2783597280 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #39:c=0,e=20,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2783597275
EXEC #39:c=0,e=33,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2783597470
FETCH #39:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=2783597531
FETCH #39:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=2783597563
STAT #39 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=30 us)
*** 2008-06-17 09:40:33.343
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=2812937500 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=21,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2812937496
EXEC #43:c=0,e=31,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2812937688
FETCH #43:c=0,e=34,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=2812937750
FETCH #43:c=0,e=3,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2812937780
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=33 us)
=====================
PARSING IN CURSOR #40 len=103 dep=1 uid=0 oct=6 lid=0 tim=2812938030 hv=3840466760 ad='51101a3
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #40:c=0,e=16,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2812938027
EXEC #40:c=0,e=164,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=2812938312
STAT #40 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=135 us)'
STAT #40 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=42 u
STAT #40 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=11 u
=====================
PARSING IN CURSOR #39 len=296 dep=1 uid=0 oct=6 lid=0 tim=2812938456 hv=2379717279 ad='5110e95
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #39:c=0,e=13,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=2812938453
EXEC #39:c=0,e=259,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=2812938853
STAT #39 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=235 us)'
STAT #39 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=117
STAT #39 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
*** 2008-06-17 09:43:58.953
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=3018555386 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=20,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018555381
EXEC #43:c=0,e=31,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018555582
FETCH #43:c=0,e=35,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3018555645
FETCH #43:c=0,e=3,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018555675
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=34 us)
=====================
PARSING IN CURSOR #40 len=103 dep=1 uid=0 oct=6 lid=0 tim=3018555926 hv=3840466760 ad='51101a3
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #40:c=0,e=16,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018555923
EXEC #40:c=0,e=162,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=3018556207
STAT #40 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=132 us)'
STAT #40 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=43 u
STAT #40 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=10 u
=====================
PARSING IN CURSOR #39 len=296 dep=1 uid=0 oct=6 lid=0 tim=3018556352 hv=2379717279 ad='5110e95
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #39:c=0,e=13,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018556349
EXEC #39:c=15625,e=261,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=3018556755
STAT #39 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=237 us)'
STAT #39 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=118
STAT #39 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=3018570556 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=20,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018570551
EXEC #43:c=0,e=31,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018570717
FETCH #43:c=0,e=34,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3018570779
FETCH #43:c=0,e=3,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018570809
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #40 len=103 dep=1 uid=0 oct=6 lid=0 tim=3018571058 hv=3840466760 ad='51101a3
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #40:c=0,e=15,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018571055
EXEC #40:c=0,e=162,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=3018571336
STAT #40 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=132 us)'
STAT #40 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=44 u
STAT #40 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=10 u
=====================
PARSING IN CURSOR #39 len=296 dep=1 uid=0 oct=6 lid=0 tim=3018571481 hv=2379717279 ad='5110e95
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #39:c=0,e=14,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3018571479
EXEC #39:c=0,e=255,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=3018571874
STAT #39 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=233 us)'
STAT #39 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=119
STAT #39 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
*** 2008-06-17 09:44:21.343
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=3040940194 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=20,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3040940189
EXEC #43:c=0,e=34,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3040940382
FETCH #43:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3040940444
FETCH #43:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3040940476
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=31 us)
*** 2008-06-17 09:45:54.578
=====================
PARSING IN CURSOR #40 len=36 dep=1 uid=0 oct=3 lid=0 tim=3134173828 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #40:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3134173823
EXEC #40:c=0,e=36,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3134174026
FETCH #40:c=0,e=32,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3134174087
FETCH #40:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3134174120
STAT #40 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=31 us)
=====================
PARSING IN CURSOR #39 len=36 dep=1 uid=0 oct=3 lid=0 tim=3135573898 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #39:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3135573893
EXEC #39:c=0,e=34,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3135574076
FETCH #39:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3135574138
FETCH #39:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3135574171
STAT #39 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=3136943437 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3136943431
EXEC #43:c=0,e=36,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3136943620
FETCH #43:c=0,e=32,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3136943681
FETCH #43:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3136943714
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=31 us)
=====================
PARSING IN CURSOR #40 len=36 dep=1 uid=0 oct=3 lid=0 tim=3138297266 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #40:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3138297260
EXEC #40:c=0,e=36,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3138297448
FETCH #40:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3138297510
FETCH #40:c=0,e=5,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3138297542
STAT #40 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #39 len=36 dep=1 uid=0 oct=3 lid=0 tim=3139714129 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #39:c=0,e=24,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3139714124
EXEC #39:c=0,e=35,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3139714307
FETCH #39:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3139714370
FETCH #39:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3139714403
STAT #39 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=3141072225 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=22,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3141072221
EXEC #43:c=0,e=34,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3141072398
FETCH #43:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3141072459
FETCH #43:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3141072492
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=31 us)
=====================
PARSING IN CURSOR #40 len=36 dep=1 uid=0 oct=3 lid=0 tim=3142493064 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #40:c=0,e=24,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3142493059
EXEC #40:c=0,e=40,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3142493380
FETCH #40:c=0,e=35,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3142493445
FETCH #40:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3142493479
STAT #40 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=35 us)
=====================
PARSING IN CURSOR #39 len=36 dep=1 uid=0 oct=3 lid=0 tim=3143849784 hv=1570213724 ad='51f7d2d0
select file# from file$ where ts#=:1
END OF STMT
PARSE #39:c=0,e=21,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3143849779
EXEC #39:c=0,e=35,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3143849960
FETCH #39:c=0,e=32,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3143850020
FETCH #39:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=3143850053
STAT #39 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=30 us)
*** 2008-06-17 09:46:04.593
EXEC #37:c=712609375,e=713210431,p=0,cr=259615,cu=195989191,mis=0,r=900000,dep=0,og=1,tim=3144
WAIT #37: nam='SQL*Net message to client' ela= 3 driver id=1413697536 #bytes=1 p3=0 obj#=8716
WAIT #37: nam='SQL*Net message from client' ela= 495 driver id=1413697536 #bytes=1 p3=0 obj#=8
Final Update of Table NARROW - Timing
Cursor 37 Ver 126 Parse at -690.471048 (0.001835)
Statement Depth 0 (Application Code)
UPDATE
NARROW
SET
C2=C1

Cursor 37 Ver 126 Parse at -690.471052 (Parse to Parse -0.000004),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 40 Ver 132 Parse at -614.750646 (75.720402)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 40 Ver 132 Parse at -614.750651 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 40 Ver 132 Execute at -614.750461 (Parse to Exec 0.000185),CPU Time 0.000000,Elapsed
Cursor 40 Ver 132 Fetch at -614.750398 (Parse to Fetch 0.000248),CPU Time 0.000000,Elapsed
Cursor 40 Ver 132 Fetch at -614.750367 (Parse to Fetch 0.000279),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 39 Ver 93 Parse at -614.750111 (0.000535)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and

Cursor 39 Ver 93 Parse at -614.750114 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed


Cursor 39 Ver 93 Execute at -614.749818 (Parse to Exec 0.000293),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 67 Parse at -614.749672 (0.000439)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user

Cursor 43 Ver 67 Parse at -614.749674 (Parse to Parse -0.000002),CPU Time 0.000000,Elapsed


Cursor 43 Ver 67 Execute at -614.749263 (Parse to Exec 0.000409),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 40 Ver 133 Parse at -587.125116 (27.624556)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 40 Ver 133 Parse at -587.125121 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 40 Ver 133 Execute at -587.124926 (Parse to Exec 0.000190),CPU Time 0.000000,Elapsed
Cursor 40 Ver 133 Fetch at -587.124864 (Parse to Fetch 0.000252),CPU Time 0.000000,Elapsed
Cursor 40 Ver 133 Fetch at -587.124832 (Parse to Fetch 0.000284),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 39 Ver 94 Parse at -337.849810 (249.275306)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 39 Ver 94 Parse at -337.849815 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed


Cursor 39 Ver 94 Execute at -337.849620 (Parse to Exec 0.000190),CPU Time 0.000000,Elapsed
Cursor 39 Ver 94 Fetch at -337.849559 (Parse to Fetch 0.000251),CPU Time 0.000000,Elapsed
Cursor 39 Ver 94 Fetch at -337.849527 (Parse to Fetch 0.000283),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 68 Parse at -308.509590 (29.340220)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 68 Parse at -308.509594 (Parse to Parse -0.000004),CPU Time 0.000000,Elapsed


Cursor 43 Ver 68 Execute at -308.509402 (Parse to Exec 0.000188),CPU Time 0.000000,Elapsed
Cursor 43 Ver 68 Fetch at -308.509340 (Parse to Fetch 0.000250),CPU Time 0.000000,Elapsed
Cursor 43 Ver 68 Fetch at -308.509310 (Parse to Fetch 0.000280),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 40 Ver 134 Parse at -308.509060 (0.000530)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and

Cursor 40 Ver 134 Parse at -308.509063 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed
Cursor 40 Ver 134 Execute at -308.508778 (Parse to Exec 0.000282),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 39 Ver 95 Parse at -308.508634 (0.000426)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user

Cursor 39 Ver 95 Parse at -308.508637 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed


Cursor 39 Ver 95 Execute at -308.508237 (Parse to Exec 0.000397),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 69 Parse at -102.891704 (205.616930)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 69 Parse at -102.891709 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed


Cursor 43 Ver 69 Execute at -102.891508 (Parse to Exec 0.000196),CPU Time 0.000000,Elapsed
Cursor 43 Ver 69 Fetch at -102.891445 (Parse to Fetch 0.000259),CPU Time 0.000000,Elapsed
Cursor 43 Ver 69 Fetch at -102.891415 (Parse to Fetch 0.000289),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 40 Ver 135 Parse at -102.891164 (0.000540)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and

Cursor 40 Ver 135 Parse at -102.891167 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed
Cursor 40 Ver 135 Execute at -102.890883 (Parse to Exec 0.000281),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 39 Ver 96 Parse at -102.890738 (0.000426)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user

Cursor 39 Ver 96 Parse at -102.890741 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed


Cursor 39 Ver 96 Execute at -102.890335 (Parse to Exec 0.000403),CPU Time 0.015625,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 70 Parse at -102.876534 (0.014204)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 70 Parse at -102.876539 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed


Cursor 43 Ver 70 Execute at -102.876373 (Parse to Exec 0.000161),CPU Time 0.000000,Elapsed
Cursor 43 Ver 70 Fetch at -102.876311 (Parse to Fetch 0.000223),CPU Time 0.000000,Elapsed
Cursor 43 Ver 70 Fetch at -102.876281 (Parse to Fetch 0.000253),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 40 Ver 136 Parse at -102.876032 (0.000502)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and

Cursor 40 Ver 136 Parse at -102.876035 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed
Cursor 40 Ver 136 Execute at -102.875754 (Parse to Exec 0.000278),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 39 Ver 97 Parse at -102.875609 (0.000423)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user

Cursor 39 Ver 97 Parse at -102.875611 (Parse to Parse -0.000002),CPU Time 0.000000,Elapsed


Cursor 39 Ver 97 Execute at -102.875216 (Parse to Exec 0.000393),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 71 Parse at -80.506896 (22.368713)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 71 Parse at -80.506901 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed T


Cursor 43 Ver 71 Execute at -80.506708 (Parse to Exec 0.000188),CPU Time 0.000000,Elapsed T
Cursor 43 Ver 71 Fetch at -80.506646 (Parse to Fetch 0.000250),CPU Time 0.000000,Elapsed T
Cursor 43 Ver 71 Fetch at -80.506614 (Parse to Fetch 0.000282),CPU Time 0.000000,Elapsed T
----------------------------------------------------------------------------------
Cursor 40 Ver 137 Parse at 12.726738 (93.233634)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 40 Ver 137 Parse at 12.726733 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 137 Execute at 12.726936 (Parse to Exec 0.000198),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 137 Fetch at 12.726997 (Parse to Fetch 0.000259),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 137 Fetch at 12.727030 (Parse to Fetch 0.000292),CPU Time 0.000000,Elapsed T
----------------------------------------------------------------------------------
Cursor 39 Ver 98 Parse at 14.126808 (1.400070)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 39 Ver 98 Parse at 14.126803 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed Ti


Cursor 39 Ver 98 Execute at 14.126986 (Parse to Exec 0.000178),CPU Time 0.000000,Elapsed Ti
Cursor 39 Ver 98 Fetch at 14.127048 (Parse to Fetch 0.000240),CPU Time 0.000000,Elapsed Ti
Cursor 39 Ver 98 Fetch at 14.127081 (Parse to Fetch 0.000273),CPU Time 0.000000,Elapsed Ti
----------------------------------------------------------------------------------
Cursor 43 Ver 72 Parse at 15.496347 (1.369539)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 72 Parse at 15.496341 (Parse to Parse -0.000006),CPU Time 0.000000,Elapsed Ti


Cursor 43 Ver 72 Execute at 15.496530 (Parse to Exec 0.000183),CPU Time 0.000000,Elapsed Ti
Cursor 43 Ver 72 Fetch at 15.496591 (Parse to Fetch 0.000244),CPU Time 0.000000,Elapsed Ti
Cursor 43 Ver 72 Fetch at 15.496624 (Parse to Fetch 0.000277),CPU Time 0.000000,Elapsed Ti
----------------------------------------------------------------------------------
Cursor 40 Ver 138 Parse at 16.850176 (1.353829)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 40 Ver 138 Parse at 16.850170 (Parse to Parse -0.000006),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 138 Execute at 16.850358 (Parse to Exec 0.000182),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 138 Fetch at 16.850420 (Parse to Fetch 0.000244),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 138 Fetch at 16.850452 (Parse to Fetch 0.000276),CPU Time 0.000000,Elapsed T
----------------------------------------------------------------------------------
Cursor 39 Ver 99 Parse at 18.267039 (1.416863)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 39 Ver 99 Parse at 18.267034 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed Ti


Cursor 39 Ver 99 Execute at 18.267217 (Parse to Exec 0.000178),CPU Time 0.000000,Elapsed Ti
Cursor 39 Ver 99 Fetch at 18.267280 (Parse to Fetch 0.000241),CPU Time 0.000000,Elapsed Ti
Cursor 39 Ver 99 Fetch at 18.267313 (Parse to Fetch 0.000274),CPU Time 0.000000,Elapsed Ti
----------------------------------------------------------------------------------
Cursor 43 Ver 73 Parse at 19.625135 (1.358096)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 73 Parse at 19.625131 (Parse to Parse -0.000004),CPU Time 0.000000,Elapsed Ti


Cursor 43 Ver 73 Execute at 19.625308 (Parse to Exec 0.000173),CPU Time 0.000000,Elapsed Ti
Cursor 43 Ver 73 Fetch at 19.625369 (Parse to Fetch 0.000234),CPU Time 0.000000,Elapsed Ti
Cursor 43 Ver 73 Fetch at 19.625402 (Parse to Fetch 0.000267),CPU Time 0.000000,Elapsed Ti
----------------------------------------------------------------------------------
Cursor 40 Ver 139 Parse at 21.045974 (1.420839)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 40 Ver 139 Parse at 21.045969 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 139 Execute at 21.046290 (Parse to Exec 0.000316),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 139 Fetch at 21.046355 (Parse to Fetch 0.000381),CPU Time 0.000000,Elapsed T
Cursor 40 Ver 139 Fetch at 21.046389 (Parse to Fetch 0.000415),CPU Time 0.000000,Elapsed T
----------------------------------------------------------------------------------
Cursor 39 Ver 100 Parse at 22.402694 (1.356720)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 39 Ver 100 Parse at 22.402689 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed T
Cursor 39 Ver 100 Execute at 22.402870 (Parse to Exec 0.000176),CPU Time 0.000000,Elapsed T
Cursor 39 Ver 100 Fetch at 22.402930 (Parse to Fetch 0.000236),CPU Time 0.000000,Elapsed T
Cursor 39 Ver 100 Fetch at 22.402963 (Parse to Fetch 0.000269),CPU Time 0.000000,Elapsed T
Cursor 37 Ver 126 Execute at 22.739522 (Parse to Exec 713.210570),CPU Time 712.609375,Elaps
0624,Rows Affecte

0020,Rows Affecte
0031,Rows Affecte
0035,Rows Retriev
0004,Rows Retriev

016,Rows Affected
172,Rows Affected

xts=:12,lists=dec

014,Rows Affected
262,Rows Affected

0020,Rows Affecte
0033,Rows Affecte
0033,Rows Retriev
0006,Rows Retriev

020,Rows Affected
033,Rows Affected
033,Rows Retrievd
006,Rows Retrievd

021,Rows Affected
031,Rows Affected
034,Rows Retrievd
003,Rows Retrievd

0016,Rows Affecte
0164,Rows Affecte

xts=:12,lists=dec

013,Rows Affected
259,Rows Affected

020,Rows Affected
031,Rows Affected
035,Rows Retrievd
003,Rows Retrievd

0016,Rows Affecte
0162,Rows Affecte

xts=:12,lists=dec

013,Rows Affected
261,Rows Affected

020,Rows Affected
031,Rows Affected
034,Rows Retrievd
003,Rows Retrievd

0015,Rows Affecte
0162,Rows Affecte

xts=:12,lists=dec

014,Rows Affected
255,Rows Affected 1,Blks from Buff 5+CU(1),Blks from Disk 0,

20,Rows Affected
34,Rows Affected
33,Rows Retrievd
06,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0
23,Rows Affected
36,Rows Affected
32,Rows Retrievd
06,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

3,Rows Affected 0
4,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
3,Rows Retrievd 1
6,Rows Retrievd 0

3,Rows Affected 0
6,Rows Affected 0
2,Rows Retrievd 1
6,Rows Retrievd 0

23,Rows Affected
36,Rows Affected
33,Rows Retrievd
05,Rows Retrievd

4,Rows Affected 0
5,Rows Affected 0
3,Rows Retrievd 1
6,Rows Retrievd 0

2,Rows Affected 0
4,Rows Affected 0
3,Rows Retrievd 1
6,Rows Retrievd 0

24,Rows Affected
40,Rows Affected
35,Rows Retrievd
06,Rows Retrievd

21,Rows Affected
35,Rows Affected
32,Rows Retrievd
06,Rows Retrievd
3.210431,Rows Affected 900000,Blks from Buff 259615+CU(195989191),Blks from Disk 0,
8KB ASSM Auto
SP2-0267: pagesize option 100000 out of range (0 through 50000)

COUNT(*)
----------
11073

Session altered.

Elapsed: 00:00:00.03

Session altered.

Elapsed: 00:00:00.03

Table created.

Elapsed: 00:00:00.96

Index created.

Elapsed: 00:00:00.03

'CREATINGUMS
------------
CREATING UMS

Table created.

Elapsed: 00:00:00.04

'CREATINGVENDORS
----------------
CREATING VENDORS

Table created.

Elapsed: 00:00:00.07

Table created.

Elapsed: 00:00:00.17

'CREATINGPARTS
--------------
CREATING PARTS

Table created.
Elapsed: 00:00:00.15

Index created.

Elapsed: 00:00:00.04

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:00:00.01

Table created.

Elapsed: 00:00:00.14

'CREATINGPO_HEADER
------------------
CREATING PO_HEADER

Table created.

Elapsed: 00:00:00.06

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00
Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00

Table created.

Elapsed: 00:00:00.09

'CREATINGPO_LINE
----------------
CREATING PO_LINE

Table created.

Elapsed: 00:00:00.09

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00

Index created.

Elapsed: 00:00:00.01

Index created.

Elapsed: 00:00:00.00

Table created.

Elapsed: 00:00:00.09

Table created.

Elapsed: 00:00:00.01

'INSERTINGINTOLOCATIONS'
------------------------
INSERTING INTO LOCATIONS

Session altered.
Elapsed: 00:00:00.03

2200 rows created.

Elapsed: 00:00:00.36

Execution Plan
----------------------------------------------------------
Plan hash value: 2528327348

-----------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 72 | 4 (0)| 00:00:01 |
| 1 | COUNT | | | | | |
| 2 | NESTED LOOPS | | 1 | 72 | 4 (0)| 00:00:01 |
| 3 | VIEW | | 1 | 36 | 2 (0)| 00:00:01 |
| 4 | COUNT | | | | | |
|* 5 | CONNECT BY WITHOUT FILTERING| | | | | |
| 6 | FAST DUAL | | 1 | | 2 (0)| 00:00:01 |
|* 7 | VIEW | | 1 | 36 | 2 (0)| 00:00:01 |
| 8 | COUNT | | | | | |
|* 9 | CONNECT BY WITHOUT FILTERING| | | | | |
| 10 | FAST DUAL | | 1 | | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

5 - filter(LEVEL<=200)
7 - filter("LOC"."RN">=MOD("WH"."RN",10)*20+1)
9 - filter(LEVEL<=20)

Statistics
----------------------------------------------------------
322 recursive calls
3401 db block gets
237 consistent gets
1 physical reads
1048152 redo size
680 bytes sent via SQL*Net to client
1075 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
203 sorts (memory)
0 sorts (disk)
2200 rows processed

Commit complete.
Elapsed: 00:00:00.00

PL/SQL procedure successfully completed.

Elapsed: 00:00:00.90

8 rows created.

Elapsed: 00:00:00.00

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter(LEVEL<=8)

Statistics
----------------------------------------------------------
53 recursive calls
23 db block gets
8 consistent gets
0 physical reads
0 redo size
680 bytes sent via SQL*Net to client
685 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
8 rows processed

Commit complete.

Elapsed: 00:00:00.01

PL/SQL procedure successfully completed.


Elapsed: 00:00:00.01

'INSERTINGINTOVENDORS'
----------------------
INSERTING INTO VENDORS

Session altered.

Elapsed: 00:00:00.00

50000 rows created.

Elapsed: 00:00:04.54

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter(LEVEL<=50000)

Statistics
----------------------------------------------------------
2408 recursive calls
23094 db block gets
3680 consistent gets
0 physical reads
19768216 redo size
680 bytes sent via SQL*Net to client
2073 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
50000 rows processed

'ELIMINATINGDUPV'
-----------------
ELIMINATING DUP V

214 rows deleted.

Elapsed: 00:00:00.25

Execution Plan
----------------------------------------------------------
Plan hash value: 2737996044

----------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time
----------------------------------------------------------------------------------------------
| 0 | DELETE STATEMENT | | 611 | 26884 | | 2227 (1)| 00:00:2
| 1 | DELETE | VENDORS_TEMP | | | | |
|* 2 | HASH JOIN RIGHT SEMI | | 611 | 26884 | | 2227 (1)| 00:00:2
| 3 | VIEW | VW_NSO_1 | 2506 | 55132 | | 1540 (1)| 00:00:1
|* 4 | HASH JOIN | | 2506 | 107K| 1672K| 1540 (1)| 00:00:1
| 5 | VIEW | | 50120 | 1076K| | 690 (2)| 00:00:0
|* 6 | FILTER | | | | | |
| 7 | SORT GROUP BY | | 50120 | 1076K| | 690 (2)| 00:00:0
| 8 | TABLE ACCESS FULL| VENDORS_TEMP | 50120 | 1076K| | 686 (1)| 00:00:0
| 9 | TABLE ACCESS FULL | VENDORS_TEMP | 50120 | 1076K| | 686 (1)| 00:00:0
| 10 | TABLE ACCESS FULL | VENDORS_TEMP | 50120 | 1076K| | 686 (1)| 00:00:0
----------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - access("VENDOR_ID"="$nso_col_1" AND "TERMS_NET_DAYS"="$nso_col_2")


4 - access("V"."VENDOR_ID"="M"."VENDOR_ID")
filter("V"."TERMS_NET_DAYS">"M"."TERMS_NET_DAYS")
6 - filter(COUNT(*)>1)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
64 recursive calls
243 db block gets
8434 consistent gets
0 physical reads
142140 redo size
680 bytes sent via SQL*Net to client
945 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
9 sorts (memory)
0 sorts (disk)
214 rows processed

49786 rows created.

Elapsed: 00:00:01.28

Execution Plan
----------------------------------------------------------
Plan hash value: 448063788

----------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 50120 | 48M| 687 (1)| 00:00:09 |
| 1 | TABLE ACCESS FULL| VENDORS_TEMP | 50120 | 48M| 687 (1)| 00:00:09 |
----------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
2163 recursive calls
125204 db block gets
8073 consistent gets
0 physical reads
34300492 redo size
680 bytes sent via SQL*Net to client
584 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
49786 rows processed

Commit complete.

Elapsed: 00:00:00.00

PL/SQL procedure successfully completed.

Elapsed: 00:00:01.71
'INSERTINGINTOPARTS'
--------------------
INSERTING INTO PARTS

Session altered.

Elapsed: 00:00:00.03

100000 rows created.

Elapsed: 00:00:14.62

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter(LEVEL<=100000)

Statistics
----------------------------------------------------------
4048 recursive calls
45669 db block gets
7183 consistent gets
0 physical reads
39714000 redo size
679 bytes sent via SQL*Net to client
3187 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
100000 rows processed

'REMOVINGDUPLICATEPARTS'
------------------------
REMOVING DUPLICATE PARTS
306 rows deleted.

Elapsed: 00:00:00.51

Execution Plan
----------------------------------------------------------
Plan hash value: 1732788817

----------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time
----------------------------------------------------------------------------------------------
| 0 | DELETE STATEMENT | | 1125 | 67500 | | 4483 (1)| 00:00:54
| 1 | DELETE | PARTS_TEMP | | | | |
|* 2 | HASH JOIN RIGHT SEMI | | 1125 | 67500 | | 4483 (1)| 00:00:54
| 3 | VIEW | VW_NSO_1 | 4613 | 135K| | 3113 (1)| 00:00:38
|* 4 | HASH JOIN | | 4613 | 270K| 3784K| 3113 (1)| 00:00:38
| 5 | VIEW | | 92253 | 2702K| | 1375 (1)| 00:00:17
|* 6 | FILTER | | | | | |
| 7 | SORT GROUP BY | | 92253 | 2702K| | 1375 (1)| 00:00:17
| 8 | TABLE ACCESS FULL| PARTS_TEMP | 92253 | 2702K| | 1368 (1)| 00:00:17
| 9 | TABLE ACCESS FULL | PARTS_TEMP | 92253 | 2702K| | 1368 (1)| 00:00:17
| 10 | TABLE ACCESS FULL | PARTS_TEMP | 92253 | 2702K| | 1368 (1)| 00:00:17
----------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - access("PART_ID"="$nso_col_1" AND "ORDER_POINT"="$nso_col_2")


4 - access("V"."PART_ID"="M"."PART_ID")
filter("V"."ORDER_POINT">"M"."ORDER_POINT")
6 - filter(COUNT(*)>1)

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
64 recursive calls
363 db block gets
16002 consistent gets
0 physical reads
260076 redo size
680 bytes sent via SQL*Net to client
909 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
9 sorts (memory)
0 sorts (disk)
306 rows processed

99694 rows created.

Elapsed: 00:00:11.39

Execution Plan
----------------------------------------------------------
Plan hash value: 3663493195

--------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 92253 | 107M| 1379 (2)| 00:00:17 |
| 1 | TABLE ACCESS FULL| PARTS_TEMP | 92253 | 107M| 1379 (2)| 00:00:17 |
--------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
7680 recursive calls
518800 db block gets
28462 consistent gets
2 physical reads
148738772 redo size
680 bytes sent via SQL*Net to client
580 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
99694 rows processed

99694 rows updated.

Elapsed: 00:02:58.09

Execution Plan
----------------------------------------------------------
Plan hash value: 424025735

---------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 83068 | 2514K| 1371 (1)| 00:00:17 |
| 1 | UPDATE | PARTS | | | | |
| 2 | TABLE ACCESS FULL | PARTS | 83068 | 2514K| 1371 (1)| 00:00:17 |
|* 3 | VIEW | | 2200 | 68200 | 5 (0)| 00:00:01 |
| 4 | COUNT | | | | | |
| 5 | INDEX FAST FULL SCAN| SYS_C004155 | 2200 | 41800 | 5 (0)| 00:00:01 |
---------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

3 - filter("RN"=MOD(:B1,2000))

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
117 recursive calls
236588 db block gets
1830048 consistent gets
0 physical reads
29202520 redo size
679 bytes sent via SQL*Net to client
798 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
99694 rows processed

66462 rows updated.

Elapsed: 00:00:04.70

Execution Plan
----------------------------------------------------------
Plan hash value: 2752843369

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 55512 | 650K| 1373 (1)| 00:00:17 |
| 1 | UPDATE | PARTS | | | | |
| 2 | COUNT | | | | | |
|* 3 | TABLE ACCESS FULL| PARTS | 55512 | 650K| 1373 (1)| 00:00:17 |
-----------------------------------------------------------------------------
Predicate Information (identified by operation id):
---------------------------------------------------

3 - filter("PURCHASED"='Y')

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
849 recursive calls
338348 db block gets
6665 consistent gets
0 physical reads
36639124 redo size
682 bytes sent via SQL*Net to client
687 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
66462 rows processed

Commit complete.

Elapsed: 00:00:00.01

PL/SQL procedure successfully completed.

Elapsed: 00:00:06.06

'INSERTINGINTOPO_HEADER'
------------------------
INSERTING INTO PO_HEADER

Session altered.

Elapsed: 00:00:00.01

500000 rows created.

Elapsed: 00:00:58.20

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter(LEVEL<=500000)

Statistics
----------------------------------------------------------
4818 recursive calls
117983 db block gets
19640 consistent gets
0 physical reads
106248468 redo size
683 bytes sent via SQL*Net to client
2301 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
500000 rows processed

500000 rows created.

Elapsed: 00:00:50.31

Execution Plan
----------------------------------------------------------
Plan hash value: 2716451106

------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
------------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 501K| 465M| 3690 (2)| 00:00:45 |
| 1 | TABLE ACCESS FULL| PO_HEADER_TEMP | 501K| 465M| 3690 (2)| 00:00:45 |
------------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement
Statistics
----------------------------------------------------------
10927 recursive calls
3939186 db block gets
82773 consistent gets
0 physical reads
610376888 redo size
683 bytes sent via SQL*Net to client
588 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
500000 rows processed

Commit complete.

Elapsed: 00:00:00.01

PL/SQL procedure successfully completed.

Elapsed: 00:00:07.31

'INSERTINGINTOPO_LINES'
-----------------------
INSERTING INTO PO_LINES

Session altered.

Elapsed: 00:00:00.00

12205347 rows created.

Elapsed: 00:03:31.40

Execution Plan
----------------------------------------------------------
Plan hash value: 3988977532

----------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time
----------------------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 249 | 19422 | 47 (0)| 00:00:0
| 1 | COUNT | | | | |
| 2 | TABLE ACCESS BY INDEX ROWID | PARTS | 249 | 7221 | 45 (0)| 00:00:0
| 3 | NESTED LOOPS | | 249 | 19422 | 47 (0)| 00:00:0
| 4 | VIEW | | 1 | 49 | 2 (0)| 00:00:0
| 5 | COUNT | | | | |
|* 6 | CONNECT BY WITHOUT FILTERING| | | | |
| 7 | FAST DUAL | | 1 | | 2 (0)| 00:00:0
|* 8 | INDEX RANGE SCAN | IND_PARTS_7 | 449 | | 2 (0)| 00:00:0
----------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

6 - filter(LEVEL<=500000)
8 - access("P"."ORDER_POINT">="START_LINE" AND
"P"."ORDER_POINT"<="START_LINE"+"LINES"-1)

Statistics
----------------------------------------------------------
10948 recursive calls
2160840 db block gets
2563123 consistent gets
223 physical reads
2005089824 redo size
683 bytes sent via SQL*Net to client
1686 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
12205347 rows processed

12205347 rows created.

Elapsed: 01:06:01.57

Execution Plan
----------------------------------------------------------
Plan hash value: 1069489789

----------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 12M| 12G| 69005 (3)| 00:13:49 |
| 1 | TABLE ACCESS FULL| PO_LINE_TEMP | 12M| 12G| 69005 (3)| 00:13:49 |
----------------------------------------------------------------------------------

Note
-----
- dynamic sampling used for this statement

Statistics
----------------------------------------------------------
89663 recursive calls
141754417 db block gets
1778244 consistent gets
283312 physical reads
SP2-0642: SQL*Plus internal error state 1075, context 1:4:4294967295
Unsafe to proceed
683 bytes sent via SQL*Net to client
584 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
12205347 rows processed

Commit complete.

Elapsed: 00:00:00.01

PL/SQL procedure successfully completed.

Elapsed: 00:03:23.98

'UPDATE-ROLLBACKTEST
--------------------
UPDATE-ROLLBACK TEST

Session altered.

Elapsed: 00:00:00.00

3539069 rows updated.

Elapsed: 05:45:07.17

Execution Plan
----------------------------------------------------------
Plan hash value: 2613867723

-----------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 4595K| 52M| 25429 (1)| 00:05:06 |
| 1 | UPDATE | PO_LINE | | | | |
|* 2 | INDEX RANGE SCAN| IND_PO_LINE_3 | 4595K| 52M| 25429 (1)| 00:05:06 |
-----------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------
2 - access("PART_ID">='3000000PART' AND "PART_ID"<='6576035PART')

Statistics
----------------------------------------------------------
2454 recursive calls
467030361 db block gets
383084403 consistent gets
2847244 physical reads
1528989796 redo size
687 bytes sent via SQL*Net to client
632 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
1 sorts (disk)
3539069 rows processed

Rollback complete.

Elapsed: 05:21:42.73

'INSERT-NARROW-TABL
-------------------
INSERT-NARROW-TABLE

Session altered.

Elapsed: 00:00:00.00

900000 rows created.

Elapsed: 00:00:06.53

Execution Plan
----------------------------------------------------------
Plan hash value: 1731520519

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | INSERT STATEMENT | | 1 | 2 (0)| 00:00:01 |
| 1 | COUNT | | | | |
|* 2 | CONNECT BY WITHOUT FILTERING| | | | |
| 3 | FAST DUAL | | 1 | 2 (0)| 00:00:01 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------
2 - filter(LEVEL<=900000)

Statistics
----------------------------------------------------------
1226 recursive calls
16656 db block gets
1956 consistent gets
17 physical reads
14130936 redo size
689 bytes sent via SQL*Net to client
615 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
5 sorts (memory)
0 sorts (disk)
900000 rows processed

Commit complete.

Elapsed: 00:00:04.93

STAT_NAME VALUE
------------------------- ----------
consistent gets 390140533
db block gets 627207988
table fetch by rowid 12211909
table fetch continued row 78
table scan blocks gotten 653182
table scan rows gotten 14697509

900000 rows updated.

Elapsed: 00:24:54.43

Execution Plan
----------------------------------------------------------
Plan hash value: 2650735695

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 1 | 26 | 2 (0)| 00:00:01 |
| 1 | UPDATE | NARROW | | | | |
| 2 | TABLE ACCESS FULL| NARROW | 1 | 26 | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1587 recursive calls
337707586 db block gets
1350729 consistent gets
1 physical reads
525073528 redo size
689 bytes sent via SQL*Net to client
597 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
900000 rows processed

STAT_NAME VALUE
------------------------- ----------
consistent gets 391491412
db block gets 964915617
table fetch by rowid 12211913
table fetch continued row 78
table scan blocks gotten 656119
table scan rows gotten 16501306

900000 rows updated.

Elapsed: 00:41:22.64

Execution Plan
----------------------------------------------------------
Plan hash value: 2650735695

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 1 | 26 | 2 (0)| 00:00:01 |
| 1 | UPDATE | NARROW | | | | |
| 2 | TABLE ACCESS FULL| NARROW | 1 | 26 | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
739 recursive calls
583033051 db block gets
1593474 consistent gets
0 physical reads
409352180 redo size
688 bytes sent via SQL*Net to client
589 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
900000 rows processed

900000 rows updated.

Elapsed: 00:00:23.78

Execution Plan
----------------------------------------------------------
Plan hash value: 2650735695

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | UPDATE STATEMENT | | 1 | 26 | 2 (0)| 00:00:01 |
| 1 | UPDATE | NARROW | | | | |
| 2 | TABLE ACCESS FULL| NARROW | 1 | 26 | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
316 recursive calls
5490094 db block gets
191730 consistent gets
0 physical reads
269343620 redo size
689 bytes sent via SQL*Net to client
559 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
900000 rows processed

STAT_NAME VALUE
------------------------- ----------
consistent gets 393276734
db block gets 1553438826
table fetch by rowid 12211917
table fetch continued row 78
table scan blocks gotten 678262
table scan rows gotten 23114805

C1 C2
---------- ----------
-0.08715570 -0.0871557
-0.19080896 -0.19080896
-0.24192186 -0.24192186
-0.34202011 -0.34202011
-0.43837111 -0.43837111
...
.97814398 .97814398
.999847391 .999847391

900000 rows selected.

Elapsed: 00:01:30.06

Execution Plan
----------------------------------------------------------
Plan hash value: 3043013035

----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 26 | 2 (0)| 00:00:01 |
| 1 | TABLE ACCESS FULL| NARROW | 1 | 26 | 2 (0)| 00:00:01 |
----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
2 recursive calls
1 db block gets
66188 consistent gets
0 physical reads
176 redo size
22139480 bytes sent via SQL*Net to client
660370 bytes received via SQL*Net from client
60001 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
900000 rows processed

STAT_NAME VALUE
------------------------- ----------
consistent gets 393343002
db block gets 1553438867
table fetch by rowid 12211921
table fetch continued row 78
table scan blocks gotten 744445
table scan rows gotten 38441953

450000 rows deleted.

Elapsed: 00:00:12.29
Execution Plan
----------------------------------------------------------
Plan hash value: 3059185100

-----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------
| 0 | DELETE STATEMENT | | 1 | 13 | 2 (0)| 00:00:01 |
| 1 | DELETE | NARROW | | | | |
|* 2 | TABLE ACCESS FULL| NARROW | 1 | 13 | 2 (0)| 00:00:01 |
-----------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("C1"<0)

Statistics
----------------------------------------------------------
100 recursive calls
863894 db block gets
6544 consistent gets
0 physical reads
201784852 redo size
691 bytes sent via SQL*Net to client
565 bytes received via SQL*Net from client
4 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
450000 rows processed

Commit complete.

Elapsed: 00:00:00.00

'TABLEANDINDEXSTATS'
---------------------
TABLE AND INDEX STATS

PL/SQL procedure successfully completed.

Elapsed: 00:00:01.36

TABLE_NAME NUM_ROWS BLOCKS AVG_ROW_LEN


------------------------------ ---------- ---------- -----------
LOCATIONS 2200 28 81
NARROW 449533 6480 13
PARTS 99694 5032 362
PO_HEADER 494003 13409 162
PO_LINE 12211036 249506 119
UMS 8 5 7
VENDORS 49786 2512 341

TABLE_NAME INDEX_NAME BLEVEL LEAF_BLOCKS DISTINCT_KEYS AVG_LEAF_BLOCKS_PER_KEY AVG_DA


---------- --------------- ---------- ----------- ------------- ----------------------- ------
LOCATIONS IND_LOCATIONS_1 1 10 200 1
LOCATIONS SYS_C004155 1 12 2200 1
PARTS IND_PARTS_1 1 317 1 317
PARTS IND_PARTS_2 2 556 1 556
PARTS IND_PARTS_3 1 305 8 38
PARTS IND_PARTS_4 1 317 1 317
PARTS IND_PARTS_5 1 256 8983 1
PARTS IND_PARTS_6 1 305 8 38
PARTS IND_PARTS_7 1 318 99694 1
PARTS SYS_C004205 1 485 99694 1
PO_HEADER IND_PO_HEADER_1 2 2048 8983 1
PO_HEADER IND_PO_HEADER_2 2 2048 8983 1
PO_HEADER IND_PO_HEADER_3 2 1386 1 1386
PO_HEADER IND_PO_HEADER_4 2 1196 2 598
PO_HEADER SYS_C004260 2 1850 500000 1
PO_LINE IND_PO_LINE_1 0 0 0 0
PO_LINE IND_PO_LINE_2 0 0 0 0
PO_LINE IND_PO_LINE_3 2 63711 3602 17
PO_LINE IND_PO_LINE_4 2 69482 3602 19
PO_LINE SYS_C004294 2 102972 12418918 1
UMS SYS_C004159 0 1 8 1
VENDORS SYS_C004165 1 199 49786 1

System altered.

Elapsed: 00:00:07.10

System altered.

Elapsed: 00:00:00.01

Session altered.

Elapsed: 00:00:00.00

Session altered.

Elapsed: 00:00:00.00
AND POL.PART_ID=P.ID
*
ERROR at line 13:
ORA-00904: "P"."ID": invalid identifier
Elapsed: 00:00:00.12
P.DESCIPTION
*
ERROR at line 14:
ORA-00904: "P"."DESCIPTION": invalid identifier

Elapsed: 00:00:00.01

LOCATIONS
----------
2200

Elapsed: 00:00:00.01

Execution Plan
----------------------------------------------------------
Plan hash value: 3384977531

---------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Cost (%CPU)| Time |
---------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 4 (0)| 00:00:01 |
| 1 | SORT AGGREGATE | | 1 | | |
| 2 | INDEX FAST FULL SCAN| IND_LOCATIONS_1 | 2200 | 4 (0)| 00:00:01 |
---------------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
17 consistent gets
14 physical reads
0 redo size
412 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

PRODUCT_CODE PARTS_LARGE_WH
--------------- --------------
FG 25474
INVENTORY 3389
JANITOR 1697
OFFICE 1694
SHOP 1696

Elapsed: 00:00:01.01

Execution Plan
----------------------------------------------------------
Plan hash value: 3005476749

-----------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
-----------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 5 | 115 | 1383 (2)| 00:00:17 |
| 1 | SORT GROUP BY | | 5 | 115 | 1383 (2)| 00:00:17 |
|* 2 | HASH JOIN | | 5534 | 124K| 1381 (1)| 00:00:17 |
| 3 | VIEW | | 1 | 9 | 6 (17)| 00:00:01 |
|* 4 | FILTER | | | | | |
| 5 | HASH GROUP BY | | 1 | 9 | 6 (17)| 00:00:01 |
| 6 | INDEX FAST FULL SCAN| SYS_C004155 | 2200 | 19800 | 5 (0)| 00:00:01 |
| 7 | TABLE ACCESS FULL | PARTS | 99694 | 1363K| 1374 (1)| 00:00:17 |
-----------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - access("W"."WAREHOUSE_ID"="P"."PRIMARY_WHS_ID")
4 - filter(COUNT(*)>160)

Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
5059 consistent gets
5048 physical reads
0 redo size
581 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
5 rows processed

COUNT(*)
----------
98586
Elapsed: 00:00:00.04

Execution Plan
----------------------------------------------------------
Plan hash value: 3298521242

----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 7 | 1378 (2)| 00:00:17 |
| 1 | SORT AGGREGATE | | 1 | 7 | | |
|* 2 | TABLE ACCESS FULL| PARTS | 98697 | 674K| 1378 (2)| 00:00:17 |
----------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("QTY_ON_HAND">1000)

Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
5042 consistent gets
0 physical reads
0 redo size
413 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

COUNT(*)
----------
5528

Elapsed: 00:00:00.34

Execution Plan
----------------------------------------------------------
Plan hash value: 3333389930

------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 7 | 685 (1)| 00:00:09 |
| 1 | SORT AGGREGATE | | 1 | 7 | | |
|* 2 | TABLE ACCESS FULL| VENDORS | 49 | 343 | 685 (1)| 00:00:09 |
------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("ZIPCODE">' 44444')

Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
2520 consistent gets
2514 physical reads
0 redo size
412 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

COUNT(*)
----------
0

Elapsed: 00:00:00.06

Execution Plan
----------------------------------------------------------
Plan hash value: 3410092070

--------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
--------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 21 | 5 (0)| 00:00:01 |
| 1 | SORT AGGREGATE | | 1 | 21 | | |
|* 2 | TABLE ACCESS BY INDEX ROWID| PO_LINE | 27 | 567 | 5 (0)| 00:00:01 |
|* 3 | INDEX RANGE SCAN | SYS_C004294 | 27 | | 3 (0)| 00:00:01 |
--------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------

2 - filter("POL"."PART_ID" IS NOT NULL)


3 - access("POL"."PURC_ORDER_ID">='10000' AND "POL"."PURC_ORDER_ID"<='20000')
Statistics
----------------------------------------------------------
8 recursive calls
0 db block gets
6 consistent gets
5 physical reads
80 redo size
410 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
1 rows processed

PART_ID A PRODUCT_CODE MAX_QTY_PRD_ABC MIN_QTY_PRD_ABC DR_QTY_PRD_AB


------------------------------ - --------------- --------------- --------------- -------------
10000000PART B FG 100000 .001 1382
1000022PART A FG 100000 .002 112
1000209PART A FG 100000 .002 101
1000259PART C FG 100000 0 378
...
9999998PART B FG 100000 .001 220
9999999PART B SHOP 99026.807 3489.554 47

99694 rows selected.

Elapsed: 00:00:30.64

Execution Plan
----------------------------------------------------------
Plan hash value: 2057956106

--------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
--------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 99694 | 3796K| | 4398 (1)| 00:00:53 |
| 1 | SORT ORDER BY | | 99694 | 3796K| 10M| 4398 (1)| 00:00:53 |
| 2 | WINDOW SORT | | 99694 | 3796K| 10M| 4398 (1)| 00:00:53 |
| 3 | WINDOW SORT | | 99694 | 3796K| 10M| 4398 (1)| 00:00:53 |
| 4 | TABLE ACCESS FULL| PARTS | 99694 | 3796K| | 1377 (1)| 00:00:17 |
--------------------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
5040 consistent gets
0 physical reads
0 redo size
4109388 bytes sent via SQL*Net to client
73487 bytes received via SQL*Net from client
6648 SQL*Net roundtrips to/from client
3 sorts (memory)
0 sorts (disk)
99694 rows processed

VENDOR_ID VENDOR_NAME
--------------- --------------------------------------------------
1000020VEN 382030VENDOR NAME
1000186VEN 773432VENDOR NAME
1001324VEN 864606VENDOR NAME
1001380VEN 580185VENDOR NAME
...
9999995VEN 802822VENDOR NAME
9999997VEN 716062VENDOR NAME

41120 rows selected.

Elapsed: 00:00:54.95

Execution Plan
----------------------------------------------------------
Plan hash value: 1378243240

---------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
---------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 40976 | 1600K| | 155K (2)| 00:31:06 |
| 1 | MERGE JOIN ANTI | | 40976 | 1600K| | 155K (2)| 00:31:06 |
| 2 | SORT JOIN | | 49786 | 1409K| 3928K| 1087 (1)| 00:00:14 |
| 3 | TABLE ACCESS FULL | VENDORS | 49786 | 1409K| | 686 (1)| 00:00:09 |
|* 4 | SORT UNIQUE | | 8579 | 94369 | | 154K (2)| 00:30:53 |
| 5 | VIEW | | 8579 | 94369 | | 154K (2)| 00:30:53 |
| 6 | HASH UNIQUE | | 8579 | 485K| 795M| 154K (2)| 00:30:53 |
|* 7 | HASH JOIN | | 12M| 675M| | 93284 (1)| 00:18:40 |
|* 8 | TABLE ACCESS FULL | PARTS | 19939 | 331K| | 1371 (1)| 00:00:17 |
|* 9 | HASH JOIN | | 12M| 477M| 15M| 91821 (1)| 00:18:22 |
| 10 | TABLE ACCESS FULL| PO_HEADER | 494K| 9648K| | 3672 (2)| 00:00:45 |
| 11 | TABLE ACCESS FULL| PO_LINE | 12M| 244M| | 68156 (1)| 00:13:38 |
---------------------------------------------------------------------------------------------

Predicate Information (identified by operation id):


---------------------------------------------------
4 - access("V"."VENDOR_ID"="PV"."VENDOR_ID")
filter("V"."VENDOR_ID"="PV"."VENDOR_ID")
7 - access("POL"."PART_ID"="P"."PART_ID")
8 - filter("P"."PRODUCT_CODE"='FG')
9 - access("PO"."PURC_ORDER_ID"="POL"."PURC_ORDER_ID")

Statistics
----------------------------------------------------------
29 recursive calls
0 db block gets
277040 consistent gets
262432 physical reads
504764 redo size
1584681 bytes sent via SQL*Net to client
30532 bytes received via SQL*Net from client
2743 SQL*Net roundtrips to/from client
2 sorts (memory)
0 sorts (disk)
41120 rows processed

PART_ID DESCRIPTION
------------------------------ ----------------------------------------
QTY_ON_HAND RANK_PC_QTY AVG_PC_QTY MIN_PC_QTY MAX_PC_QTY COUNT_PC RANK_CC_QTY
AVG_CC_QTY MIN_CC_QTY MAX_CC_QTY COUNT_CC RANK_VENDOR_QTY AVG_VENDOR_QTY
MIN_VENDOR_QTY MAX_VENDOR_QTY COUNT_VENDOR
----------- ----------- ---------- ---------- ---------- ---------- -----------
10000000PART 10000000DESCRIPTION
99939.083 1597 62825.9166 0 99939.083 74768 309
62855.4356 .002 99939.083 13940 1043 62493.765
3489.551 99939.083 32190

1000022PART 1000022DESCRIPTION
17364.487 66930 7573.22913 0 17364.487 74768 12791
7921.08607 .002 17364.487 1452 8 17364.487
17364.487 17364.487 1
...

9999999PART 9999999DESCRIPTION
61566.149 3319 23998.0777 3489.551 61566.149 4983 8228
31959.2693 .001 61566.149 6012 5 32125.3248
3490.111 61566.149 4

99694 rows selected.

Elapsed: 00:01:36.84

Execution Plan
----------------------------------------------------------
Plan hash value: 3734429483

--------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
--------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 99694 | 5841K| | 14340 (1)| 00:02:53 |
| 1 | SORT ORDER BY | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 2 | WINDOW SORT | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 3 | WINDOW SORT | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 4 | WINDOW SORT | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 5 | WINDOW SORT | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 6 | WINDOW SORT | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 7 | WINDOW SORT | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 8 | WINDOW SORT | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 9 | WINDOW SORT | | 99694 | 5841K| 15M| 14340 (1)| 00:02:53 |
| 10 | TABLE ACCESS FULL| PARTS | 99694 | 5841K| | 1377 (1)| 00:00:17 |
--------------------------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
5040 consistent gets
0 physical reads
0 redo size
16377604 bytes sent via SQL*Net to client
73487 bytes received via SQL*Net from client
6648 SQL*Net roundtrips to/from client
9 sorts (memory)
0 sorts (disk)
99694 rows processed

PRODUCT_CODE UNIT_PRICE UNIT_PRICE UNIT_PRICE UNIT_PRICE UNIT_PRICE


--------------- ---------- ---------- ---------- ---------- ----------
FG 73661 73661 73661 73661 73661
INVENTORY 9971 9971 9971 9971 9971
JANITOR 4984 4984 4984 4984 4984
OFFICE 4991 4991 4991 4991 4991
SHOP 4984 4984 4984 4984 4984

Elapsed: 00:00:00.15

Execution Plan
----------------------------------------------------------
Plan hash value: 815198312
----------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
----------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 5 | 60 | 1384 (2)| 00:00:17 |
| 1 | SORT GROUP BY | | 5 | 60 | 1384 (2)| 00:00:17 |
| 2 | TABLE ACCESS FULL| PARTS | 99694 | 1168K| 1377 (1)| 00:00:17 |
----------------------------------------------------------------------------

Statistics
----------------------------------------------------------
1 recursive calls
0 db block gets
5040 consistent gets
0 physical reads
0 redo size
901 bytes sent via SQL*Net to client
381 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
1 sorts (memory)
0 sorts (disk)
5 rows processed

PO.ID=POL.PURC_ORDER_ID
*
ERROR at line 25:
ORA-00904: "PO"."ID": invalid identifier

Elapsed: 00:00:00.00

'FINISHE
--------
FINISHED

Start, End Time, Elapsed Hours


6:59 PM
8:36 AM
8:36 AM
13.62

********************************************************************************
DELETE FROM
VENDORS_TEMP
WHERE
(VENDOR_ID,TERMS_NET_DAYS) IN
(SELECT
V.VENDOR_ID,
V.TERMS_NET_DAYS
FROM
VENDORS_TEMP V,
(SELECT
VENDOR_ID,
MIN(TERMS_NET_DAYS) TERMS_NET_DAYS
FROM
VENDORS_TEMP
GROUP BY
VENDOR_ID
HAVING
COUNT(*)>1) M
WHERE
V.VENDOR_ID=M.VENDOR_ID
AND V.TERMS_NET_DAYS>M.TERMS_NET_DAYS)

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.02 0 12 0 0
Execute 1 0.20 0.19 0 7554 242 214
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.21 0.21 0 7566 242 214

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 DELETE VENDORS_TEMP (cr=7554 pr=0 pw=0 time=190279 us)
214 HASH JOIN RIGHT SEMI (cr=7554 pr=0 pw=0 time=214208 us)
214 VIEW VW_NSO_1 (cr=5036 pr=0 pw=0 time=130105 us)
214 HASH JOIN (cr=5036 pr=0 pw=0 time=129676 us)
50000 TABLE ACCESS FULL VENDORS_TEMP (cr=2518 pr=0 pw=0 time=50041 us)
135 VIEW (cr=2518 pr=0 pw=0 time=1699077 us)
135 FILTER (cr=2518 pr=0 pw=0 time=1698805 us)
49786 SORT GROUP BY (cr=2518 pr=0 pw=0 time=143668 us)
50000 TABLE ACCESS FULL VENDORS_TEMP (cr=2518 pr=0 pw=0 time=50082 us)
50000 TABLE ACCESS FULL VENDORS_TEMP (cr=2518 pr=0 pw=0 time=50051 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
VENDORS
SELECT
*
FROM
VENDORS_TEMP

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 1 0 0
Execute 1 1.04 1.25 0 7446 125102 49786
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 1.04 1.25 0 7447 125102 49786

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
49786 TABLE ACCESS FULL VENDORS_TEMP (cr=2518 pr=0 pw=0 time=49836 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log file switch completion 2 0.09 0.13
log buffer space 1 0.06 0.06
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

DELETE FROM
PARTS_TEMP
WHERE
(PART_ID,ORDER_POINT) IN
(SELECT
V.PART_ID,
V.ORDER_POINT
FROM
PARTS_TEMP V,
(SELECT
PART_ID,
MIN(ORDER_POINT) ORDER_POINT
FROM
PARTS_TEMP
GROUP BY
PART_ID
HAVING
COUNT(*)>1) M
WHERE
V.PART_ID=M.PART_ID
AND V.ORDER_POINT>M.ORDER_POINT)

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 12 0 0
Execute 1 0.46 0.47 0 15120 362 306
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.48 0.48 0 15132 362 306

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 DELETE PARTS_TEMP (cr=15120 pr=0 pw=0 time=478888 us)
306 HASH JOIN RIGHT SEMI (cr=15120 pr=0 pw=0 time=435990 us)
306 VIEW VW_NSO_1 (cr=10080 pr=0 pw=0 time=360167 us)
306 HASH JOIN (cr=10080 pr=0 pw=0 time=360164 us)
100000 TABLE ACCESS FULL PARTS_TEMP (cr=5040 pr=0 pw=0 time=100040 us)
193 VIEW (cr=5040 pr=0 pw=0 time=5038409 us)
193 FILTER (cr=5040 pr=0 pw=0 time=5037829 us)
99694 SORT GROUP BY (cr=5040 pr=0 pw=0 time=372076 us)
100000 TABLE ACCESS FULL PARTS_TEMP (cr=5040 pr=0 pw=0 time=100050 us)
100000 TABLE ACCESS FULL PARTS_TEMP (cr=5040 pr=0 pw=0 time=100062 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
PARTS
SELECT
*
FROM
PARTS_TEMP

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 1 0 0
Execute 1 6.03 11.30 2 26400 518446 99694
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 6.03 11.31 2 26401 518446 99694
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
99694 TABLE ACCESS FULL PARTS_TEMP (cr=5040 pr=0 pw=0 time=199470 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log buffer space 5 0.99 2.28
db file sequential read 2 0.04 0.04
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
PARTS P
SET
(PRIMARY_WHS_ID,PRIMARY_LOC_ID)=(
SELECT
WAREHOUSE_ID,
LOCATION_ID
FROM
(SELECT
WAREHOUSE_ID,
LOCATION_ID,
ROWNUM RN
FROM
LOCATIONS)
WHERE
MOD(P.ORDER_POINT,2000)=RN)

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 1 0 0
Execute 1 177.73 178.08 0 1829868 236587 99694
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 177.73 178.08 0 1829869 236587 99694

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE PARTS (cr=1704918 pr=0 pw=0 time=165851427 us)
206718 TABLE ACCESS FULL PARTS (cr=10451 pr=0 pw=0 time=413568 us)
106972 VIEW (cr=1819408 pr=0 pw=0 time=174957281 us)
235452800 COUNT (cr=1819408 pr=0 pw=0 time=237059174 us)
235452800 INDEX FAST FULL SCAN SYS_C004155 (cr=1819408 pr=0 pw=0 time=1449934 us)(object i

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
PARTS
SET
PREF_VENDOR_ID=TRIM(TO_CHAR(ABS(ROUND(COS((MOD(ROWNUM,9000)*2+1)*3.14159265/180*51.491976)*1
WHERE
PURCHASED='Y'

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 1 0 0
Execute 1 4.64 4.68 0 6364 338314 66462
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 4.64 4.68 0 6365 338314 66462

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE PARTS (cr=6597 pr=0 pw=0 time=4692664 us)
66462 COUNT (cr=5040 pr=0 pw=0 time=265896 us)
66462 TABLE ACCESS FULL PARTS (cr=5040 pr=0 pw=0 time=133557 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
PO_HEADER
SELECT
*
FROM
PO_HEADER_TEMP

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 1 0 0
Execute 1 26.98 50.17 0 79517 3938735 500000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 27.00 50.18 0 79518 3938735 500000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
500000 TABLE ACCESS FULL PO_HEADER_TEMP (cr=13187 pr=0 pw=0 time=500053 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log buffer space 25 0.99 10.59
log file switch completion 2 0.05 0.07
latch: cache buffers lru chain 1 0.00 0.00
log file sync 1 0.00 0.00
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
PO_LINE
SELECT
*
FROM
PO_LINE_TEMP

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 1 0 0
Execute 1 697.35 3958.53 282243 1743396 141753100 12205347
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 697.37 3958.53 282243 1743397 141753100 12205347

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30
Rows Row Source Operation
------- ---------------------------------------------------
12205347 TABLE ACCESS FULL PO_LINE_TEMP (cr=249148 pr=249092 pw=0 time=988643651 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file scattered read 1982 7.40 473.32
db file sequential read 33605 7.14 2185.49
log file switch completion 57 0.99 6.91
log buffer space 7 0.99 1.46
rdbms ipc reply 857 1.99 7.22
control file sequential read 3616 7.10 135.00
Data file init write 9482 7.46 259.99
db file single write 226 0.03 0.16
control file parallel write 678 0.05 1.59
latch: cache buffers lru chain 3 0.00 0.00
log file sync 1 0.00 0.00
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

INSERT INTO
NARROW
SELECT
ROWNUM,
NULL
FROM
DUAL
CONNECT BY
LEVEL<=900000

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.01 0.00 0 0 0 0
Execute 1 1.68 6.35 8 1615 16604 900000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 1.70 6.36 8 1615 16604 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
900000 COUNT (cr=0 pr=0 pw=0 time=1800029 us)
900000 CONNECT BY WITHOUT FILTERING (cr=0 pr=0 pw=0 time=905804 us)
1 FAST DUAL (cr=0 pr=0 pw=0 time=2 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
db file sequential read 8 0.02 0.06
log buffer space 3 0.99 1.64
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
NARROW
SET
C1=ROUND(SIN(C1*3.14159265/180),2),
C2=C1

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 1446.15 1494.41 1 1350201 337707542 900000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 1446.15 1494.41 1 1350201 337707542 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE NARROW (cr=1350720 pr=1 pw=0 time=1494419740 us)
1800297 TABLE ACCESS FULL NARROW (cr=22285 pr=0 pw=0 time=3600687 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log buffer space 25 0.99 19.93
log file switch completion 2 0.04 0.09
db file sequential read 1 0.00 0.00
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
NARROW
SET
C1=ROUND(SIN(C2*3.14159265/180),10)

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 2481.56 223.01 0 1593260 583033023 900000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 2481.56 223.01 0 1593260 583033023 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE NARROW (cr=1215025 pr=0 pw=0 time=225150830 us)
1951619 TABLE ACCESS FULL NARROW (cr=105775 pr=0 pw=0 time=3903387 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
log file switch completion 2 0.04 0.08
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

UPDATE
NARROW
SET
C2=C1

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 23.50 23.77 0 191631 5490084 900000
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 23.50 23.77 0 191631 5490084 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
0 UPDATE NARROW (cr=176722 pr=0 pw=0 time=22100614 us)
1826337 TABLE ACCESS FULL NARROW (cr=22861 pr=0 pw=0 time=1826474 us)
Elapsed times include waiting on following events:
Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 1 0.00 0.00
SQL*Net message from client 1 0.00 0.00
********************************************************************************

SELECT
*
FROM
NARROW

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 60001 2.78 2.49 0 66188 1 900000
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 60003 2.78 2.49 0 66188 1 900000

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
900000 TABLE ACCESS FULL NARROW (cr=66188 pr=0 pw=0 time=900693 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 60001 0.00 0.05
SQL*Net message from client 60001 0.01 83.19
********************************************************************************

SELECT
COUNT(*) LOCATIONS
FROM
LOCATIONS

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.01 14 17 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.00 0.01 14 17 0 1
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=17 pr=14 pw=0 time=11077 us)
2200 INDEX FAST FULL SCAN IND_LOCATIONS_1 (cr=17 pr=14 pw=0 time=8252 us)(object id 11768

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 1 0.00 0.00
db file scattered read 2 0.00 0.00
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
PRODUCT_CODE,
COUNT(*) PARTS_LARGE_WH
FROM
(SELECT
WAREHOUSE_ID
FROM
LOCATIONS
GROUP BY
WAREHOUSE_ID
HAVING
COUNT(*)>160) W,
PARTS P
WHERE
W.WAREHOUSE_ID=P.PRIMARY_WHS_ID
GROUP BY
PRODUCT_CODE
ORDER BY
PRODUCT_CODE

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.10 1.01 5047 5057 0 5
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.10 1.01 5047 5057 0 5

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
5 SORT GROUP BY (cr=5057 pr=5047 pw=0 time=1012482 us)
33950 HASH JOIN (cr=5057 pr=5047 pw=0 time=144348 us)
4 VIEW (cr=17 pr=14 pw=0 time=34269 us)
4 FILTER (cr=17 pr=14 pw=0 time=34262 us)
20 HASH GROUP BY (cr=17 pr=14 pw=0 time=34283 us)
2200 INDEX FAST FULL SCAN SYS_C004155 (cr=17 pr=14 pw=0 time=14272 us)(object id 1176
99694 TABLE ACCESS FULL PARTS (cr=5040 pr=5033 pw=0 time=4394119 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 2 0.01 0.02
db file scattered read 57 0.04 0.86
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
COUNT(*)
FROM
PARTS
WHERE
QTY_ON_HAND>1000

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.04 0.04 0 5040 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.04 0.05 0 5040 0 1

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=5040 pr=0 pw=0 time=47597 us)
98586 TABLE ACCESS FULL PARTS (cr=5040 pr=0 pw=0 time=98621 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
COUNT(*)
FROM
VENDORS
WHERE
ZIPCODE>' 44444'

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.06 0.33 2513 2518 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.06 0.33 2513 2518 0 1

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=2518 pr=2513 pw=0 time=331552 us)
5528 TABLE ACCESS FULL VENDORS (cr=2518 pr=2513 pw=0 time=317976 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 1 0.01 0.01
db file scattered read 35 0.01 0.27
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
COUNT(*)
FROM
PO_LINE POL,
PARTS P
WHERE
POL.PURC_ORDER_ID BETWEEN '10000' AND '20000'
AND POL.PART_ID=P.PART_ID

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.04 4 4 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.00 0.04 4 4 0 1

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
1 SORT AGGREGATE (cr=4 pr=4 pw=0 time=46956 us)
0 TABLE ACCESS BY INDEX ROWID PO_LINE (cr=4 pr=4 pw=0 time=46936 us)
0 INDEX RANGE SCAN SYS_C004294 (cr=4 pr=4 pw=0 time=46931 us)(object id 11792)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
db file sequential read 4 0.01 0.04
SQL*Net message from client 2 0.00 0.00
********************************************************************************

SELECT
PART_ID,
ABC_CODE,
PRODUCT_CODE,
MAX(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE,ABC_CODE) MAX_QTY_PRD_ABC,
MIN(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE,ABC_CODE) MIN_QTY_PRD_ABC,
DENSE_RANK() OVER (PARTITION BY PRODUCT_CODE,ABC_CODE ORDER BY QTY_ON_HAND) DR_QTY_PRD_ABC,
DENSE_RANK() OVER (PARTITION BY PREF_VENDOR_ID ORDER BY ORDER_POINT) DR_OP_VEND
FROM
PARTS
ORDER BY
PART_ID

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 6648 0.76 0.90 0 5040 0 99694
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 6650 0.76 0.90 0 5040 0 99694

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
99694 SORT ORDER BY (cr=5040 pr=0 pw=0 time=655399 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=488280 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=325941 us)
99694 TABLE ACCESS FULL PARTS (cr=5040 pr=0 pw=0 time=99732 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 6648 0.00 0.00
SQL*Net message from client 6648 0.01 29.21
********************************************************************************

SELECT
V.VENDOR_ID,
V.VENDOR_NAME
FROM
VENDORS V,
(SELECT DISTINCT
PO.VENDOR_ID
FROM
PO_HEADER PO,
PO_LINE POL,
PARTS P
WHERE
PO.PURC_ORDER_ID=POL.PURC_ORDER_ID
AND POL.PART_ID=P.PART_ID
AND P.PRODUCT_CODE='FG') PV
WHERE
V.VENDOR_ID=PV.VENDOR_ID(+)
AND PV.VENDOR_ID IS NULL
ORDER BY
V.VENDOR_ID

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2743 20.10 50.92 262432 277032 0 41120
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2745 20.10 50.93 262432 277032 0 41120

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
41120 MERGE JOIN ANTI (cr=277032 pr=262432 pw=0 time=50840893 us)
49786 SORT JOIN (cr=2518 pr=0 pw=0 time=92325 us)
49786 TABLE ACCESS FULL VENDORS (cr=2518 pr=0 pw=0 time=49822 us)
8666 SORT UNIQUE (cr=274514 pr=262432 pw=0 time=50727983 us)
8666 VIEW (cr=274514 pr=262432 pw=0 time=50634049 us)
8666 HASH UNIQUE (cr=274514 pr=262432 pw=0 time=50625380 us)
9176048 HASH JOIN (cr=274514 pr=262432 pw=0 time=48201601 us)
74768 TABLE ACCESS FULL PARTS (cr=5040 pr=0 pw=0 time=74808 us)
12205347 HASH JOIN (cr=269474 pr=262432 pw=0 time=51081333 us)
500000 TABLE ACCESS FULL PO_HEADER (cr=20197 pr=13178 pw=0 time=6000974 us)
12205347 TABLE ACCESS FULL PO_LINE (cr=249277 pr=249254 pw=0 time=24411761 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2743 0.00 0.00
db file sequential read 9 0.01 0.06
db file scattered read 2098 0.05 31.04
SQL*Net message from client 2743 0.00 3.82
********************************************************************************

SELECT
PART_ID,
DESCRIPTION,
QTY_ON_HAND,
RANK() OVER (PARTITION BY PRODUCT_CODE ORDER BY QTY_ON_HAND DESC NULLS LAST) RANK_PC_QTY,
AVG(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE ORDER BY QTY_ON_HAND) AVG_PC_QTY,
MIN(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE ORDER BY QTY_ON_HAND) MIN_PC_QTY,
MAX(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE ORDER BY QTY_ON_HAND) MAX_PC_QTY,
COUNT(UNIT_MATERIAL_COST) OVER (PARTITION BY PRODUCT_CODE ORDER BY UNIT_MATERIAL_COST) COUNT
RANK() OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND DESC NULLS LAST) RANK_CC_QTY,
AVG(QTY_ON_HAND) OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND) AVG_CC_QTY,
MIN(QTY_ON_HAND) OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND) MIN_CC_QTY,
MAX(QTY_ON_HAND) OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND) MAX_CC_QTY,
COUNT(QTY_ON_HAND) OVER (PARTITION BY COMMODITY_CODE ORDER BY QTY_ON_HAND) COUNT_CC,
RANK() OVER (PARTITION BY NVL(PREF_VENDOR_ID,'IN_HOUSE_FAB') ORDER BY QTY_ON_HAND DESC NULLS
AVG(QTY_ON_HAND) OVER (PARTITION BY NVL(PREF_VENDOR_ID,'IN_HOUSE_FAB') ORDER BY QTY_ON_HAND)
MIN(QTY_ON_HAND) OVER (PARTITION BY NVL(PREF_VENDOR_ID,'IN_HOUSE_FAB') ORDER BY QTY_ON_HAND)
MAX(QTY_ON_HAND) OVER (PARTITION BY NVL(PREF_VENDOR_ID,'IN_HOUSE_FAB') ORDER BY QTY_ON_HAND)
COUNT(QTY_ON_HAND) OVER (PARTITION BY PREF_VENDOR_ID ORDER BY QTY_ON_HAND) COUNT_VENDOR
FROM
PARTS
ORDER BY
PART_ID

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 6648 4.39 4.19 0 5040 0 99694
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 6650 4.39 4.19 0 5040 0 99694

Misses in library cache during parse: 1


Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
99694 SORT ORDER BY (cr=5040 pr=0 pw=0 time=3404941 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=3098351 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=2828897 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=2182338 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=1822985 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=1561917 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=1006405 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=794073 us)
99694 WINDOW SORT (cr=5040 pr=0 pw=0 time=327963 us)
99694 TABLE ACCESS FULL PARTS (cr=5040 pr=0 pw=0 time=99732 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 6648 0.00 0.00
SQL*Net message from client 6648 0.03 91.95
SQL*Net more data to client 6646 0.00 0.16
********************************************************************************

SELECT
PRODUCT_CODE,
RANK(1) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE,
RANK(2) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE,
RANK(3) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE,
RANK(4) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE,
RANK(5) WITHIN GROUP (ORDER BY QTY_ON_HAND DESC NULLS LAST) UNIT_PRICE
FROM
PARTS
GROUP BY
PRODUCT_CODE
ORDER BY
PRODUCT_CODE

call count cpu elapsed disk query current rows


------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 2 0.14 0.15 0 5040 0 5
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.14 0.15 0 5040 0 5
Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 30

Rows Row Source Operation


------- ---------------------------------------------------
5 SORT GROUP BY (cr=5040 pr=0 pw=0 time=150204 us)
99694 TABLE ACCESS FULL PARTS (cr=5040 pr=0 pw=0 time=99731 us)

Elapsed times include waiting on following events:


Event waited on Times Max. Wait Total Waited
---------------------------------------- Waited ---------- ------------
SQL*Net message to client 2 0.00 0.00
SQL*Net message from client 2 0.00 0.00
********************************************************************************

Final Update on Table NARROW


PARSING IN CURSOR #37 len=27 dep=0 uid=30 oct=6 lid=30 tim=223054689 hv=1018754752 ad='4d10566
UPDATE
NARROW
SET
C2=C1
END OF STMT
PARSE #37:c=0,e=629,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=1,tim=223054684
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=223251035 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=223251030
EXEC #43:c=0,e=31,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=223251200
FETCH #43:c=0,e=34,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=223251262
FETCH #43:c=0,e=3,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=223251293
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=34 us)
=====================
PARSING IN CURSOR #42 len=103 dep=1 uid=0 oct=6 lid=0 tim=223251547 hv=3840466760 ad='511dcd48
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #42:c=0,e=16,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=223251545
EXEC #42:c=0,e=137,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=223251801
STAT #42 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=108 us)'
STAT #42 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=40 u
STAT #42 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=12 u
=====================
PARSING IN CURSOR #34 len=296 dep=1 uid=0 oct=6 lid=0 tim=223251943 hv=2379717279 ad='511e3598
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #34:c=0,e=13,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=223251941
EXEC #34:c=0,e=131,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=223252214
STAT #34 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=109 us)'
STAT #34 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=52 u
STAT #34 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=223922755 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=22,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=223922750
EXEC #43:c=0,e=37,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=223922934
FETCH #43:c=0,e=34,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=223922996
FETCH #43:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=223923028
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=33 us)
*** 2008-06-18 08:31:24.750
=====================
PARSING IN CURSOR #42 len=36 dep=1 uid=0 oct=3 lid=0 tim=229514846 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #42:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=229514841
EXEC #42:c=0,e=37,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=229515047
FETCH #42:c=0,e=34,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=229515110
FETCH #42:c=0,e=5,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=229515142
STAT #42 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=33 us)
=====================
PARSING IN CURSOR #34 len=36 dep=1 uid=0 oct=3 lid=0 tim=229533042 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #34:c=0,e=20,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=229533037
EXEC #34:c=0,e=28,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=229533194
FETCH #34:c=0,e=31,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=229533253
FETCH #34:c=0,e=3,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=229533282
STAT #34 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=28 us)
=====================
PARSING IN CURSOR #43 len=103 dep=1 uid=0 oct=6 lid=0 tim=229533516 hv=3840466760 ad='511dcd48
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #43:c=0,e=14,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=229533513
EXEC #43:c=0,e=135,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=229533765
STAT #43 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=106 us)'
STAT #43 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=42 u
STAT #43 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=11 u
=====================
PARSING IN CURSOR #42 len=296 dep=1 uid=0 oct=6 lid=0 tim=229533916 hv=2379717279 ad='511e3598
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #42:c=0,e=14,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=229533914
EXEC #42:c=0,e=137,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=229534193
STAT #42 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=113 us)'
STAT #42 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=55 u
STAT #42 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
=====================
PARSING IN CURSOR #34 len=36 dep=1 uid=0 oct=3 lid=0 tim=231770369 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #34:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=231770364
EXEC #34:c=0,e=33,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=231770567
FETCH #34:c=0,e=34,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=231770630
FETCH #34:c=0,e=3,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=231770660
STAT #34 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=33 us)
=====================
PARSING IN CURSOR #43 len=103 dep=1 uid=0 oct=6 lid=0 tim=231770908 hv=3840466760 ad='511dcd48
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #43:c=0,e=16,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=231770905
EXEC #43:c=0,e=140,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=231771175
STAT #43 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=111 us)'
STAT #43 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=41 u
STAT #43 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=10 u
=====================
PARSING IN CURSOR #42 len=296 dep=1 uid=0 oct=6 lid=0 tim=231771317 hv=2379717279 ad='511e3598
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #42:c=0,e=13,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=231771314
EXEC #42:c=0,e=134,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=231771590
STAT #42 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=113 us)'
STAT #42 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=53 u
STAT #42 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
=====================
PARSING IN CURSOR #34 len=36 dep=1 uid=0 oct=3 lid=0 tim=231964281 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #34:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=231964276
EXEC #34:c=0,e=38,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=231964454
FETCH #34:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=231964516
FETCH #34:c=0,e=5,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=231964548
STAT #34 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=233966331 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=233966326
EXEC #43:c=0,e=37,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=233966512
FETCH #43:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=233966574
FETCH #43:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=233966606
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #42 len=36 dep=1 uid=0 oct=3 lid=0 tim=235669489 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #42:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=235669484
EXEC #42:c=0,e=36,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=235669667
FETCH #42:c=0,e=32,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=235669728
FETCH #42:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=235669761
STAT #42 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=31 us)
=====================
PARSING IN CURSOR #34 len=36 dep=1 uid=0 oct=3 lid=0 tim=235892258 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #34:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=235892253
EXEC #34:c=0,e=32,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=235892432
FETCH #34:c=0,e=34,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=235892494
FETCH #34:c=0,e=2,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=235892523
STAT #34 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=34 us)
=====================
PARSING IN CURSOR #43 len=103 dep=1 uid=0 oct=6 lid=0 tim=235892765 hv=3840466760 ad='511dcd48
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #43:c=0,e=15,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=235892763
EXEC #43:c=0,e=135,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=235893015
STAT #43 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=106 us)'
STAT #43 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=41 u
STAT #43 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=12 u
=====================
PARSING IN CURSOR #42 len=296 dep=1 uid=0 oct=6 lid=0 tim=235893170 hv=2379717279 ad='511e3598
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #42:c=0,e=14,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=235893167
EXEC #42:c=0,e=136,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=235893445
STAT #42 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=113 us)'
STAT #42 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=54 u
STAT #42 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
=====================
PARSING IN CURSOR #34 len=36 dep=1 uid=0 oct=3 lid=0 tim=237465481 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #34:c=0,e=24,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=237465476
EXEC #34:c=0,e=39,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=237465666
FETCH #34:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=237465728
FETCH #34:c=0,e=5,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=237465760
STAT #34 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=239169637 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=239169632
EXEC #43:c=0,e=37,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=239169818
FETCH #43:c=0,e=32,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=239169879
FETCH #43:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=239169911
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=30 us)
*** 2008-06-18 08:31:36.218
=====================
PARSING IN CURSOR #42 len=36 dep=1 uid=0 oct=3 lid=0 tim=240980436 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #42:c=0,e=22,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=240980431
EXEC #42:c=0,e=38,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=240980636
FETCH #42:c=0,e=34,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=240980699
FETCH #42:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=240980731
STAT #42 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #34 len=36 dep=1 uid=0 oct=3 lid=0 tim=241784690 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #34:c=0,e=22,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=241784685
EXEC #34:c=0,e=31,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=241784861
FETCH #34:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=241784922
FETCH #34:c=0,e=3,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=241784952
STAT #34 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=3 pr=0 pw=0 time=32 us)
=====================
PARSING IN CURSOR #43 len=103 dep=1 uid=0 oct=6 lid=0 tim=241785192 hv=3840466760 ad='511dcd48
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
END OF STMT
PARSE #43:c=0,e=15,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=241785189
EXEC #43:c=0,e=135,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,tim=241785443
STAT #43 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TSQ$ (cr=3 pr=0 pw=0 time=107 us)'
STAT #43 id=2 cnt=1 pid=1 pos=1 obj=61 op='TABLE ACCESS CLUSTER TSQ$ (cr=3 pr=0 pw=0 time=41 u
STAT #43 id=3 cnt=1 pid=2 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=11 u
=====================
PARSING IN CURSOR #42 len=296 dep=1 uid=0 oct=6 lid=0 tim=241785585 hv=2379717279 ad='511e3598
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
END OF STMT
PARSE #42:c=0,e=13,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=241785582
EXEC #42:c=0,e=133,p=0,cr=5,cu=1,mis=0,r=1,dep=1,og=4,tim=241785868
STAT #42 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE SEG$ (cr=5 pr=0 pw=0 time=111 us)'
STAT #42 id=2 cnt=1 pid=1 pos=1 obj=14 op='TABLE ACCESS CLUSTER SEG$ (cr=5 pr=0 pw=0 time=54 u
STAT #42 id=3 cnt=1 pid=2 pos=1 obj=9 op='INDEX UNIQUE SCAN I_FILE#_BLOCK# (cr=2 pr=0 pw=0 tim
=====================
PARSING IN CURSOR #34 len=36 dep=1 uid=0 oct=3 lid=0 tim=242728119 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #34:c=0,e=23,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=242728114
EXEC #34:c=0,e=71,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=242847407
FETCH #34:c=0,e=65,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=242847502
FETCH #34:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=242847535
STAT #34 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=64 us)
=====================
PARSING IN CURSOR #43 len=36 dep=1 uid=0 oct=3 lid=0 tim=244197894 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #43:c=0,e=24,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=244197889
EXEC #43:c=0,e=38,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=244198077
FETCH #43:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=244198139
FETCH #43:c=0,e=9,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=244198175
STAT #43 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=31 us)
=====================
PARSING IN CURSOR #42 len=36 dep=1 uid=0 oct=3 lid=0 tim=245527744 hv=1570213724 ad='51e502dc'
select file# from file$ where ts#=:1
END OF STMT
PARSE #42:c=0,e=24,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=245527739
EXEC #42:c=0,e=39,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=245527930
FETCH #42:c=0,e=33,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=245527991
FETCH #42:c=0,e=6,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=4,tim=245528024
STAT #42 id=1 cnt=1 pid=0 pos=1 obj=17 op='TABLE ACCESS FULL FILE$ (cr=4 pr=0 pw=0 time=31 us)
EXEC #37:c=23500000,e=23776565,p=0,cr=191730,cu=5490094,mis=0,r=900000,dep=0,og=1,tim=24683139
WAIT #37: nam='SQL*Net message to client' ela= 3 driver id=1413697536 #bytes=1 p3=0 obj#=8716
WAIT #37: nam='SQL*Net message from client' ela= 423 driver id=1413697536 #bytes=1 p3=0 obj#=8

Final Update of Table NARROW - Timing


Cursor 37 Ver 87 Parse at -877.633402 (0.001841)
Statement Depth 0 (Application Code)
UPDATE
NARROW
SET
C2=C1

Cursor 37 Ver 87 Parse at -877.633407 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed


----------------------------------------------------------------------------------
Cursor 43 Ver 120 Parse at -877.437056 (0.196346)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 120 Parse at -877.437061 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 43 Ver 120 Execute at -877.436891 (Parse to Exec 0.000165),CPU Time 0.000000,Elapsed
Cursor 43 Ver 120 Fetch at -877.436829 (Parse to Fetch 0.000227),CPU Time 0.000000,Elapsed
Cursor 43 Ver 120 Fetch at -877.436798 (Parse to Fetch 0.000258),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 81 Parse at -877.436544 (0.000512)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and

Cursor 42 Ver 81 Parse at -877.436546 (Parse to Parse -0.000002),CPU Time 0.000000,Elapsed


Cursor 42 Ver 81 Execute at -877.436290 (Parse to Exec 0.000254),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 34 Ver 106 Parse at -877.436148 (0.000396)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user

Cursor 34 Ver 106 Parse at -877.436150 (Parse to Parse -0.000002),CPU Time 0.000000,Elapsed
Cursor 34 Ver 106 Execute at -877.435877 (Parse to Exec 0.000271),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 121 Parse at -876.765336 (0.670812)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 121 Parse at -876.765341 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 43 Ver 121 Execute at -876.765157 (Parse to Exec 0.000179),CPU Time 0.000000,Elapsed
Cursor 43 Ver 121 Fetch at -876.765095 (Parse to Fetch 0.000241),CPU Time 0.000000,Elapsed
Cursor 43 Ver 121 Fetch at -876.765063 (Parse to Fetch 0.000273),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 82 Parse at -871.173245 (5.592091)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 42 Ver 82 Parse at -871.173250 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed


Cursor 42 Ver 82 Execute at -871.173044 (Parse to Exec 0.000201),CPU Time 0.000000,Elapsed
Cursor 42 Ver 82 Fetch at -871.172981 (Parse to Fetch 0.000264),CPU Time 0.000000,Elapsed
Cursor 42 Ver 82 Fetch at -871.172949 (Parse to Fetch 0.000296),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 34 Ver 107 Parse at -871.155049 (0.018196)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 34 Ver 107 Parse at -871.155054 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 34 Ver 107 Execute at -871.154897 (Parse to Exec 0.000152),CPU Time 0.000000,Elapsed
Cursor 34 Ver 107 Fetch at -871.154838 (Parse to Fetch 0.000211),CPU Time 0.000000,Elapsed
Cursor 34 Ver 107 Fetch at -871.154809 (Parse to Fetch 0.000240),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 122 Parse at -871.154575 (0.000474)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and

Cursor 43 Ver 122 Parse at -871.154578 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed
Cursor 43 Ver 122 Execute at -871.154326 (Parse to Exec 0.000249),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 83 Parse at -871.154175 (0.000400)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user

Cursor 42 Ver 83 Parse at -871.154177 (Parse to Parse -0.000002),CPU Time 0.000000,Elapsed


Cursor 42 Ver 83 Execute at -871.153898 (Parse to Exec 0.000277),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 34 Ver 108 Parse at -868.917722 (2.236453)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 34 Ver 108 Parse at -868.917727 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 34 Ver 108 Execute at -868.917524 (Parse to Exec 0.000198),CPU Time 0.000000,Elapsed
Cursor 34 Ver 108 Fetch at -868.917461 (Parse to Fetch 0.000261),CPU Time 0.000000,Elapsed
Cursor 34 Ver 108 Fetch at -868.917431 (Parse to Fetch 0.000291),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 123 Parse at -868.917183 (0.000539)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and

Cursor 43 Ver 123 Parse at -868.917186 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed
Cursor 43 Ver 123 Execute at -868.916916 (Parse to Exec 0.000267),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 84 Parse at -868.916774 (0.000409)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user

Cursor 42 Ver 84 Parse at -868.916777 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed


Cursor 42 Ver 84 Execute at -868.916501 (Parse to Exec 0.000273),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 34 Ver 109 Parse at -868.723810 (0.192964)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 34 Ver 109 Parse at -868.723815 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 34 Ver 109 Execute at -868.723637 (Parse to Exec 0.000173),CPU Time 0.000000,Elapsed
Cursor 34 Ver 109 Fetch at -868.723575 (Parse to Fetch 0.000235),CPU Time 0.000000,Elapsed
Cursor 34 Ver 109 Fetch at -868.723543 (Parse to Fetch 0.000267),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 124 Parse at -866.721760 (2.002050)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 124 Parse at -866.721765 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 43 Ver 124 Execute at -866.721579 (Parse to Exec 0.000181),CPU Time 0.000000,Elapsed
Cursor 43 Ver 124 Fetch at -866.721517 (Parse to Fetch 0.000243),CPU Time 0.000000,Elapsed
Cursor 43 Ver 124 Fetch at -866.721485 (Parse to Fetch 0.000275),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 85 Parse at -865.018602 (1.703158)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1
Affected 1,Blks from Buff 5+CU(1),Blks from Disk 0,
Cursor 42 Ver 85 Parse at -865.018607 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 42 Ver 85 Execute at -865.018424 (Parse to Exec 0.000178),CPU Time 0.000000,Elapsed
Cursor 42 Ver 85 Fetch at -865.018363 (Parse to Fetch 0.000239),CPU Time 0.000000,Elapsed
Cursor 42 Ver 85 Fetch at -865.018330 (Parse to Fetch 0.000272),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 34 Ver 110 Parse at -864.795833 (0.222769)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1
Retrievd 0,Blks from Buff 1,Blks from Disk 0
Cursor 34 Ver 110 Parse at -864.795838 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 34 Ver 110 Execute at -864.795659 (Parse to Exec 0.000174),CPU Time 0.000000,Elapsed
Cursor 34 Ver 110 Fetch at -864.795597 (Parse to Fetch 0.000236),CPU Time 0.000000,Elapsed
Cursor 34 Ver 110 Fetch at -864.795568 (Parse to Fetch 0.000265),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 125 Parse at -864.795326 (0.000507)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and
Retrievd 0,Blks from Buff 1,Blks from Disk 0
Cursor 43 Ver 125 Parse at -864.795328 (Parse to Parse -0.000002),CPU Time 0.000000,Elapsed
Cursor 43 Ver 125 Execute at -864.795076 (Parse to Exec 0.000250),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 86 Parse at -864.794921 (0.000405)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user
ffected 0,Blks from Buff 0,Blks from Disk 0,
Cursor 42 Ver 86 Parse at -864.794924 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed
Cursor 42 Ver 86 Execute at -864.794646 (Parse to Exec 0.000275),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 34 Ver 111 Parse at -863.222610 (1.572311)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 34 Ver 111 Parse at -863.222615 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 34 Ver 111 Execute at -863.222425 (Parse to Exec 0.000185),CPU Time 0.000000,Elapsed
Cursor 34 Ver 111 Fetch at -863.222363 (Parse to Fetch 0.000247),CPU Time 0.000000,Elapsed
Cursor 34 Ver 111 Fetch at -863.222331 (Parse to Fetch 0.000279),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 126 Parse at -861.518454 (1.704156)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 126 Parse at -861.518459 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 43 Ver 126 Execute at -861.518273 (Parse to Exec 0.000181),CPU Time 0.000000,Elapsed
Cursor 43 Ver 126 Fetch at -861.518212 (Parse to Fetch 0.000242),CPU Time 0.000000,Elapsed
Cursor 43 Ver 126 Fetch at -861.518180 (Parse to Fetch 0.000274),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 87 Parse at -859.707655 (1.810799)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 42 Ver 87 Parse at -859.707660 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed


Cursor 42 Ver 87 Execute at -859.707455 (Parse to Exec 0.000200),CPU Time 0.000000,Elapsed
Cursor 42 Ver 87 Fetch at -859.707392 (Parse to Fetch 0.000263),CPU Time 0.000000,Elapsed
Cursor 42 Ver 87 Fetch at -859.707360 (Parse to Fetch 0.000295),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 34 Ver 112 Parse at -858.903401 (0.804254)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 34 Ver 112 Parse at -858.903406 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 34 Ver 112 Execute at -858.903230 (Parse to Exec 0.000171),CPU Time 0.000000,Elapsed
Cursor 34 Ver 112 Fetch at -858.903169 (Parse to Fetch 0.000232),CPU Time 0.000000,Elapsed
Cursor 34 Ver 112 Fetch at -858.903139 (Parse to Fetch 0.000262),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 127 Parse at -858.902899 (0.000502)
Statement Depth 1 (Trigger Code)
update tsq$ set blocks=:3,maxblocks=:4,grantor#=:5,priv1=:6,priv2=:7,priv3=:8 where ts#=:1 and

Cursor 43 Ver 127 Parse at -858.902902 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed
Cursor 43 Ver 127 Execute at -858.902648 (Parse to Exec 0.000251),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 88 Parse at -858.902506 (0.000393)
Statement Depth 1 (Trigger Code)
update seg$ set type#=:4,blocks=:5,extents=:6,minexts=:7,maxexts=:8,extsize=:9,extpct=:10,user

Cursor 42 Ver 88 Parse at -858.902509 (Parse to Parse -0.000003),CPU Time 0.000000,Elapsed


Cursor 42 Ver 88 Execute at -858.902223 (Parse to Exec 0.000283),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 34 Ver 113 Parse at -857.959972 (0.942534)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1
,Rows Affected 900000,Blks from Buff 259615+CU(195989191),Blks from Disk 0,
Cursor 34 Ver 113 Parse at -857.959977 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 34 Ver 113 Execute at -857.840684 (Parse to Exec 0.119288),CPU Time 0.000000,Elapsed
Cursor 34 Ver 113 Fetch at -857.840589 (Parse to Fetch 0.119383),CPU Time 0.000000,Elapsed
Cursor 34 Ver 113 Fetch at -857.840556 (Parse to Fetch 0.119416),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 43 Ver 128 Parse at -856.490197 (1.469775)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 43 Ver 128 Parse at -856.490202 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed
Cursor 43 Ver 128 Execute at -856.490014 (Parse to Exec 0.000183),CPU Time 0.000000,Elapsed
Cursor 43 Ver 128 Fetch at -856.489952 (Parse to Fetch 0.000245),CPU Time 0.000000,Elapsed
Cursor 43 Ver 128 Fetch at -856.489916 (Parse to Fetch 0.000281),CPU Time 0.000000,Elapsed
----------------------------------------------------------------------------------
Cursor 42 Ver 89 Parse at -855.160347 (1.329850)
Statement Depth 1 (Trigger Code)
select file# from file$ where ts#=:1

Cursor 42 Ver 89 Parse at -855.160352 (Parse to Parse -0.000005),CPU Time 0.000000,Elapsed


Cursor 42 Ver 89 Execute at -855.160161 (Parse to Exec 0.000186),CPU Time 0.000000,Elapsed
Cursor 42 Ver 89 Fetch at -855.160100 (Parse to Fetch 0.000247),CPU Time 0.000000,Elapsed
Cursor 42 Ver 89 Fetch at -855.160067 (Parse to Fetch 0.000280),CPU Time 0.000000,Elapsed
Cursor 37 Ver 87 Execute at -853.856698 (Parse to Exec 23.776704),CPU Time 23.500000,Elapse
Cursor 37 Ver 87 -853.856586 0.000003 SQL*Net message to client
Cursor 37 Ver 87 -853.856125 0.000423 SQL*Net message from client
----------
Time |
----------
00:00:01 |
|
00:00:01 |
00:00:01 |
|
|
00:00:01 |
00:00:01 |
|
|
00:00:01 |
----------
------------------
(%CPU)| Time |
------------------
(1)| 00:00:27 |
| |
(1)| 00:00:27 |
(1)| 00:00:19 |
(1)| 00:00:19 |
(2)| 00:00:09 |
| |
(2)| 00:00:09 |
(1)| 00:00:09 |
(1)| 00:00:09 |
(1)| 00:00:09 |
------------------
---
|
---
9 |
9 |
---
----------------
CPU)| Time |
----------------
(1)| 00:00:54 |
| |
(1)| 00:00:54 |
(1)| 00:00:38 |
(1)| 00:00:38 |
(1)| 00:00:17 |
| |
(1)| 00:00:17 |
(1)| 00:00:17 |
(1)| 00:00:17 |
(1)| 00:00:17 |
----------------
--------
me |
--------
:00:17 |
|
:00:17 |
:00:01 |
|
:00:01 |
--------
-----
|
-----
:45 |
:45 |
-----
------------------
(%CPU)| Time |
------------------
(0)| 00:00:01 |
| |
(0)| 00:00:01 |
(0)| 00:00:01 |
(0)| 00:00:01 |
| |
| |
(0)| 00:00:01 |
(0)| 00:00:01 |
------------------

---
|
---
9 |
9 |
---
----
|
----
06 |
|
06 |
----
_PER_KEY AVG_DATA_BLOCKS_PER_KEY CLUSTERING_FACTOR
-------- ----------------------- -----------------
1 1 223
1 1 1907
317 4985 4985
556 4985 4985
38 4971 39774
317 4985 4985
1 7 66462
38 4971 39774
1 1 9416
1 1 99683
1 55 500000
1 55 500000
1386 13158 13158
598 13158 26316
1 1 106840
0 0 0
0 0 0
17 3199 11525977
19 3497 12599568
1 1 666825
1 1 1
1 1 49776
--
|
--
|
|
|
--
----------
Time |
----------
00:00:17 |
00:00:17 |
00:00:17 |
00:00:01 |
|
00:00:01 |
00:00:01 |
00:00:17 |
----------
-------------
)| Time |
-------------
)| 00:00:01 |
| |
)| 00:00:01 |
)| 00:00:01 |
-------------
C DR_QTY_PRD_ABC DR_OP_VEND
- -------------- ----------
1 13829 1546
2 1122 7
2 1016 4
0 3788 31056

1 2205 1
4 475 1

-------
e |
-------
00:53 |
00:53 |
00:53 |
00:53 |
00:17 |
-------
--------------
U)| Time |
--------------
2)| 00:31:06 |
2)| 00:31:06 |
1)| 00:00:14 |
1)| 00:00:09 |
2)| 00:30:53 |
2)| 00:30:53 |
2)| 00:30:53 |
1)| 00:18:40 |
1)| 00:00:17 |
1)| 00:18:22 |
2)| 00:00:45 |
1)| 00:13:38 |
--------------
-------------
)| Time |
-------------
)| 00:02:53 |
)| 00:02:53 |
)| 00:02:53 |
)| 00:02:53 |
)| 00:02:53 |
)| 00:02:53 |
)| 00:02:53 |
)| 00:02:53 |
)| 00:02:53 |
)| 00:02:53 |
)| 00:00:17 |
-------------
34 us)(object id 11767)

80*51.491976)*10000000,0))))||'VEN'
object id 11768)
(object id 11767)
R_QTY_PRD_ABC,
RANK_PC_QTY,

IAL_COST) COUNT_PC,
) RANK_CC_QTY,

HAND DESC NULLS LAST) RANK_VENDOR_QTY,


BY QTY_ON_HAND) AVG_VENDOR_QTY,
BY QTY_ON_HAND) MIN_VENDOR_QTY,
BY QTY_ON_HAND) MAX_VENDOR_QTY,
UNT_VENDOR
752 ad='4d105668'

4 ad='51e502dc'

w=0 time=34 us)'

60 ad='511dcd48'
here ts#=:1 and user#=:2

pw=0 time=40 us)'


pw=0 time=12 us)'

79 ad='511e3598'
extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1
pw=0 time=52 us)'
2 pr=0 pw=0 time=10 us)'

4 ad='51e502dc'

w=0 time=33 us)'

4 ad='51e502dc'

w=0 time=33 us)'

4 ad='51e502dc'

w=0 time=28 us)'

60 ad='511dcd48'
here ts#=:1 and user#=:2

pw=0 time=42 us)'


pw=0 time=11 us)'

79 ad='511e3598'
extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

pw=0 time=55 us)'


2 pr=0 pw=0 time=10 us)'

4 ad='51e502dc'

w=0 time=33 us)'

60 ad='511dcd48'
here ts#=:1 and user#=:2

pw=0 time=41 us)'


pw=0 time=10 us)'

79 ad='511e3598'
extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

pw=0 time=53 us)'


2 pr=0 pw=0 time=9 us)'

4 ad='51e502dc'

w=0 time=32 us)'

4 ad='51e502dc'

w=0 time=32 us)'

4 ad='51e502dc'
w=0 time=31 us)'

4 ad='51e502dc'

w=0 time=34 us)'

60 ad='511dcd48'
here ts#=:1 and user#=:2

pw=0 time=41 us)'


pw=0 time=12 us)'

79 ad='511e3598'
extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

pw=0 time=54 us)'


2 pr=0 pw=0 time=10 us)'

4 ad='51e502dc'

w=0 time=32 us)'

4 ad='51e502dc'

w=0 time=30 us)'


4 ad='51e502dc'

w=0 time=32 us)'

4 ad='51e502dc'

w=0 time=32 us)'

60 ad='511dcd48'
here ts#=:1 and user#=:2

pw=0 time=41 us)'


pw=0 time=11 us)'

79 ad='511e3598'
extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

pw=0 time=54 us)'


2 pr=0 pw=0 time=10 us)'

4 ad='51e502dc'

w=0 time=64 us)'

4 ad='51e502dc'
w=0 time=31 us)'

4 ad='51e502dc'

w=0 time=31 us)'


=1,tim=246831393
p3=0 obj#=8716 tim=246831505
s=1 p3=0 obj#=8716 tim=246831966

000000,Elapsed Time 0.000629,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,**Shared Pool Misses** 1

.000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000031,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000034,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000003,Rows Retrievd 0,Blks from Buff 0,Blks from Disk 0

here ts#=:1 and user#=:2

000000,Elapsed Time 0.000016,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000137,Rows Affected 1,Blks from Buff 3+CU(1),Blks from Disk 0,

extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

.000000,Elapsed Time 0.000013,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000131,Rows Affected 1,Blks from Buff 5+CU(1),Blks from Disk 0,

.000000,Elapsed Time 0.000022,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000037,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000034,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000006,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000037,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
000000,Elapsed Time 0.000034,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
000000,Elapsed Time 0.000005,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

.000000,Elapsed Time 0.000020,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000028,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000031,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000003,Rows Retrievd 0,Blks from Buff 0,Blks from Disk 0

here ts#=:1 and user#=:2

.000000,Elapsed Time 0.000014,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000135,Rows Affected 1,Blks from Buff 3+CU(1),Blks from Disk 0,

extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

000000,Elapsed Time 0.000014,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000137,Rows Affected 1,Blks from Buff 5+CU(1),Blks from Disk 0,

.000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000033,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000034,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000003,Rows Retrievd 0,Blks from Buff 0,Blks from Disk 0

here ts#=:1 and user#=:2

.000000,Elapsed Time 0.000016,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000140,Rows Affected 1,Blks from Buff 3+CU(1),Blks from Disk 0,

extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

000000,Elapsed Time 0.000013,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000134,Rows Affected 1,Blks from Buff 5+CU(1),Blks from Disk 0,

.000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000038,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000033,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000005,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

.000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000037,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000033,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000006,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000036,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
000000,Elapsed Time 0.000032,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
000000,Elapsed Time 0.000006,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

.000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000032,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000034,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000002,Rows Retrievd 0,Blks from Buff 0,Blks from Disk 0

here ts#=:1 and user#=:2

.000000,Elapsed Time 0.000015,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000135,Rows Affected 1,Blks from Buff 3+CU(1),Blks from Disk 0,

extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

000000,Elapsed Time 0.000014,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000136,Rows Affected 1,Blks from Buff 5+CU(1),Blks from Disk 0,

.000000,Elapsed Time 0.000024,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000039,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000033,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000005,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

.000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000037,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000032,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000006,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

000000,Elapsed Time 0.000022,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000038,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
000000,Elapsed Time 0.000034,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
000000,Elapsed Time 0.000006,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

.000000,Elapsed Time 0.000022,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000031,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000033,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000003,Rows Retrievd 0,Blks from Buff 0,Blks from Disk 0

here ts#=:1 and user#=:2

.000000,Elapsed Time 0.000015,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000135,Rows Affected 1,Blks from Buff 3+CU(1),Blks from Disk 0,

extpct=:10,user#=:11,iniexts=:12,lists=decode(:13, 65535, NULL, :13),groups=decode(:14, 65535, NULL, :1

000000,Elapsed Time 0.000013,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000133,Rows Affected 1,Blks from Buff 5+CU(1),Blks from Disk 0,

.000000,Elapsed Time 0.000023,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000071,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000065,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000006,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

.000000,Elapsed Time 0.000024,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
.000000,Elapsed Time 0.000038,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
.000000,Elapsed Time 0.000033,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
.000000,Elapsed Time 0.000009,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0

000000,Elapsed Time 0.000024,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,Goal=CHOOSE
000000,Elapsed Time 0.000039,Rows Affected 0,Blks from Buff 0,Blks from Disk 0,
000000,Elapsed Time 0.000033,Rows Retrievd 1,Blks from Buff 3,Blks from Disk 0
000000,Elapsed Time 0.000006,Rows Retrievd 0,Blks from Buff 1,Blks from Disk 0
3.500000,Elapsed Time 23.776565,Rows Affected 900000,Blks from Buff 191730+CU(5490094),Blks from Disk 0
:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts
:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts
:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts
:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts
:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts
ared Pool Misses** 1,Goal=ALL_ROWS

:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts


:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts
:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts
:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts
:14, 65535, NULL, :14), cachehint=:15, hwmincr=:16, spare1=DECODE(:17,0,NULL,:17),scanhint=:18 where ts

94),Blks from Disk 0,


anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
anhint=:18 where ts#=:1 and file#=:2 and block#=:3
ALTER SYSTEM FLUSH BUFFER_CACHE;
ALTER SYSTEM FLUSH BUFFER_CACHE;

spool c:\testnew8.txt
set autotrace on
set timing on

SELECT
COUNT(*)
FROM
ALL_OBJECTS;

SELECT 'CREATING LOCATIONS' FROM DUAL;

ALTER SESSION SET TRACEFILE_IDENTIFIER = 'CREATE_TABLES';


ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT FOREVER, LEVEL 8';

CREATE TABLE LOCATIONS(


LOCATION_ID VARCHAR2(15) NOT NULL ENABLE,
WAREHOUSE_ID VARCHAR2(15) NOT NULL ENABLE,
DESCRIPTION VARCHAR2(80),
LOCATION_TYPE CHAR(1) NOT NULL ENABLE,
CONSTRAINT "CHK_LOCATIONS" CHECK (
(LOCATION_TYPE = 'T' Or LOCATION_TYPE = 'R' Or LOCATION_TYPE = 'F')) ENABLE,
PRIMARY KEY (WAREHOUSE_ID, LOCATION_ID));

CREATE INDEX IND_LOCATIONS_1 ON LOCATIONS (LOCATION_ID);

SELECT 'CREATING UMS' FROM DUAL;

CREATE TABLE UMS (


UNIT_OF_MEASURE VARCHAR2(15) NOT NULL ENABLE,
DESCRIPTION VARCHAR2(40),
UOM_SCALE NUMBER NOT NULL ENABLE,
CONSTRAINT "CHK_UOM_SCALE" CHECK (
(UOM_SCALE >= 0 And UOM_SCALE <= 4)) ENABLE,
PRIMARY KEY ("UNIT_OF_MEASURE"));

SELECT 'CREATING VENDORS' FROM DUAL;

CREATE TABLE VENDORS (


VENDOR_ID VARCHAR2(15) NOT NULL ENABLE,
VENDOR_NAME VARCHAR2(50),
ADDR_1 VARCHAR2(50),
ADDR_2 VARCHAR2(50),
ADDR_3 VARCHAR2(50),
CITY VARCHAR2(30),
STATE VARCHAR2(10),
ZIPCODE VARCHAR2(10),
COUNTRY VARCHAR2(50),
CONTACT_FIRST_NAME VARCHAR2(30),
CONTACT_LAST_NAME VARCHAR2(30),
CONTACT_INITIAL VARCHAR2(2),
CONTACT_POSITION VARCHAR2(20),
CONTACT_HONORIFIC VARCHAR2(4),
CONTACT_SALUTATION VARCHAR2(60),
CONTACT_PHONE VARCHAR2(20),
CONTACT_FAX VARCHAR2(20),
REMIT_TO_NAME VARCHAR2(50),
REMIT_TO_ADDR_1 VARCHAR2(50),
REMIT_TO_ADDR_2 VARCHAR2(50),
REMIT_TO_ADDR_3 VARCHAR2(50),
REMIT_TO_CITY VARCHAR2(30),
REMIT_TO_STATE VARCHAR2(10),
REMIT_TO_ZIPCODE VARCHAR2(10),
REMIT_TO_COUNTRY VARCHAR2(50),
FREE_ON_BOARD VARCHAR2(25),
SHIP_VIA VARCHAR2(40),
BUYER VARCHAR2(15),
REPORT_1099_MISC CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
TERMS_NET_TYPE CHAR(1) DEFAULT ' ' NOT NULL ENABLE,
TERMS_NET_DAYS NUMBER,
TERMS_NET_DATE DATE,
TERMS_DISC_TYPE CHAR(1) DEFAULT ' ' NOT NULL ENABLE,
TERMS_DISC_DAYS NUMBER,
TERMS_DISC_DATE DATE,
TERMS_DISC_PERCENT NUMBER(5,3),
TERMS_DESCRIPTION VARCHAR2(50),
USER_1 VARCHAR2(80),
USER_2 VARCHAR2(80),
USER_3 VARCHAR2(80),
USER_4 VARCHAR2(80),
USER_5 VARCHAR2(80),
USER_6 VARCHAR2(80),
USER_7 VARCHAR2(80),
USER_8 VARCHAR2(80),
USER_9 VARCHAR2(80),
USER_10 VARCHAR2(80),
CONSTRAINT "CHK_VENDORS" CHECK (
(REPORT_1099_MISC = 'Y' Or REPORT_1099_MISC = 'N')
AND (TERMS_NET_TYPE = 'A'
Or TERMS_NET_TYPE = 'M'
Or TERMS_NET_TYPE = 'D'
Or TERMS_NET_TYPE = 'N'
Or TERMS_NET_TYPE = 'E')
AND (TERMS_DISC_TYPE = 'A'
Or TERMS_DISC_TYPE = 'M'
Or TERMS_DISC_TYPE = 'D'
Or TERMS_DISC_TYPE = 'N'
Or TERMS_DISC_TYPE = 'E')) ENABLE,
PRIMARY KEY (VENDOR_ID));

CREATE TABLE VENDORS_TEMP AS


SELECT
*
FROM
VENDORS;

SELECT 'CREATING PARTS' FROM DUAL;

CREATE TABLE PARTS (


PART_ID VARCHAR2(30) NOT NULL ENABLE,
DESCRIPTION VARCHAR2(40),
STOCK_UM VARCHAR2(15) NOT NULL ENABLE,
PLANNING_LEADTIME NUMBER DEFAULT 0 NOT NULL ENABLE,
ORDER_POLICY CHAR(1) DEFAULT 'M' NOT NULL ENABLE,
ORDER_POINT NUMBER(14,4),
SAFETY_STOCK_QTY NUMBER(14,4),
FIXED_ORDER_QTY NUMBER(14,4),
DAYS_OF_SUPPLY NUMBER,
MINIMUM_ORDER_QTY NUMBER(14,4),
MAXIMUM_ORDER_QTY NUMBER(14,4),
ENGINEERING_MSTR VARCHAR2(3),
PRODUCT_CODE VARCHAR2(15),
COMMODITY_CODE VARCHAR2(15),
MFG_NAME VARCHAR2(30),
MFG_PART_ID VARCHAR2(30),
FABRICATED CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
PURCHASED CHAR(1) DEFAULT 'Y' NOT NULL ENABLE,
STOCKED CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
DETAIL_ONLY CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
DEMAND_HISTORY CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
TOOL_OR_FIXTURE CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
INSPECTION_REQD CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
WEIGHT NUMBER(14,4),
WEIGHT_UM VARCHAR2(15),
DRAWING_ID VARCHAR2(15),
DRAWING_REV_NO VARCHAR2(8),
PREF_VENDOR_ID VARCHAR2(15),
PRIMARY_WHS_ID VARCHAR2(15),
PRIMARY_LOC_ID VARCHAR2(15),
BACKFLUSH_WHS_ID VARCHAR2(15),
BACKFLUSH_LOC_ID VARCHAR2(15),
INSPECT_WHS_ID VARCHAR2(15),
INSPECT_LOC_ID VARCHAR2(15),
MRP_REQUIRED CHAR(1) DEFAULT 'N',
MRP_EXCEPTIONS CHAR(1) DEFAULT 'N',
PRIVATE_UM_CONV CHAR(1) DEFAULT 'N',
AUTO_BACKFLUSH CHAR(1) DEFAULT 'Y',
PLANNER_USER_ID VARCHAR2(20),
BUYER_USER_ID VARCHAR2(20),
ABC_CODE CHAR(1),
ANNUAL_USAGE_QTY NUMBER(15,4),
INVENTORY_LOCKED CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
UNIT_MATERIAL_COST NUMBER(20,6) DEFAULT 0 NOT NULL ENABLE,
UNIT_LABOR_COST NUMBER(20,6) DEFAULT 0 NOT NULL ENABLE,
UNIT_BURDEN_COST NUMBER(20,6) DEFAULT 0 NOT NULL ENABLE,
UNIT_SERVICE_COST NUMBER(20,6) DEFAULT 0 NOT NULL ENABLE,
BURDEN_PERCENT NUMBER(5,2) DEFAULT 0 NOT NULL ENABLE,
BURDEN_PER_UNIT NUMBER(20,6) DEFAULT 0 NOT NULL ENABLE,
PURC_BUR_PERCENT NUMBER(6,3) DEFAULT 0 NOT NULL ENABLE,
PURC_BUR_PER_UNIT NUMBER(20,6) DEFAULT 0 NOT NULL ENABLE,
FIXED_COST NUMBER(15,2) DEFAULT 0 NOT NULL ENABLE,
UNIT_PRICE NUMBER(20,6),
NEW_MATERIAL_COST NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
NEW_LABOR_COST NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
NEW_BURDEN_COST NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
NEW_SERVICE_COST NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
NEW_BURDEN_PERCENT NUMBER(5,2) DEFAULT 0 NOT NULL ENABLE,
NEW_BURDEN_PERUNIT NUMBER(20,6) DEFAULT 0 NOT NULL ENABLE,
NEW_FIXED_COST NUMBER(15,2) DEFAULT 0 NOT NULL ENABLE,
MAT_GL_ACCT_ID VARCHAR2(30),
LAB_GL_ACCT_ID VARCHAR2(30),
BUR_GL_ACCT_ID VARCHAR2(30),
SER_GL_ACCT_ID VARCHAR2(30),
QTY_ON_HAND NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
QTY_AVAILABLE_ISS NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
QTY_AVAILABLE_MRP NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
QTY_ON_ORDER NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
QTY_IN_DEMAND NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
USER_1 VARCHAR2(80),
USER_2 VARCHAR2(80),
USER_3 VARCHAR2(80),
USER_4 VARCHAR2(80),
USER_5 VARCHAR2(80),
USER_6 VARCHAR2(80),
USER_7 VARCHAR2(80),
USER_8 VARCHAR2(80),
USER_9 VARCHAR2(80),
USER_10 VARCHAR2(80),
LT_PLUS_DAYS NUMBER,
LT_MINUS_DAYS NUMBER,
STATUS CHAR(1),
USE_SUPPLY_BEF_LT CHAR(1),
QTY_COMMITTED NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
PRT_CREATE_USER_ID VARCHAR2(30) DEFAULT USER,
PRT_CREATE_DATE DATE DEFAULT SYSDATE,
CONSTRAINT "CHK_PART1" CHECK (
(PLANNING_LEADTIME >= 0)
AND (ORDER_POLICY = 'N'
Or ORDER_POLICY = 'M'
Or ORDER_POLICY = 'F'
Or ORDER_POLICY = 'E'
Or ORDER_POLICY = 'D'
Or ORDER_POLICY = 'P')
AND (ORDER_POINT >= 0)
AND (SAFETY_STOCK_QTY >= 0)
AND (FIXED_ORDER_QTY >= 0)
AND (DAYS_OF_SUPPLY >= 0)
AND (MINIMUM_ORDER_QTY >= 0)
AND (MAXIMUM_ORDER_QTY >= 0)
AND (FABRICATED = 'Y' Or FABRICATED = 'N')
AND (PURCHASED = 'Y' Or PURCHASED = 'N')
AND (STOCKED = 'Y' Or STOCKED = 'N')
AND (DETAIL_ONLY = 'Y' Or DETAIL_ONLY = 'N')
AND (DEMAND_HISTORY = 'Y' Or DEMAND_HISTORY = 'N')
AND (TOOL_OR_FIXTURE = 'Y' Or TOOL_OR_FIXTURE = 'N')
AND (MRP_REQUIRED = 'Y' Or MRP_REQUIRED = 'N')
AND (MRP_EXCEPTIONS = 'Y' Or MRP_EXCEPTIONS = 'N')
AND (PRIVATE_UM_CONV = 'Y' Or PRIVATE_UM_CONV = 'N')
AND (INVENTORY_LOCKED = 'Y' Or INVENTORY_LOCKED = 'N')
AND (INSPECTION_REQD = 'Y' Or INSPECTION_REQD = 'N')) ENABLE,
PRIMARY KEY (PART_ID),
CONSTRAINT "FKEY_INSP" FOREIGN KEY (INSPECT_WHS_ID, INSPECT_LOC_ID)
REFERENCES LOCATIONS (WAREHOUSE_ID, LOCATION_ID) ENABLE,
CONSTRAINT "FKEY_PREF_VENDOR" FOREIGN KEY (PREF_VENDOR_ID)
REFERENCES VENDORS (VENDOR_ID) ENABLE,
CONSTRAINT "FKEY_UM" FOREIGN KEY (WEIGHT_UM)
REFERENCES UMS (UNIT_OF_MEASURE) ENABLE,
CONSTRAINT "FKEY_STOCK_UM" FOREIGN KEY (STOCK_UM)
REFERENCES UMS (UNIT_OF_MEASURE) ENABLE);

CREATE INDEX IND_PARTS_1 ON PARTS (MRP_EXCEPTIONS);


CREATE INDEX IND_PARTS_2 ON PARTS (MFG_NAME, MFG_PART_ID);
CREATE INDEX IND_PARTS_3 ON PARTS (WEIGHT_UM);
CREATE INDEX IND_PARTS_4 ON PARTS (MRP_REQUIRED);
CREATE INDEX IND_PARTS_5 ON PARTS (PREF_VENDOR_ID);
CREATE INDEX IND_PARTS_6 ON PARTS (STOCK_UM);
CREATE INDEX IND_PARTS_7 ON PARTS (ORDER_POINT);

CREATE TABLE PARTS_TEMP AS


SELECT
*
FROM
PARTS;

SELECT 'CREATING PO_HEADER' FROM DUAL;

CREATE TABLE PO_HEADER (


PURC_ORDER_ID VARCHAR2(15) NOT NULL ENABLE,
VENDOR_ID VARCHAR2(15) NOT NULL ENABLE,
CONTACT_FIRST_NAME VARCHAR2(30),
CONTACT_LAST_NAME VARCHAR2(30),
CONTACT_INITIAL VARCHAR2(2),
CONTACT_POSITION VARCHAR2(20),
CONTACT_HONORIFIC VARCHAR2(4),
CONTACT_SALUTATION VARCHAR2(60),
CONTACT_PHONE VARCHAR2(20),
CONTACT_FAX VARCHAR2(20),
PURC_ORD_ADDR_NO NUMBER,
SHIPTO_ADDR_NO NUMBER,
ORDER_DATE DATE DEFAULT SYSDATE NOT NULL ENABLE,
DESIRED_RECV_DATE DATE DEFAULT TRUNC(SYSDATE),
BUYER VARCHAR2(15),
FREE_ON_BOARD VARCHAR2(25),
SHIP_VIA VARCHAR2(40),
SALES_TAX_GROUP_ID VARCHAR2(15),
PO_STATUS CHAR(1) DEFAULT ' ' NOT NULL ENABLE,
BACK_ORDER CHAR(1) DEFAULT ' ' NOT NULL ENABLE,
SELL_RATE NUMBER(15,8) NOT NULL ENABLE,
BUY_RATE NUMBER(15,8) NOT NULL ENABLE,
ENTITY_ID VARCHAR2(5) NOT NULL ENABLE,
POSTING_CANDIDATE CHAR(1) DEFAULT 'Y' NOT NULL ENABLE,
LAST_RECEIVED_DATE DATE,
TOTAL_AMT_ORDERED NUMBER(15,2) DEFAULT 0 NOT NULL ENABLE,
TOTAL_AMT_RECVD NUMBER(15,2) DEFAULT 0 NOT NULL ENABLE,
MARKED_FOR_PURGE CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
EXCH_RATE_FIXED CHAR(1) DEFAULT 'N' NOT NULL ENABLE,
PROMISE_DATE DATE,
PRINTED_DATE DATE,
TERMS_DISC_TYPE CHAR(1),
EDI_BLANKET_FLAG CHAR(1),
EDI_BLANKET_PO_NO VARCHAR2(30),
CONTRACT_ID VARCHAR2(30),
SHIPTO_ID VARCHAR2(20),
TERMS_NET_TYPE CHAR(1) DEFAULT ' ' NOT NULL ENABLE,
TERMS_NET_DAYS NUMBER,
TERMS_NET_DATE DATE,
TERMS_DISC_DAYS NUMBER,
TERMS_DISC_DATE DATE,
TERMS_DISC_PERCENT NUMBER(5,3),
TERMS_DESCRIPTION VARCHAR2(50),
CURRENCY_ID VARCHAR2(15),
WAREHOUSE_ID VARCHAR2(15),
CREATE_DATE DATE DEFAULT SYSDATE NOT NULL ENABLE,
CONTACT_MOBILE VARCHAR2(20),
CONTACT_EMAIL VARCHAR2(50),
USER_1 VARCHAR2(80),
USER_2 VARCHAR2(80),
USER_3 VARCHAR2(80),
USER_4 VARCHAR2(80),
USER_5 VARCHAR2(80),
USER_6 VARCHAR2(80),
USER_7 VARCHAR2(80),
USER_8 VARCHAR2(80),
USER_9 VARCHAR2(80),
USER_10 VARCHAR2(80),
UDF_LAYOUT_ID VARCHAR2(15),
PO_CREATE_USER_ID VARCHAR2(30) DEFAULT USER,
CONSTRAINT "CHK_PO" CHECK (
(PO_STATUS = 'F' Or PO_STATUS = 'R' Or PO_STATUS = 'C' Or PO_STATUS = 'X')
AND (BACK_ORDER = 'Y' Or BACK_ORDER = 'N')
AND (POSTING_CANDIDATE = 'Y' Or POSTING_CANDIDATE = 'N')
AND (MARKED_FOR_PURGE = 'Y' Or MARKED_FOR_PURGE = 'N')
AND (TERMS_DISC_TYPE = 'A' Or TERMS_DISC_TYPE = 'M' Or TERMS_DISC_TYPE = 'D' Or TERMS_DISC
AND (TERMS_NET_TYPE = 'A' Or TERMS_NET_TYPE = 'M' Or TERMS_NET_TYPE = 'D' Or TERMS_NET_TYP
PRIMARY KEY (PURC_ORDER_ID));

CREATE INDEX IND_PO_HEADER_1 ON PO_HEADER (VENDOR_ID, PURC_ORD_ADDR_NO);


CREATE INDEX IND_PO_HEADER_2 ON PO_HEADER (VENDOR_ID);
CREATE INDEX IND_PO_HEADER_3 ON PO_HEADER (SHIPTO_ADDR_NO);
CREATE INDEX IND_PO_HEADER_4 ON PO_HEADER (POSTING_CANDIDATE);

CREATE TABLE PO_HEADER_TEMP AS


SELECT
*
FROM
PO_HEADER;

SELECT 'CREATING PO_LINE' FROM DUAL;

CREATE TABLE PO_LINE (


PURC_ORDER_ID VARCHAR2(15) NOT NULL ENABLE,
LINE_NO NUMBER NOT NULL ENABLE,
PART_ID VARCHAR2(30),
VENDOR_PART_ID VARCHAR2(30),
SERVICE_ID VARCHAR2(15),
USER_ORDER_QTY NUMBER(14,4) NOT NULL ENABLE,
ORDER_QTY NUMBER(14,4) NOT NULL ENABLE,
PURCHASE_UM VARCHAR2(15),
UNIT_PRICE NUMBER(20,6) NOT NULL ENABLE,
TRADE_DISC_PERCENT NUMBER(6,3) DEFAULT 0 NOT NULL ENABLE,
FIXED_CHARGE NUMBER(15,2),
EST_FREIGHT NUMBER(15,2) DEFAULT 0 NOT NULL ENABLE,
GL_EXPENSE_ACCT_ID VARCHAR2(30),
SALES_TAX_GROUP_ID VARCHAR2(15),
PRODUCT_CODE VARCHAR2(15),
COMMODITY_CODE VARCHAR2(15),
DESIRED_RECV_DATE DATE,
LINE_STATUS CHAR(1) DEFAULT ' ' NOT NULL ENABLE,
LAST_RECEIVED_DATE DATE,
TOTAL_ACT_FREIGHT NUMBER(15,2) DEFAULT 0 NOT NULL ENABLE,
TOTAL_USR_RECD_QTY NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
TOTAL_RECEIVED_QTY NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
TOTAL_AMT_RECVD NUMBER(15,2) DEFAULT 0 NOT NULL ENABLE,
TOTAL_AMT_ORDERED NUMBER(15,2) DEFAULT 0 NOT NULL ENABLE,
MFG_NAME VARCHAR2(30),
MFG_PART_ID VARCHAR2(30),
PROMISE_DATE DATE,
PIECE_COUNT NUMBER(14,4),
LENGTH NUMBER(14,4),
WIDTH NUMBER(14,4),
HEIGHT NUMBER(14,4),
DIMENSIONS_UM VARCHAR2(15),
VAT_CODE VARCHAR2(15),
TOTAL_DISPATCH_QTY NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
TOTAL_USR_DISP_QTY NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
MINIMUM_CHARGE NUMBER(15,2),
LAST_DISPATCH_DATE DATE,
EDI_BLANKET_QTY NUMBER(14,4),
EDI_BLANKET_USRQTY NUMBER(14,4),
EDI_ACCUM_QTY_REL NUMBER(14,4),
EDI_ACCUM_USR_REL NUMBER(14,4),
EDI_ACCUM_QTY_REC NUMBER(14,4),
EDI_ACCUM_USR_REC NUMBER(14,4),
EDI_LAST_REC_DATE DATE,
EDI_RELEASE_NO VARCHAR2(3),
EDI_RELEASE_DATE DATE,
EDI_QTY_RELEASED NUMBER(14,4),
EDI_USR_QTY_REL NUMBER(14,4),
EDI_REQ_REL_DATE DATE,
SHIPTO_ID VARCHAR2(20),
WAREHOUSE_ID VARCHAR2(15),
WIP_VAS_REQUIRED CHAR(1),
ALLOCATED_QTY NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
FULFILLED_QTY NUMBER(14,4) DEFAULT 0 NOT NULL ENABLE,
HTS_CODE VARCHAR2(20),
ORIG_COUNTRY_ID VARCHAR2(15),
USER_1 VARCHAR2(80),
USER_2 VARCHAR2(80),
USER_3 VARCHAR2(80),
USER_4 VARCHAR2(80),
USER_5 VARCHAR2(80),
USER_6 VARCHAR2(80),
USER_7 VARCHAR2(80),
USER_8 VARCHAR2(80),
USER_9 VARCHAR2(80),
USER_10 VARCHAR2(80),
UDF_LAYOUT_ID VARCHAR2(15),
POL_CREATE_USER_ID VARCHAR2(30) DEFAULT USER,
POL_CREATE_DATE DATE DEFAULT SYSDATE,
CONSTRAINT "CHK_PO_LINE" CHECK ((LINE_STATUS = 'A' Or LINE_STATUS = 'C')) ENABLE,
PRIMARY KEY (PURC_ORDER_ID, LINE_NO),
CONSTRAINT "FKEY_PO_HEADER" FOREIGN KEY (PURC_ORDER_ID)
REFERENCES PO_HEADER (PURC_ORDER_ID) ON DELETE CASCADE ENABLE,
CONSTRAINT "FKEY_PART_ID" FOREIGN KEY (PART_ID)
REFERENCES PARTS (PART_ID) ENABLE,
CONSTRAINT "FKEY_PURC_UM" FOREIGN KEY (PURCHASE_UM)
REFERENCES UMS (UNIT_OF_MEASURE) ENABLE);

CREATE INDEX IND_PO_LINE_1 ON PO_LINE (WAREHOUSE_ID);


CREATE INDEX IND_PO_LINE_2 ON PO_LINE (SERVICE_ID);
CREATE INDEX IND_PO_LINE_3 ON PO_LINE (PART_ID);
CREATE INDEX IND_PO_LINE_4 ON PO_LINE (VENDOR_PART_ID);

CREATE TABLE PO_LINE_TEMP AS


SELECT
*
FROM
PO_LINE;

CREATE TABLE NARROW (


C1 NUMBER,
C2 NUMBER);

SELECT 'INSERTING INTO LOCATIONS' FROM DUAL;

ALTER SESSION SET TRACEFILE_IDENTIFIER = 'INSERT_LOCATIONS_UMS';

INSERT INTO
LOCATIONS
SELECT /*+ ORDERED */
LOC.LOCATION_ID,
WH.WAREHOUSE_ID,
RPAD(WH.WAREHOUSE_ID||'-'||LOC.LOCATION_ID,60),
DECODE(MOD(ROWNUM,5),0,'T',1,'R','F')
FROM
(SELECT
TRIM(TO_CHAR(ABS(ROUND(COS(ROWNUM*3.1415/180*1.2)*1000000,0))))||'LOC' LOCATION_ID,
ROWNUM RN
FROM
DUAL
CONNECT BY
LEVEL<=200) LOC,
(SELECT
TRIM(TO_CHAR(ABS(ROUND(SIN(ROWNUM*3.1415/180*10.1)*1000000,0))))||'WH' WAREHOUSE_ID,
ROWNUM RN
FROM
DUAL
CONNECT BY
LEVEL<=20) WH
WHERE
(MOD(WH.RN,10)*20+1) <= LOC.RN;

COMMIT;

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'LOCATIONS',CASCADE=>TRUE);

INSERT INTO
UMS
SELECT
DECODE(ROWNUM,1,'EA',2,'PC',3,'FT',4,'METER',5,'KG',6,'CASE',7,'LBS',8,'DOZEN'),
NULL,

FROM
DUAL
CONNECT BY
LEVEL<=8;

COMMIT;

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'UMS',CASCADE=>TRUE);

SELECT 'INSERTING INTO VENDORS' FROM DUAL;


ALTER SESSION SET TRACEFILE_IDENTIFIER = 'INSERT_VENDORS';

INSERT INTO
VENDORS_TEMP
SELECT
TRIM(TO_CHAR(ABS(ROUND(COS(ROWNUM*3.14159265/180*51.491976)*10000000,0))))||'VEN' VENDOR_ID,
TRIM(TO_CHAR(ABS(ROUND(COS(ROWNUM*3.1415/180*.49)*1000000,0))))||'VENDOR NAME' VENDOR_NAME,
RPAD('ADDR_1',40) ADDR_1,
RPAD('ADDR_2',35) ADDR_2,
NULL ADDR_3,
RPAD('CITY',20) CITY,
'CA' STATE,
LPAD(TO_CHAR(ROWNUM),6) ZIPCODE,
'NONE' COUNTRY,
NULL CONTACT_FIRST_NAME,
NULL CONTACT_LAST_NAME,
NULL CONTACT_INITIAL,
NULL CONTACT_POSITION,
NULL CONTACT_HONORIFIC,
NULL CONTACT_SALUTATION,
NULL CONTACT_PHONE,
NULL CONTACT_FAX,
TRIM(TO_CHAR(ABS(ROUND(COS(ROWNUM*3.1415/180*4.491976)*1000000,0))))||'VENDOR NAME' REMIT_TO
RPAD('ADDR_1',40) REMIT_TO_ADDR_1,
RPAD('ADDR_2',35) REMIT_TO_ADDR_2,
NULL REMIT_TO_ADDR_3,
RPAD('CITY',20) REMIT_TO_CITY,
'CA' REMIT_TO_STATE,
LPAD(TO_CHAR(ROWNUM),6) REMIT_TO_ZIPCODE,
'NONE' REMIT_TO_COUNTRY,
'NONE' FREE_ON_BOARD,
'SPECIAL DEL' SHIP_VIA,
'UNKNOWN' BUYER,
'N' REPORT_1099_MISC,
DECODE(MOD(ROWNUM,6),0,'A',1,'M',2,'D',3,'N','E') TERMS_NET_TYPE,
ROWNUM TERMS_NET_DAYS,
NULL TERMS_NET_DATE,
DECODE(MOD(ROWNUM,6),0,'A',1,'M',2,'D',3,'N','E') TERMS_DISC_TYPE,
MOD(ROWNUM,100)+10 TERMS_DISC_DAYS,
NULL TERMS_DISC_DATE,
3.5 TERMS_DISC_PERCENT,
'STANDARD' TERMS_DESCRIPTION,
'X' USER_1,
TO_CHAR(TRUNC(SYSDATE,'YYYY'),'MON DD, YYYY') USER_2,
NULL USER_3,
NULL USER_4,
NULL USER_5,
NULL USER_6,
NULL USER_7,
NULL USER_8,
NULL USER_9,
NULL USER_10
FROM
DUAL
CONNECT BY
LEVEL<=50000;

SELECT 'ELIMINATING DUP V' FROM DUAL;

DELETE FROM
VENDORS_TEMP
WHERE
(VENDOR_ID,TERMS_NET_DAYS) IN
(SELECT
V.VENDOR_ID,
V.TERMS_NET_DAYS
FROM
VENDORS_TEMP V,
(SELECT
VENDOR_ID,
MIN(TERMS_NET_DAYS) TERMS_NET_DAYS
FROM
VENDORS_TEMP
GROUP BY
VENDOR_ID
HAVING
COUNT(*)>1) M
WHERE
V.VENDOR_ID=M.VENDOR_ID
AND V.TERMS_NET_DAYS>M.TERMS_NET_DAYS);

INSERT INTO
VENDORS
SELECT
*
FROM
VENDORS_TEMP;

COMMIT;

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'VENDORS',CASCADE=>TRUE);

SELECT 'INSERTING INTO PARTS' FROM DUAL;


ALTER SESSION SET TRACEFILE_IDENTIFIER = 'INSERT_PARTS';

INSERT INTO
PARTS_TEMP
SELECT
TRIM(TO_CHAR(ABS(ROUND(SIN(ROWNUM*3.14159265/180*10.191976)*10000000,0))))||'PART' PART_ID,
TRIM(TO_CHAR(ABS(ROUND(SIN(ROWNUM*3.14159265/180*10.191976)*10000000,0))))||'DESCRIPTION' DE
DECODE(MOD(ROWNUM,20),2,'PC',3,'FT',4,'METER',5,'KG',6,'CASE',7,'LBS',8,'DOZEN','EA') STOCK_
1 PLANNING_LEADTIME,
'M' ORDER_POLICY,
ROWNUM ORDER_POINT,
1 SAFETY_STOCK_QTY,
1 FIXED_ORDER_QTY,
1 DAYS_OF_SUPPLY,
1 MINIMUM_ORDER_QTY,
9999 MAXIMUM_ORDER_QTY,
'0' ENGINEERING_MSTR,
DECODE(MOD(ROWNUM,20),1,'SHOP',2,'OFFICE',3,'JANITOR',4,'INVENTORY',5,'INVENTORY','FG') PROD
DECODE(MOD(ROWNUM,7),1,'SHOP',2,'OFFICE',3,'JANITOR',4,'INVENTORY',5,'INVENTORY','FG') COMMO
'UNKNOWN' MFG_NAME,
'UNKNOWN' MFG_PART_ID,
DECODE(MOD(ROWNUM,3),1,'Y','N') FABRICATED,
DECODE(MOD(ROWNUM,3),1,'N','Y') PURCHASED,
'N' STOCKED,
'N' DETAIL_ONLY,
'N' DEMAND_HISTORY,
'N' TOOL_OR_FIXTURE,
'N' INSPECTION_REQD,
0 WEIGHT,
DECODE(MOD(ROWNUM,20),2,'PC',3,'FT',4,'METER',5,'KG',6,'CASE',7,'LBS',8,'DOZEN','EA') WEIGHT
NULL DRAWING_ID,
NULL DRAWING_REV_NO,
NULL PREF_VENDOR_ID,
NULL PRIMARY_WHS_ID,
NULL PRIMARY_LOC_ID,
NULL BACKFLUSH_WHS_ID,
NULL BACKFLUSH_LOC_ID,
NULL INSPECT_WHS_ID,
NULL INSPECT_LOC_ID,
'Y' MRP_REQUIRED,
'N' MRP_EXCEPTIONS,
'N' PRIVATE_UM_CONV,
'Y' AUTO_BACKFLUSH,
NULL PLANNER_USER_ID,
NULL BUYER_USER_ID,
DECODE(MOD(ROWNUM,7),1,'A',2,'B',3,'B','C') ABC_CODE,
ROWNUM-100000 ANNUAL_USAGE_QTY,
'N' INVENTORY_LOCKED,
0 UNIT_MATERIAL_COST,
0 UNIT_LABOR_COST,
0 UNIT_BURDEN_COST,
0 UNIT_SERVICE_COST,
0 BURDEN_PERCENT,
0 BURDEN_PER_UNIT,
0 PURC_BUR_PERCENT,
0 PURC_BUR_PER_UNIT,
0 FIXED_COST,
0 UNIT_PRICE,
0 NEW_MATERIAL_COST,
0 NEW_LABOR_COST,
0 NEW_BURDEN_COST,
0 NEW_SERVICE_COST,
0 NEW_BURDEN_PERCENT,
0 NEW_BURDEN_PERUNIT,
0 NEW_FIXED_COST,
'1111111' MAT_GL_ACCT_ID,
'2222222' LAB_GL_ACCT_ID,
'3333333' BUR_GL_ACCT_ID,
'4444444' SER_GL_ACCT_ID,
ABS(ROUND(SIN(ROWNUM*3.14159265/180*2)*100000,3)) QTY_ON_HAND,
ABS(ROUND(SIN(ROWNUM*3.14159265/180*2)*100000,3)) QTY_AVAILABLE_ISS,
ABS(ROUND(SIN(ROWNUM*3.14159265/180*2)*100000,3)) QTY_AVAILABLE_MRP,
0 QTY_ON_ORDER,
0 QTY_IN_DEMAND,
RPAD('USER_1',30) USER_1,
RPAD('USER_2',30) USER_2,
RPAD('USER_3',30) USER_3,
NULL USER_4,
NULL USER_5,
NULL USER_6,
NULL USER_7,
NULL USER_8,
NULL USER_9,
NULL USER_10,
0 LT_PLUS_DAYS,
0 LT_MINUS_DAYS,
'A' STATUS,
'Y' USE_SUPPLY_BEF_LT,
0 QTY_COMMITTED,
'TESTING' PRT_CREATE_USER_ID,
SYSDATE PRT_CREATE_DATE
FROM
DUAL
CONNECT BY
LEVEL<=100000;

SELECT 'REMOVING DUPLICATE PARTS' FROM DUAL;

DELETE FROM
PARTS_TEMP
WHERE
(PART_ID,ORDER_POINT) IN
(SELECT
V.PART_ID,
V.ORDER_POINT
FROM
PARTS_TEMP V,
(SELECT
PART_ID,
MIN(ORDER_POINT) ORDER_POINT
FROM
PARTS_TEMP
GROUP BY
PART_ID
HAVING
COUNT(*)>1) M
WHERE
V.PART_ID=M.PART_ID
AND V.ORDER_POINT>M.ORDER_POINT);

INSERT INTO
PARTS
SELECT
*
FROM
PARTS_TEMP;

UPDATE
PARTS P
SET
(PRIMARY_WHS_ID,PRIMARY_LOC_ID)=(
SELECT
WAREHOUSE_ID,
LOCATION_ID
FROM
(SELECT
WAREHOUSE_ID,
LOCATION_ID,
ROWNUM RN
FROM
LOCATIONS)
WHERE
MOD(P.ORDER_POINT,2000)=RN);

UPDATE
PARTS
SET
PREF_VENDOR_ID=TRIM(TO_CHAR(ABS(ROUND(COS((MOD(ROWNUM,9000)*2+1)*3.14159265/180*51.491976)*1
WHERE
PURCHASED='Y';

COMMIT;

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'PARTS',CASCADE=>TRUE);

SELECT 'INSERTING INTO PO_HEADER' FROM DUAL;


ALTER SESSION SET TRACEFILE_IDENTIFIER = 'INSERT_PO_HEADER';

INSERT INTO
PO_HEADER_TEMP
SELECT
'PO'||TO_CHAR(ROWNUM) PURC_ORDER_ID,
TRIM(TO_CHAR(ABS(ROUND(COS((MOD(ROWNUM,9000)*2+1)*3.14159265/180*51.491976)*10000000,0))))||
NULL CONTACT_FIRST_NAME,
NULL CONTACT_LAST_NAME,
NULL CONTACT_INITIAL,
NULL CONTACT_POSITION,
NULL CONTACT_HONORIFIC,
NULL CONTACT_SALUTATION,
NULL CONTACT_PHONE,
NULL CONTACT_FAX,
1 PURC_ORD_ADDR_NO,
1 SHIPTO_ADDR_NO,
TRUNC(SYSDATE-(COS(ROWNUM*3.14159265/180)*1000)) ORDER_DATE,
TRUNC(SYSDATE-(COS(ROWNUM*3.14159265/180)*1000))+10 DESIRED_RECV_DATE,
'MY_BUYER' BUYER,
NULL FREE_ON_BOARD,
'BEST WAY' SHIP_VIA,
'REGULAR' SALES_TAX_GROUP_ID,
DECODE(MOD(ROWNUM,6),1,'F',2,'R',3,'X','C') PO_STATUS,
'N' BACK_ORDER,
1 SELL_RATE,
1 BUY_RATE,
'1' ENTITY_ID,
DECODE(MOD(ROWNUM,3),1,'Y','N') POSTING_CANDIDATE,
NULL LAST_RECEIVED_DATE,
0 TOTAL_AMT_ORDERED,
0 TOTAL_AMT_RECVD,
'N' MARKED_FOR_PURGE,
'Y' EXCH_RATE_FIXED,
TRUNC(SYSDATE-(COS(ROWNUM*3.14159265/180)*1000))+10 PROMISE_DATE,
SYSDATE PRINTED_DATE,
DECODE(MOD(ROWNUM,6),0,'A',1,'M',2,'D',3,'N','E') TERMS_DISC_TYPE,
NULL EDI_BLANKET_FLAG,
NULL EDI_BLANKET_PO_NO,
1 CONTRACT_ID,
1 SHIPTO_ID,
DECODE(MOD(ROWNUM,6),0,'A',1,'M',2,'D',3,'N','E') TERMS_NET_TYPE,
1 TERMS_NET_DAYS,
NULL TERMS_NET_DATE,
1 TERMS_DISC_DAYS,
NULL TERMS_DISC_DATE,
3 TERMS_DISC_PERCENT,
'ON TIME' TERMS_DESCRIPTION,
'USD' CURRENCY_ID,
NULL WAREHOUSE_ID,
SYSDATE CREATE_DATE,
NULL CONTACT_MOBILE,
NULL CONTACT_EMAIL,
NULL USER_1,
NULL USER_2,
NULL USER_3,
NULL USER_4,
NULL USER_5,
NULL USER_6,
NULL USER_7,
NULL USER_8,
NULL USER_9,
NULL USER_10,
'DEFAULT' UDF_LAYOUT_ID,
'TESTING' PO_CREATE_USER_ID
FROM
DUAL
CONNECT BY
LEVEL<=500000;

INSERT INTO
PO_HEADER
SELECT
*
FROM
PO_HEADER_TEMP;
COMMIT;

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'PO_HEADER',CASCADE=>TRUE);

SELECT 'INSERTING INTO PO_LINES' FROM DUAL;


ALTER SESSION SET TRACEFILE_IDENTIFIER = 'INSERT_PO_LINES';

INSERT INTO PO_LINE_TEMP (


PURC_ORDER_ID,
LINE_NO,
PART_ID,
VENDOR_PART_ID,
SERVICE_ID,
USER_ORDER_QTY,
ORDER_QTY,
PURCHASE_UM,
UNIT_PRICE,
FIXED_CHARGE,
GL_EXPENSE_ACCT_ID,
SALES_TAX_GROUP_ID,
PRODUCT_CODE,
COMMODITY_CODE,
DESIRED_RECV_DATE,
TRADE_DISC_PERCENT,
EST_FREIGHT,
LINE_STATUS,
TOTAL_ACT_FREIGHT,
TOTAL_USR_RECD_QTY,
TOTAL_RECEIVED_QTY,
TOTAL_AMT_RECVD,
TOTAL_AMT_ORDERED,
TOTAL_DISPATCH_QTY,
TOTAL_USR_DISP_QTY,
ALLOCATED_QTY,
FULFILLED_QTY)
SELECT /*+ ORDERED */
PURC_ORDER_ID,
ORDER_POINT-START_LINE+1,
PART_ID,
PART_ID,
NULL,
10,
10,
DECODE(MOD(ROWNUM,20),2,'PC',3,'FT',4,'METER',5,'KG',6,'CASE',7,'LBS',8,'DOZEN','EA'),
1099.99,
0,
NULL,
NULL,
PRODUCT_CODE,
COMMODITY_CODE,
TRUNC(SYSDATE-1000+ROWNUM/1000),
0,
0,
'A',
0,
0,
0,
0,
0,
0,
0,
0,

FROM
(SELECT
'PO'||TO_CHAR(ROWNUM) PURC_ORDER_ID,
ROWNUM RN,
ABS(SIN(ROWNUM*3.14159265/180))*90000 START_LINE,
MOD(ROWNUM,50)+1 LINES
FROM
DUAL
CONNECT BY
LEVEL<=500000) POL,
PARTS P
WHERE
P.ORDER_POINT BETWEEN START_LINE AND (START_LINE+LINES-1);

INSERT INTO
PO_LINE
SELECT
*
FROM
PO_LINE_TEMP;

COMMIT;

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'PO_LINE',CASCADE=>TRUE);

SELECT 'UPDATE-ROLLBACK TEST' FROM DUAL;


ALTER SESSION SET TRACEFILE_IDENTIFIER = 'ROLLBACK_TEST';

UPDATE
PO_LINE
SET
PART_ID='8729425PART'
WHERE
PART_ID BETWEEN '6000000PART' AND '6576035PART';

ROLLBACK;
SELECT 'UPDATE-NARROW-TABLE' FROM DUAL;
ALTER SESSION SET TRACEFILE_IDENTIFIER = 'NARROW_TABLE';

INSERT INTO
NARROW
SELECT
ROWNUM,
NULL
FROM
DUAL
CONNECT BY
LEVEL<=900000;

COMMIT;

SELECT
SUBSTR(SN.NAME,1,25) STAT_NAME,
MS.VALUE
FROM
V$STATNAME SN,
V$MYSTAT MS
WHERE
SN.NAME IN ('table fetch by rowid','table scan rows gotten','table fetch continued row','tab
AND SN.STATISTIC#=MS.STATISTIC#
ORDER BY
SN.NAME;

UPDATE
NARROW
SET
C1=ROUND(SIN(C1*3.14159265/180),2),
C2=C1;

SELECT
SUBSTR(SN.NAME,1,25) STAT_NAME,
MS.VALUE
FROM
V$STATNAME SN,
V$MYSTAT MS
WHERE
SN.NAME IN ('table fetch by rowid','table scan rows gotten','table fetch continued row','tab
AND SN.STATISTIC#=MS.STATISTIC#
ORDER BY
SN.NAME;

UPDATE
NARROW
SET
C1=ROUND(SIN(C2*3.14159265/180),10);
UPDATE
NARROW
SET
C2=C1;

SELECT
SUBSTR(SN.NAME,1,25) STAT_NAME,
MS.VALUE
FROM
V$STATNAME SN,
V$MYSTAT MS
WHERE
SN.NAME IN ('table fetch by rowid','table scan rows gotten','table fetch continued row','tab
AND SN.STATISTIC#=MS.STATISTIC#
ORDER BY
SN.NAME;

SELECT
*
FROM
NARROW;

SELECT
SUBSTR(SN.NAME,1,25) STAT_NAME,
MS.VALUE
FROM
V$STATNAME SN,
V$MYSTAT MS
WHERE
SN.NAME IN ('table fetch by rowid','table scan rows gotten','table fetch continued row','tab
AND SN.STATISTIC#=MS.STATISTIC#
ORDER BY
SN.NAME;

DELETE FROM
NARROW
WHERE
C1<0;

COMMIT;

EXEC DBMS_STATS.GATHER_TABLE_STATS(OWNNAME=>USER,TABNAME=>'NARROW',CASCADE=>TRUE);

SELECT 'TABLE AND INDEX STATS' FROM DUAL;


ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT OFF'

SELECT
TABLE_NAME,
NUM_ROWS,
BLOCKS,
AVG_ROW_LEN
FROM
USER_TABLES
WHERE
TABLE_NAME IN ('PO_HEADER','PO_LINE','PARTS','VENDORS','LOCATIONS','UMS','NARROW')
ORDER BY
TABLE_NAME;

SELECT
SUBSTR(TABLE_NAME,1,10) TABLE_NAME,
SUBSTR(INDEX_NAME,1,15) INDEX_NAME,
BLEVEL,
LEAF_BLOCKS,
DISTINCT_KEYS,
AVG_LEAF_BLOCKS_PER_KEY,
AVG_DATA_BLOCKS_PER_KEY,
CLUSTERING_FACTOR
FROM
USER_INDEXES
WHERE
TABLE_NAME IN ('PO_HEADER','PO_LINE','PARTS','VENDORS','LOCATIONS','UMS','NARROW')
ORDER BY
TABLE_NAME,
INDEX_NAME;

ALTER SYSTEM FLUSH BUFFER_CACHE;


ALTER SYSTEM FLUSH BUFFER_CACHE;

ALTER SESSION SET TRACEFILE_IDENTIFIER = 'SELECT_TEST';


ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT FOREVER, LEVEL 8';

SELECT
PO.VENDOR_ID,
P.PRODUCT_CODE,
P.STOCK_UM,
SUM(POL.ORDER_QTY) ORDER_QTY
FROM
PO_HEADER PO,
PO_LINE POL,
PARTS P
WHERE
PO.ORDER_DATE BETWEEN TRUNC(SYSDATE-90) AND TRUNC(SYSDATE)
AND PO.PURC_ORDER_ID=POL.PURC_ORDER_ID
AND POL.PART_ID=P.ID
GROUP BY
PO.VENDOR_ID,
P.PRODUCT_CODE,
P.STOCK_UM;

SELECT
POL.PART_ID,
P.DESCRIPTION,
MAX(DESIRED_RECV_DATE) LAST_RECEIVE_DATE
FROM
PO_LINE POL,
PARTS P
WHERE
P.PRODUCT_CODE='FG'
AND P.ABC_CODE='C'
AND P.PART_ID=POL.PART_ID
GROUP BY
POL.PART_ID,
P.DESCIPTION;

SELECT
COUNT(*) LOCATIONS
FROM
LOCATIONS;

SELECT
PRODUCT_CODE,
COUNT(*) PARTS_LARGE_WH
FROM
(SELECT
WAREHOUSE_ID
FROM
LOCATIONS
GROUP BY
WAREHOUSE_ID
HAVING
COUNT(*)>160) W,
PARTS P
WHERE
W.WAREHOUSE_ID=P.PRIMARY_WHS_ID
GROUP BY
PRODUCT_CODE
ORDER BY
PRODUCT_CODE;

SELECT
COUNT(*)
FROM
PARTS
WHERE
QTY_ON_HAND>1000;

SELECT
COUNT(*)
FROM
VENDORS
WHERE
ZIPCODE>' 44444';

SELECT
COUNT(*)
FROM
PO_LINE POL,
PARTS P
WHERE
POL.PURC_ORDER_ID BETWEEN '10000' AND '20000'
AND POL.PART_ID=P.PART_ID;

SELECT
PART_ID,
ABC_CODE,
PRODUCT_CODE,
MAX(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE,ABC_CODE) MAX_QTY_PRD_ABC,
MIN(QTY_ON_HAND) OVER (PARTITION BY PRODUCT_CODE,ABC_CODE) MIN_QTY_PRD_ABC,
DENSE_RANK() OVER (PARTITION BY PRODUCT_CODE,ABC_CODE ORDER BY QTY_ON_HAND) DR_QTY_PRD_ABC,
DENSE_RANK() OVER (PARTITION BY PREF_VENDOR_ID ORDER BY ORDER_POINT) DR_OP_VEND
FROM
PARTS
ORDER BY
PART_ID;

SELECT
V.VENDOR_ID,
V.NAME
FROM
VENDORS V,
(SELECT DISTINCT
PO.VENDOR_ID
FROM
PO_HEADER PO,
PO_LINE POL,
PARTS P
WHERE
PO.PURC_ORDER_ID=POL.PURC_ORDER_ID
AND POL.PART_ID=P.PART_ID
AND P.PRODUCT_CODE='FG') PV
WHERE
V.VENDOR_ID=PV.VENDOR_ID(+)
AND PV.VENDOR_ID IS NULL
ORDER BY
V.VENDOR_ID;

SELECT 'FINISHED' FROM DUAL;


ALTER SESSION SET EVENTS '10046 TRACE NAME CONTEXT OFF'

SPOOL OFF
FIXES:
TYPE = 'E')
= 'E')) ENABLE,
nsistent gets')

nsistent gets')
nsistent gets')

nsistent gets')
AND POL.PART_ID=P.PART_ID
P.DESCRIPTION;

You might also like