Notes on private temporary tables

By Brian Fitzgerald

New in 18c, private temporary tables are temporary database objects that are dropped at the end of a transaction or session. Private temporary tables are stored in memory and each one is visible only to the session that created it.

Here are a few findings on private temporary tables (PTT).

Basic operation

Create, insert, and select.

create private temporary table ora$ptt_a
(
 n number
) on commit preserve definition;
insert into ora$ptt_a ( n ) values ( 0 );
select n 
from ora$ptt_a;

Table created.
1 row(s) inserted.

N
0

A PTT cannot be partitioned or index-organized.

Using “on commit drop definition”

Commit drops the PTT if the PTT is declared “on commit drop definition”.

create private temporary table ora$ptt_a
(
n number
) on commit drop definition;
insert into ora$ptt_a ( n ) values ( 0 );
commit;
select n 
from ora$ptt_a;

Table created.
1 row(s) inserted.
Statement processed.
ORA-00942: table or view does not exist

The same applies to rollback:

drop table ora$ptt_a;
create private temporary table ora$ptt_a
(
n number
)
on commit drop definition;
rollback;
select n from ora$ptt_a;
Table dropped.
Table created.
Statement processed.
ORA-00942: table or view does not exist

No commit on create

Creating a PTT does not itself issue a commit, as it would with a conventional table. This fact leads to the primary use case of PTTs:

  • “When an application stores temporary data in transient tables that are populated once, read few times, and then dropped at the end of a transaction or session”

In other words, a PTT can be used as a driving table which you populate once, and then use for multiple queries.

Rollback

Rollback rolls back the insert, but not the create table.

drop table ora$ptt_a;
create private temporary table ora$ptt_a
(
n number
)
on commit preserve definition;
insert into ora$ptt_a ( n ) values ( 4 );
rollback;
select n from ora$ptt_a;

Table dropped.
Table created.
1 row(s) inserted.
Statement processed.
no data found

Alter table

Alter table add column fails with an erroneous ORA-00942:

alter table ora$ptt_a add m number;
ORA-00942: table or view does not exist

ORA-00942 can be taken to mean that Oracle searched for, and did not find a conventional table, and is indicative of a bug.

Views

Views with info about PTTs are:

USER_PRIVATE_TEMP_TABLES

DBA_PRIVATE_TEMP_TABLES

There is no ALL_PRIVATE_TEMP_TABLES.

select * from USER_PRIVATE_TEMP_TABLES;

(results transposed)

SID 2284
SERIAL# 40199
OWNER SQL_RADNMXBEQPEYTXKXEYBLDVRPC
TABLE_NAME ORA$PTT_B
TABLESPACE_NAME TEMP
DURATION SESSION
NUM_ROWS 0
BLOCKS 0
AVG_ROW_LEN 0
LAST_ANALYZED 2/18/2018 23:01
TXN_ID 0
SAVE_POINT_NUM 0

sid, serial# refer to the session that created the PTT.

Parallel

The parallel create option succeeds:

drop table ora$ptt_a;
create private temporary table ora$ptt_a
 (
 d date
 )
 on commit preserve definition 
 parallel 8;

Table dropped. 

Table created.

However, I find the parallel degree nowhere in the catalog.

Altering the parallel degree fails with an erroneous ORA-00942:

alter table ora$ptt_a parallel 4;
ORA-00942: table or view does not exist 

No primary key

You cannot declare a primary key

drop table ora$ptt_a;
create private temporary table ora$ptt_a
(
n number primary key
) 
on commit drop definition;

ORA-14451: unsupported feature with temporary table

You cannot create indexes, defaults, or not null constraints.

Dropping

You can explicitly drop a PTT.

drop table ora$ptt_a;

Table dropped.

Prefix

You can prefix the table name with the owner when referring to it.

drop table SQL_ZZOZIKMDVVNDRUUEJJIJXJMKR.ora$ptt_a;
create private temporary table SQL_ZZOZIKMDVVNDRUUEJJIJXJMKR.ora$ptt_a
on commit preserve definition
as select level n
from dual
connect by level <= 2;

rowid

You can query rowid. dbms_rowid.rowid_object returns a number that is unique per PTT and not in user_objects.

create private temporary table ora$ptt_a
as
select level n from dual connect by level <= 3;

create private temporary table ora$ptt_b
as
select level n from dual connect by level <= 3;
select rowid, n, dbms_rowid.rowid_object(rowid) from ora$ptt_a;

select rowid, n, dbms_rowid.rowid_object(rowid) from ora$ptt_b;
select max(object_id) from user_objects;
Table created.
Table created.
ROWID N DBMS_ROWID.ROWID_OBJECT(ROWID)
AATFyHAABAADFyIAAA 1 5004423
AATFyHAABAADFyIAAB 2 5004423
AATFyHAABAADFyIAAC 3 5004423
ROWID N DBMS_ROWID.ROWID_OBJECT(ROWID)
AATF4HAABAADF4IAAA 1 5004807
AATF4HAABAADF4IAAB 2 5004807
AATF4HAABAADF4IAAC 3 5004807
MAX(OBJECT_ID)
129337

Flashback query

Flashback queries are not allowed on temporary tables. The expected message is:

ORA-30051: VERSIONS clause not allowed here

However flashback query on PTTs fail with an erroneous ORA-00942:

select n from ora$ptt_a
versions between scn 10717996 and 10720679;
ORA-00942: table or view does not exist

Grant

You cannot grant access to a PTT. Grant fails with an erroneous ORA-00942.

grant select on ora$ptt_a to system;
ORA-00942: table or view does not exist

Truncate

You can truncate a PTT. Truncating a PTT does not issue a COMMIT, as it would with a conventional table.

create global temporary table gtt_a
(
n number 
)
on commit delete rows;
create private temporary table ora$ptt_a
(
n number
)
on commit drop definition;
insert into ora$ptt_a
select level from dual 
connect by level <= 10000;
insert into gtt_a
select level from dual 
connect by level < 10000;
select count(*)nptt from ora$ptt_a;
truncate table ORA$PTT_A;
select count(*)nptt from ora$ptt_a;
select count(*)ngtt from gtt_a;
commit;
select count(*)ngtt from gtt_a;

Table created.
Table created.
10000 row(s) inserted.
9999 row(s) inserted.
NPTT
10000
Table truncated.
NPTT
0
NGTT
9999
Statement processed.
NGTT
0

Gather stats

You cannot gather stats on a private temporary table.

begin
dbms_stats.gather_table_stats(null,'ora$ptt_a');
end;
/

ORA-20000: Unable to analyze TABLE "SQL_RADNMXBEQPEYTXKXEYBLDVRPC"."ORA$PTT_A", insufficient privileges or does not exist ORA-06512: at "SYS.DBMS_STATS", line 39094
ORA-06512: at "SYS.DBMS_STATS", line 38371
ORA-06512: at "SYS.DBMS_STATS", line 38530
ORA-06512: at "SYS.DBMS_STATS", line 39076
ORA-06512: at line 2
ORA-06512: at "SYS.DBMS_SQL", line 1721

You cannot analyze a PTT

analyze table ora$ptt_a estimate statistics;

ORA-00942: table or view does not exist 

PTT statistics normally show 0 rows; however, PTT statistics get populated in the case of create table as select.

create private temporary table ora$ptt_a
as select level n
from dual
connect by level <= 10000;
select num_rows, blocks, avg_row_len
from user_private_temp_tables;
Table created
NUM_ROWS BLOCKS AVG_ROW_LEN
10000 16 4

Metadata

PTTs do not appear in USER_TABLES, USER_SEGMENTS, or USER_OBJECTS.

PTTs do not have an object_id.

No PTT column metadata has been found (so far). However, I would check x$ tables.

Multiple sessions

Multiple sessions by the same user can create a PTT having the same name. The definition and the data are visible only to the creating session.

Name clash

You cannot create a conventional table, or any other object, beginning with “ORA$PTT_”.

create procedure ora$ptt_p is begin null; end;
/

ORA-32463: cannot create an object with a name 
matching private temporary table prefix 

The PTT prefix can be changed using initialization parameter PRIVATE_TEMP_TABLE_PREFIX, but it cannot be modified at the session level.

alter session set PRIVATE_TEMP_TABLE_PREFIX = 'PRIV$TMP_';

ORA-02096: specified initialization parameter is not modifiable 
with this option

To change the PTT prefix at the instance level, issue, for example:

alter system set PRIVATE_TEMP_TABLE_PREFIX = 'PRIV$TMP_' deferred;

Current sessions are unaffected. Future connections will catch the new setting.

PL/SQL

You can use a PTT in an anonymous PL/SQL block

drop table ora$ptt_a;
create private temporary table ora$ptt_a
(
n number
)
on commit preserve definition;
insert into ora$ptt_a ( n ) values ( 7 );
declare
 l_num number;
begin
 select n into l_num from ora$ptt_a;
 dbms_output.put_line('l_num='||l_num);
end;
/
Table dropped.
Table created.
1 row(s) inserted.
l_num=7

A PTT column cannot be used in a type declaration.

drop table ora$ptt_a;
create private temporary table ora$ptt_a
(
n number
)
on commit preserve definition;
declare
 l_num ora$ptt_a.n%type;
begin
 null;
end;
/
Table dropped.
Table created.
ORA-06550: line 2, column 9:
PLS-00201: identifier 'ORA$PTT_A.N' must be declared

You cannot create a procedure that uses a PTT in static PL/SQL.

drop table ora$ptt_a;
create private temporary table ora$ptt_a
(
n number
)
on commit preserve definition;

create or replace procedure pr
as
begin
 insert into ora$ptt_a ( n ) values ( 0 );
end;
/
select line, position, text from user_errors where name = 'PR';

Table dropped. 

Table created.
Error at line: 12
LINE POSITION TEXT
4 14 PL/SQL: ORA-14451: unsupported feature with temporary table
4 2 PL/SQL: SQL Statement ignored

You can write an anonymous PL/SQL block that declares a procedure that uses a PTT.

drop table ora$ptt_a;
create private temporary table ora$ptt_a
(
n number
)
on commit preserve definition;

declare
procedure pr
as
begin
 insert into ora$ptt_a ( n ) values ( 5 );
end pr;
begin
 pr;
end;
/
select n from ora$ptt_a;
Table dropped.
Table created.
1 row(s) inserted.

N
5

Notice the feedback on the insert. I have not seen such feedback in PL/SQL before. This demo was run on Oracle Live SQL.

You can create a package that creates and uses a PTT using dynamic SQL.

drop table ora$ptt_a;
create or replace package ptt_pkg
is
 procedure crptt;
 procedure insptt;
 function pttval
 return number;
end ptt_pkg;
/
create or replace package body ptt_pkg
is
 procedure crptt
 is
 begin
 execute immediate
 q'{create private temporary table ora$ptt_a
 (
 n number
 )
 on commit preserve definition}';
 end crptt;

procedure insptt
 is
 begin
 execute immediate
 q'{insert into ora$ptt_a ( n ) values ( 3 )}';
 end insptt;

function pttval
 return number
 is
 l_num number;
 begin
 execute immediate
 q'{select n
 from ora$ptt_a}' into l_num;
 return l_num;
 end pttval;
end ptt_pkg;
/

declare
 l_num number;
begin
 ptt_pkg.crptt;
 ptt_pkg.insptt;
 l_num := ptt_pkg.pttval;
 dbms_output.put_line('in package l_num='||l_num);
end;
/

Table dropped.
Package created.
Package Body created.
in package l_num=3

An anonymous PL/SQL block will not compile if it refers to an object that does not exist yet. This will not work:

declare
l_num number;
begin
ptt_pkg.crptt;
ptt_pkg.insptt;
select n into l_num
from ora$ptt_a;
end;
/

ORA-06550: line 7, column 6: 
PL/SQL: ORA-00942: table or view does not exist

In-memory

Dan Morgan reports “ORA-14451: unsupported feature with temporary table” in a PDB with inmemory_size set. Please refer to the blog feedback.

Explain plan

You can run explain plan on a statement that usesĀ  PTT.

drop table ora$ptt_a;
create private temporary table ora$ptt_a
 (
 n number
 )
 on commit preserve definition;
explain plan for
select n
from ora$ptt_a;
select * from table ( dbms_xplan.display );
Table dropped.
Table created.
Statement processed.

PLAN_TABLE_OUTPUT
Plan hash value: 2125934360

---------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time |
---------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 13 | 2 (0)| 00:00:01 |
| 1 | TABLE ACCESS STORAGE FULL| ORA$PTT_A | 1 | 13 | 2 (0)| 00:00:01 |
---------------------------------------------------------------------------------------

Parallel plan

The optimizer can create a parallel plan on a PTT.

drop table ora$ptt_a;
create private temporary table ora$ptt_a
 (
 n number
 )
 on commit preserve definition
 parallel 8;
explain plan for
select n
from ora$ptt_a;
select * from table ( dbms_xplan.display );
Table dropped.
Table created.
Statement processed.

PLAN_TABLE_OUTPUT
Plan hash value: 2895541530

-----------------------------------------------------------------------------------------------------------------------
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time | TQ |IN-OUT| PQ Distrib |
-----------------------------------------------------------------------------------------------------------------------
| 0 | SELECT STATEMENT | | 1 | 13 | 2 (0)| 00:00:01 | | | |
| 1 | PX COORDINATOR | | | | | | | | |
| 2 | PX SEND QC (RANDOM) | :TQ10000 | 1 | 13 | 2 (0)| 00:00:01 | Q1,00 | P->S | QC (RAND) |
| 3 | PX BLOCK ITERATOR | | 1 | 13 | 2 (0)| 00:00:01 | Q1,00 | PCWC | |
| 4 | TABLE ACCESS STORAGE FULL| ORA$PTT_A | 1 | 13 | 2 (0)| 00:00:01 | Q1,00 | PCWP | |
-----------------------------------------------------------------------------------------------------------------------

Note
-----
 - dynamic statistics used: dynamic sampling (level=2)
 - Degree of Parallelism is 8 because of table property

Troubleshooting

Query troubleshooting could be impeded by lack of information about the design of the PTT.

Prerequisites

The create table privilege is required to create a PTT. Granting create table permits creating any type of table, not just PTTs. The feature is clearly intended for use in application code at run time. The DBA is faced with a choice: Grant create table to the application run time user, or deny the use of private temporary tables.

Caution on new features

The PTT is a new 18c feature. Users should exercise care and be alert to bugs in PTTs. Bugs tend to appear when multiple lightly used features are combined. Beware of performance, internal error, and corruption bugs. Also, optimization can lead to results errors. Use PTTs when the potential business value outweighs the risk and added testing cost. Exercise conservative practices when using PTTs.

Conclusion

PTTs are a new Oracle Database 18c feature. Before using PTTs it’s a good idea to be aware of the restrictions.

Notes on histograms

By Brian Fitzgerald

This blog post is a worked example of Oracle histograms. In this case, a frequency histogram is demonstrated in the context of a single table query.

Setup

cr.histodemo.sql

Table ords. Intended column data distribution:

10000 rows
10000 unique ordid
1000 categories, evenly distributed
2 distinct status, skewed
99.99% COMPLETE
0.01% PENDING

One index on each column, ORDID, CATEGORYID, and STATUS.

Not null constraints are there to simplify the demonstration.

whenever oserror exit 1
@ sqlerc.sql
drop table ords purge;
@ sqlerx.sql

create table ords
(
ordid number not null,
categoryid number not null,
status varchar2(10) not null
);

insert into ords ( ordid, categoryid, status )
select
level,
mod( level, 1000 ),
case mod( level, 10000) when 0 then 'PENDING' else 'COMPLETE' end
from dual
connect by level <= 10000;

alter table ords add constraint ords primary key ( ordid );
create index category_idx on ords ( categoryid );
create index status_idx on ords ( status );

quit

output:

[oracle@stormking db12201 stats]$ sqlplus u/u @ cr.histodemo.sql
SQL*Plus: Release 12.2.0.1.0 Production on Sun Feb 11 11:37:31 2018
Copyright (c) 1982, 2016, Oracle. All rights reserved.
Last Successful login time: Sun Feb 11 2018 00:10:42 -05:00
Connected to:
Oracle Database 12c Enterprise Edition 
Release 12.2.0.1.0 - 64bit Production
Table dropped.
Table created.
10000 rows created.
Table altered.
Index created.
Index created.
Disconnected from Oracle Database 12c Enterprise Edition 
Release 12.2.0.1.0 - 64bit Production

Execution scripts

query.ords.sql

Thwo queries on table ords.

  1. equality predicate on STATUS only
  2. equality predicate on STATUS and CATEGORYID

The 10053 trace shows optimizer’s rationale.

set linesize 100
@ sqlerx.sql
column plan_table_output format a80

@ set.tracefile.identifier.sql status
@ trace.10053.on.sql

select ordid from ords
where status = 'PENDING'
;
select * from table(dbms_xplan.display_cursor( format=>'basic' ));
@ trace.10053.off.sql

@ set.tracefile.identifier.sql cat
@ trace.10053.on.sql

select ordid from ords
where categoryid = 0
and status = 'COMPLETE'
;
select * from table(dbms_xplan.display_cursor( format=>'basic' ));
@ trace.10053.off.sql

rpt.col.usage.sql

Script to show what types of workload has run on the columns. Database monitoring is flushed for the sake of displaying the col_usage report before gathering stats in this demonstration. Gather stats automatically flushes column usagem so alling flush_database_monitoring_info is generally not required.

define ownname=&&1
define tabname=&&2
whenever oserror exit 1
@ sqlerx.sql
@ l32k.p50k.sql

set verify off

set long 2000000000
exec dbms_stats.flush_database_monitoring_info;
column rpt format a160
select dbms_stats.report_col_usage('&&ownname','&&tabname') rpt from dual;

gather.table.stats.sql

Invalidation, in this case, is to force a 10053 trace for the sake of this demonstration. The 10046 trace and tkprof is for checking what queries on ords get run during gather stats. With the exception of no_invalidate, dbms_stats is run with the default options to show how histograms are gathered automatically during routine database maintenance. Estimate_percent defaults to auto_sample_size. Gathering or deleting a histogram can be forced by using option method_opt.

define ownname=&&1
define tabname=&&2
whenever oserror exit 1
@ sqlerx.sql
set verify off

@ set.tracefile.identifier.sql stats
@ trace.10046.on.sql

begin
 dbms_stats.gather_table_stats (
 ownname => '&&ownname',
 tabname => '&&tabname',
 no_invalidate => false
 );
end;
/
prompt done gather stats on &&ownname..&&tabname

@ trace.10046.off.sql
@ tkprof.sql

user.tab.statistics.sql

Script to show the existence or nonexistence of a histogram

define tabname=&&1
whenever oserror exit 1
@ sqlerx.sql
@ l32k.p50k.sql
@ columnformat.sql

select
table_name,
blocks,
num_rows
from user_tab_statistics
where
table_name = '&&tabname';

select
index_name,
leaf_blocks,
num_rows,
distinct_keys
from user_ind_statistics
where table_name = '&&tabname';

select
column_name,
num_distinct,
density,
histogram,
num_buckets
from user_tab_col_statistics
where table_name = '&&tabname';

run.histodemo.sql

The demonstration script

whenever oserror exit 1
@ spoolfile.uniq.sql ords

@ rpt.col.usage.sql U ORDS
@ gather.table.stats.sql U ORDS
@ user.tab.statistics.sql ORDS
@ query.ords.sql

@ spooloff.sql
quit

Execution run 1

Files

ords.db12201.20180211.142321.84.txt

run.histodemo.sqlĀ output

db12201_ora_20225_STATS.trc

10043 trace of gather table stats

db12201_ora_20225_STATS.tkp

tkprof of gather table stats

db12201_ora_20225_STATUS.trc

10053 trace of “where status = ‘PENDING'”

db12201_ora_20225_CAT.trc

10053 trace of “where categoryid = 0 and status = ‘COMPLETE'”

Highlights

  • Because table ords is newly created, the column usage report shows no workload
  • Gather stats ran four queries on table ords, namely a full table scan and one per index.
$ grep -i '"U"."ORDS" t' db12201_ora_20225_STATS.tkp
 "U"."ORDS" t /* ACL,NIL,NIL,NDV,NIL,NIL,NDV,NIL,NIL*/
 "U"."ORDS" t where "ORDID" is not null
 "U"."ORDS" t where "CATEGORYID" is not null
 "U"."ORDS" t where "STATUS" is not null
  • No histogram was gathered
  • ORDID is most selective column, having the highest num_distinct and lowest density
  • CATEGORYID is medium-selective
  • STATUS is not, in general, selective, having only 2 distinct values
COLUMN_NAME NUM_DISTINCT DENSITY HISTOGRAM NUM_BUCKETS
------------------------------ ------------ ---------- -------------------
ORDID 10000 .0001 NONE 1
CATEGORYID 1000 .001 NONE 1
STATUS 2 .5 NONE 1
  • No histogram is present on status. Density is computed:

density = 1 / num_distinct = 1/2 = .5

  • “where status = ‘PENDING'” catches a full table scan
----------------------------------
| Id | Operation | Name |
----------------------------------
| 0 | SELECT STATEMENT | |
| 1 | TABLE ACCESS FULL| ORDS |
----------------------------------
  • “where categoryid = 0 and status = ‘COMPLETE'” catches an index range scan
------------------------------------------------------------
| Id | Operation | Name |
------------------------------------------------------------
| 0 | SELECT STATEMENT | |
| 1 | TABLE ACCESS BY INDEX ROWID BATCHED| ORDS |
| 2 | INDEX RANGE SCAN | CATEGORY_IDX |
-----------------------------------------------------------

Execution run 2

Files

ords.db12201.20180211.142525.84.txt

run.histodemo.sql output for run 2.

db12201_ora_20607_STATS.trc

db12201_ora_20607_STATS.tkp

Gather stats 10046 trace and tkprof.

db12201_ora_20607_STATUS.trc

db12201_ora_20607_CAT.trc

10053 trace again for the queries, “where status” and “where categoryid …
and status”.

Highlights

  • The column usage report shows that equality predicates have run on columns CATEGORYID and STATUS.
COLUMN USAGE REPORT FOR U.ORDS
..............................

1. CATEGORYID : EQ
2. STATUS : EQ
  • This time, gather stats ran six queries on table ords.
$ grep -i '"U"."ORDS" t' db12201_ora_20607_STATS.tkp | wc -l
6
  • gather table stats ran this query on column STATUS:
select 
/*+ no_parallel(t) no_parallel_index(t) dbms_stats 
cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) 
no_monitoring xmlindex_sel_idx_tbl 
opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad 
*/
 substrb(dump("STATUS",16,0,64),1,240) val,
 rowidtochar(rowid) rwid 
from "U"."ORDS" t 
where rowid in (
chartorowid('AAAWt1AAHAAAAFjAAA'),
chartorowid('AAAWt1AAHAAAAGCAAv')) 
order by "STATUS"

Clearly, the only purpose is to obtain the two unique STATUS values.

  • Gather stats ran this query on column CATEGORYID:
select 
substrb(dump(val,16,0,64),1,240) ep, 
freq, 
cdn, 
ndv,
(sum(pop) over()) popcnt,
(sum(pop*freq) over()) popfreq,
substrb(dump(max(val) over(),16,0,64),1,240) maxval,
substrb(dump(min(val) over(),16,0,64),1,240) minval
from
 (
select val, 
freq, 
(sum(freq) over()) cdn, 
(count(*) over()) ndv,
(case when freq > ((sum(freq) over())/254) then 1 else 0 end) pop
from (select
  /*+ no_parallel(t) no_parallel_index(t) dbms_stats
    cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) 
    no_monitoring xmlindex_sel_idx_tbl 
    opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad
 */
  "CATEGORYID" val, 
  count("CATEGORYID") freq 
from "U"."ORDS" t 
where "CATEGORYID" is not null 
group by "CATEGORYID"
)) order by val

Inference: dbms_stats is collecting information needed to construct a histogram on STATUS and CATEGORYID.

Notice the column name “ep”, which could refer to a histogram endpoint value.

“pop” = 1 if popular, 0 if non-popular.

  • dbms_stats stored a histogram for column status but not for categoryid
COLUMN_NAME NUM_DISTINCT DENSITY HISTOGRAM NUM_BUCKETS
------------------------------ ------------ ---------- ------- -----------
ORDID 10000 .0001 NONE 1
CATEGORYID 1000 .001 NONE 1
STATUS 2 .00005 FREQUENCY 2

Inference: dbms_stats found skew in status but not in categoryid

  • The reported density on column status has changed:
82c84
< STATUS 2 .5 NONE 1
---
> STATUS 2 .00005 FREQUENCY 2

According to 2007 note New Density calculation in 11g by Alberto Dell’Era, density = 0.5 / num_rows for frequency histograms. Dell’Era’s paper refers only to not null values. In other words, for frequency histograms, density, as stored in the catalog, should be

density = .5 / num_values = .5 / ( num_rows – num_nulls )

I have found this to be accurate to within 2.5e-15 for 99% out of the 30,000 frequency histograms in one example database, where the histograms were mostly gathered with Oracle 11.1.0.7 binaries. After gathering statistics with Oracle 12.1.0.2 binaries, dba_tab_col_statistics density is found to agree with formula .5 / ( num_rows – num_nulls ) to within 2.5e-15 for 99.95% of all frequency histograms.This formula is found to apply only for the cases where num_distinct >1. For the remaining 0.05%, the density is within 2% of the formula. All the discrepant densities are IOTs; however, not all IOTs are discrepant, so I must be missing some detail.

In this example, num_values = 10000 – 0 = 10000. Density = .5 / 10000 = 0.00005.

The endpoint values are, roughly, using cre_hist_funcs.sql, functionĀ hist_numtochar, by Martin Widlake:

ENDPOINT_NUMBER VAL
--------------- ----------
 9999 COMPLEP
 10000 PENDIN<

Comment: density is used to cost predicates on non-popular values.

“where status = ‘COMPLETE'” remains non-selective.

“where status =’PENDING'” is selective.

Compare run without histogram vs run with histogram

where status =’PENDING’

diff run1/db12201_ora_20225_STATUS.trc run2/db12201_ora_20607_STATUS.trc

Output here: 10053 diff: where status = ā€˜PENDING’

There several points of interest in the 10053 trace comparison

  • With the histogram, the selectivity of status=’PENDING’ is 1.0000e-4, which is exactly correct.
875,876c877,879
< AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.500000
< Estimated selectivity: 0.500000 , col: #3
---
> AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.000050
> Histogram: Freq #Bkts: 2 UncompBkts: 10000 EndPtVals: 2 ActualVal: no
> Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3
  • The plan changes thus:
1016,1021c1028,1034
< -------------------------------------+-----------------------------------+
< | Id | Operation | Name | Rows | Bytes | Cost | Time |
< -------------------------------------+-----------------------------------+
< | 0 | SELECT STATEMENT | | | | 11 | |
< | 1 | TABLE ACCESS FULL | ORDS | 5000 | 63K | 11 | 00:00:01 |
< -------------------------------------+-----------------------------------+
---
> ---------------------------------------------------------+-----------------------------------+
> | Id | Operation | Name | Rows | Bytes | Cost | Time |
> ---------------------------------------------------------+-----------------------------------+
> | 0 | SELECT STATEMENT | | | | 2 | |
> | 1 | TABLE ACCESS BY INDEX ROWID BATCHED | ORDS | 1 | 13 | 2 | 00:00:01 |
> | 2 | INDEX RANGE SCAN | STATUS_IDX| 1 | | 1 | 00:00:01 |
> ---------------------------------------------------------+-----------------------------------+

where categoryid = 0 and status = ‘COMPLETE’

diff run1/db12201_ora_20225_CAT.trc run2/db12201_ora_20607_CAT.trc

output here: 10053 diff: where categoryid and status

  • With a histogram, the estimated cost of using an index to access a popular value is higher. All the more reason not to use STATUS_IDX
 917 Access Path: index (AllEqRange)
 918 Index: STATUS_IDX
919,921c922,924
< resc_io: 30.000000 resc_cpu: 2414493
< ix_sel: 0.500000 ix_sel_with_filters: 0.500000
< Cost: 30.064126 Resp: 30.064126 Degree: 1
---
> resc_io: 60.000000 resc_cpu: 4827696
> ix_sel: 0.999900 ix_sel_with_filters: 0.999900
> Cost: 60.128217 Resp: 60.128217 Degree: 1
  • The cost of CATEGORY_IDX is unchanged.
 904 ****** Costing Index CATEGORY_IDX
 905 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_SCAN
 906 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_FILTER
 907 Estimated selectivity: 0.001000 , col: #2
 908 Access Path: index (AllEqRange)
 909 Index: CATEGORY_IDX
 910 resc_io: 11.000000 resc_cpu: 83586
 911 ix_sel: 0.001000 ix_sel_with_filters: 0.001000
 912 Cost: 11.002220 Resp: 11.002220 Degree: 1
  • CATEGORY_IDX is more selective and less costly than STATUS_IDX. The optimizer chooses CATEGORY_IDX.

Need for histogram in an application

The need for a histogram depends on the application. In this example, no histogram is needed on columns ORDID and CATEGORYID because the values are evenly distributed. There is no skew.

If the application code base consists of only this query, then no histogram is needed on STATUS:

select ordid from ords
where categoryid = 0
and status = 'COMPLETE'

If the application, additionally, has this query, then a histogram is needed on STATUS.

select ordid from ords
where status = 'PENDING'

What about “where status = ‘COMPLETE'”?

The question sometimes arises, what about a query with just “where status = ‘COMPLETE'”. Such a query would access a high number of blocks and return a high number of rows, and would be quickly identified as a poor performer. It is not clear what business value would be served by such a query. Such queries appear less commonly in practical applications.

What about two plans for the same statement?

Histograms are sometimes touted for their usefulness in finding more than one plan for the same sql. This blog post does not identify any such examples.

The hypothetical situation we are describing is:

  • The SQL is the same.
  • The plans are different.
  • In one case, the predicate is on a popular value and in the other case, a rare value.
  • In the popular case, the query may return a high number of rows, or a plan step may return a high number of rows to its antecedent.
  • In the non-popular case, the query accesses few blocks and returns quickly.
  • The popular and non-popular cases have business value.
  • The slower response time of the popular case is acceptable.

Findings

  • Column usage in predicates, as recorded in col_usage$, leads to analyzing for, but not necessarily storage of, histograms.
  • 10053 trace files show the optimizer’s rationale for choosing its final execution plan.
  • In some cases, a histogram helps the optimizer choose a less costly plan.
  • In some cases, a histogram improves the accuracy of a cost computation, but does not affect the final choice of plan.

10053 diff: group by status

[oracle@stormking db12201 12.2]$ diff run1/db12201_ora_20225_GBY.trc run2/db12201_ora_20607_GBY.trc
1c1
< Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20225_GBY.trc
---
> Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_GBY.trc
12,13c12,13
< Oracle process number: 41
< Unix process pid: 20225, image: oracle@stormking (TNS V1-V3)
---
> Oracle process number: 40
> Unix process pid: 20607, image: oracle@stormking (TNS V1-V3)
16,22c16,22
< *** 2018-02-11T14:23:23.367313-05:00
< *** SESSION ID:(84.19304) 2018-02-11T14:23:23.367313-05:00
< *** CLIENT ID:() 2018-02-11T14:23:23.367313-05:00
< *** SERVICE NAME:(SYS$USERS) 2018-02-11T14:23:23.367313-05:00
< *** MODULE NAME:(SQL*Plus) 2018-02-11T14:23:23.367313-05:00
< *** ACTION NAME:() 2018-02-11T14:23:23.367313-05:00
< *** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:23:23.367313-05:00
---
> *** 2018-02-11T14:25:27.002021-05:00
> *** SESSION ID:(84.15782) 2018-02-11T14:25:27.002021-05:00
> *** CLIENT ID:() 2018-02-11T14:25:27.002021-05:00
> *** SERVICE NAME:(SYS$USERS) 2018-02-11T14:25:27.002021-05:00
> *** MODULE NAME:(SQL*Plus) 2018-02-11T14:25:27.002021-05:00
> *** ACTION NAME:() 2018-02-11T14:25:27.002021-05:00
> *** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:25:27.002021-05:00
25c25
< *** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20225_CAT.trc ***
---
> *** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_CAT.trc ***
27c27
< Registered qb: SEL$1 0xf972ef68 (PARSER)
---
> Registered qb: SEL$1 0x6bfd6f68 (PARSER)
862c862
< Registered qb: SEL$1 0xf94dbf10 (COPY SEL$1)
---
> Registered qb: SEL$1 0x6c4d9b28 (COPY SEL$1)
876c876
< call(in-use=1736, alloc=16344), compile(in-use=130400, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=130400, alloc=136232), execution(in-use=2936, alloc=4032)
879c879
< call(in-use=1736, alloc=16344), compile(in-use=126272, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=126272, alloc=136232), execution(in-use=2936, alloc=4032)
883c883
< call(in-use=1736, alloc=16344), compile(in-use=126272, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=126272, alloc=136232), execution(in-use=2936, alloc=4032)
888c888
< call(in-use=1736, alloc=16344), compile(in-use=126680, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=126704, alloc=136232), execution(in-use=2936, alloc=4032)
891c891
< call(in-use=1736, alloc=16344), compile(in-use=126800, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=126824, alloc=136232), execution(in-use=2936, alloc=4032)
897c897
< call(in-use=1736, alloc=16344), compile(in-use=126800, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=126824, alloc=136232), execution(in-use=2936, alloc=4032)
901c901
< call(in-use=1736, alloc=16344), compile(in-use=127208, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=127272, alloc=136232), execution(in-use=2936, alloc=4032)
904c904
< call(in-use=1736, alloc=16344), compile(in-use=127328, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=127392, alloc=136232), execution(in-use=2936, alloc=4032)
911c911
< call(in-use=1736, alloc=16344), compile(in-use=127328, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=127392, alloc=136232), execution(in-use=2936, alloc=4032)
916c916
< call(in-use=1736, alloc=16344), compile(in-use=127736, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=127800, alloc=136232), execution(in-use=2936, alloc=4032)
919c919
< call(in-use=1736, alloc=16344), compile(in-use=127856, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=127920, alloc=136232), execution(in-use=2936, alloc=4032)
927c927
< call(in-use=1736, alloc=16344), compile(in-use=127856, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=127920, alloc=136232), execution(in-use=2936, alloc=4032)
930c930
< call(in-use=1736, alloc=16344), compile(in-use=128264, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=128328, alloc=136232), execution(in-use=2936, alloc=4032)
933c933
< call(in-use=1736, alloc=16344), compile(in-use=128424, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=128448, alloc=136232), execution(in-use=2936, alloc=4032)
949c949
< call(in-use=1736, alloc=16344), compile(in-use=129680, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=1736, alloc=16344), compile(in-use=129728, alloc=136232), execution(in-use=2936, alloc=4032)
951c951
< kkoqbc-subheap (create addr=0x7fddf9729810)
---
> kkoqbc-subheap (create addr=0x7f286bfd1810)
991a992,993
> Column (#3):
> NewDensity:0.000050, OldDensity:0.000050 BktCnt:10000.000000, PopBktCnt:9999.000000, PopValCnt:1, NDV:2
993c995,996
< AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.500000
---
> AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.000050
> Histogram: Freq #Bkts: 2 UncompBkts: 10000 EndPtVals: 2 ActualVal: no
1145c1148
< kkoqbc-subheap (delete addr=0x7fddf9729810, in-use=27312, alloc=32840)
---
> kkoqbc-subheap (delete addr=0x7f286bfd1810, in-use=27312, alloc=32840)
1148c1151
< call(in-use=9832, alloc=65656), compile(in-use=133208, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=9624, alloc=65656), compile(in-use=135032, alloc=136232), execution(in-use=2936, alloc=4032)
1154c1157
< call(in-use=9832, alloc=65656), compile(in-use=136304, alloc=139528), execution(in-use=2936, alloc=4032)
---
> call(in-use=9624, alloc=65656), compile(in-use=138208, alloc=140376), execution(in-use=2936, alloc=4032)
3080c3083
< SEL$1 0xf972ef68 (PARSER) [FINAL]
---
> SEL$1 0x6bfd6f68 (PARSER) [FINAL]
3083c3086
< call(in-use=12280, alloc=65656), compile(in-use=159680, alloc=218968), execution(in-use=7392, alloc=8088)
---
> call(in-use=12072, alloc=65656), compile(in-use=161568, alloc=223424), execution(in-use=7392, alloc=8088)

10053 diff: where categoryid and status

[oracle@stormking db12201 12.2]$ diff run1/db12201_ora_20225_CAT.trc run2/db12201_ora_20607_CAT.trc
1c1
< Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20225_CAT.trc
---
> Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_CAT.trc
12,13c12,13
< Oracle process number: 41
< Unix process pid: 20225, image: oracle@stormking (TNS V1-V3)
---
> Oracle process number: 40
> Unix process pid: 20607, image: oracle@stormking (TNS V1-V3)
16,22c16,22
< *** 2018-02-11T14:23:23.119343-05:00
< *** SESSION ID:(84.19304) 2018-02-11T14:23:23.119343-05:00
< *** CLIENT ID:() 2018-02-11T14:23:23.119343-05:00
< *** SERVICE NAME:(SYS$USERS) 2018-02-11T14:23:23.119343-05:00
< *** MODULE NAME:(SQL*Plus) 2018-02-11T14:23:23.119343-05:00
< *** ACTION NAME:() 2018-02-11T14:23:23.119343-05:00
< *** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:23:23.119343-05:00
---
> *** 2018-02-11T14:25:26.881036-05:00
> *** SESSION ID:(84.15782) 2018-02-11T14:25:26.881036-05:00
> *** CLIENT ID:() 2018-02-11T14:25:26.881036-05:00
> *** SERVICE NAME:(SYS$USERS) 2018-02-11T14:25:26.881036-05:00
> *** MODULE NAME:(SQL*Plus) 2018-02-11T14:25:26.881036-05:00
> *** ACTION NAME:() 2018-02-11T14:25:26.881036-05:00
> *** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:25:26.881036-05:00
25c25
< *** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20225_STATUS.trc ***
---
> *** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATUS.trc ***
27c27
< Registered qb: SEL$1 0xf972ef68 (PARSER)
---
> Registered qb: SEL$1 0x6bfd6f68 (PARSER)
817c817
< kkoqbc-subheap (create addr=0x7fddf9729810)
---
> kkoqbc-subheap (create addr=0x7f286bfd1810)
876a877,878
> Column (#3):
> NewDensity:0.000050, OldDensity:0.000050 BktCnt:10000.000000, PopBktCnt:9999.000000, PopValCnt:1, NDV:2
878,879c880,882
< AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.500000
< Estimated selectivity: 0.500000 , col: #3
---
> AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.000050
> Histogram: Freq #Bkts: 2 UncompBkts: 10000 EndPtVals: 2 ActualVal: no
> Estimated selectivity: 0.999900 , endpoint value predicate, col: #3
886c889
< Estimated selectivity: 0.500000 , col: #3
---
> Estimated selectivity: 0.999900 , endpoint value predicate, col: #3
888c891
< Card: Original: 10000.000000 Rounded: 5 Computed: 5.000000 Non Adjusted: 5.000000
---
> Card: Original: 10000.000000 Rounded: 10 Computed: 9.999000 Non Adjusted: 9.999000
893c896
< io = NOCOST, cpu = 50.000000, sel = 0.500000 flag = 2048 ("ORDS"."STATUS"='COMPLETE')
---
> io = NOCOST, cpu = 50.000000, sel = 0.999900 flag = 2048 ("ORDS"."STATUS"='COMPLETE')
916c919
< Estimated selectivity: 0.500000 , col: #3
---
> Estimated selectivity: 0.999900 , endpoint value predicate, col: #3
919,921c922,924
< resc_io: 30.000000 resc_cpu: 2414493
< ix_sel: 0.500000 ix_sel_with_filters: 0.500000
< Cost: 30.064126 Resp: 30.064126 Degree: 1
---
> resc_io: 60.000000 resc_cpu: 4827696
> ix_sel: 0.999900 ix_sel_with_filters: 0.999900
> Cost: 60.128217 Resp: 60.128217 Degree: 1
933c936
< Estimated selectivity: 0.500000 , col: #3
---
> Estimated selectivity: 0.999900 , endpoint value predicate, col: #3
937c940
< Estimated selectivity: 0.500000 , col: #3
---
> Estimated selectivity: 0.999900 , endpoint value predicate, col: #3
940,942c943,945
< resc_io: 14.000000 resc_cpu: 1100550
< ix_sel: 0.500000 ix_sel_with_filters: 0.500000
< Cost: 14.029229 Resp: 14.029229 Degree: 0
---
> resc_io: 28.000000 resc_cpu: 2200050
> ix_sel: 0.999900 ix_sel_with_filters: 0.999900
> Cost: 28.058430 Resp: 28.058430 Degree: 0
946,950c949,950
< Used STATUS_IDX
< Cost = 14.047156, sel = 0.500000
< Access path: Bitmap index - accepted
< Cost: 16.017750 Cost_io: 15.970067 Cost_cpu: 1795404.871128 Sel: 5.0000e-04
< Not Believed to be index-only
---
> Not used STATUS_IDX
> Cost = 28.094281, sel = 0.999900
968c968
< resc: 14.029229 card: 5000.000000 bytes: deg: 1 resp: 14.029229
---
> resc: 28.058430 card: 9999.000000 bytes: deg: 1 resp: 28.058430
970,972c970,972
< Cost per ptn: 0.029254 #ptns: 1
< hash_area: 256 (max=41035) buildfrag: 1 probefrag: 19 ppasses: 1
< Hash join: Resc: 15.058748 Resp: 15.058748 [multiMatchCost=0.000000]
---
> Cost per ptn: 0.042531 #ptns: 1
> hash_area: 256 (max=41035) buildfrag: 1 probefrag: 38 ppasses: 1
> Hash join: Resc: 29.101226 Resp: 29.101226 [multiMatchCost=0.000000]
976c976
< resc: 1.000265 card 5.000000 bytes: deg: 1 resp: 1.000265
---
> resc: 1.000265 card 9.999000 bytes: deg: 1 resp: 1.000265
980c980
< Cost per ptn: 0.042514 #ptns: 1
---
> Cost per ptn: 0.042534 #ptns: 1
982c982
< Hash join: Resc: 22.099868 Resp: 22.099868 [multiMatchCost=0.000000]
---
> Hash join: Resc: 22.099888 Resp: 22.099888 [multiMatchCost=0.000000]
986c986
< Cost: 37.158616
---
> Cost: 51.201114
990c990
< Cost: 11.002220 Degree: 1 Resp: 11.002220 Card: 5.000000 Bytes: 0.000000
---
> Cost: 11.002220 Degree: 1 Resp: 11.002220 Card: 9.999000 Bytes: 0.000000
1004c1004
< Best so far: Table#: 0 cost: 11.002220 card: 5.000000 bytes: 85.000000
---
> Best so far: Table#: 0 cost: 11.002220 card: 9.999000 bytes: 170.000000
1026c1026
< Cost: 11.002220 Degree: 1 Card: 5.000000 Bytes: 85.000000
---
> Cost: 11.002220 Degree: 1 Card: 10.000000 Bytes: 170.000000
1029c1029
< kkoqbc-subheap (delete addr=0x7fddf9729810, in-use=42200, alloc=49272)
---
> kkoqbc-subheap (delete addr=0x7f286bfd1810, in-use=42200, alloc=49272)
1032c1032
< call(in-use=10064, alloc=65760), compile(in-use=93904, alloc=97328), execution(in-use=2936, alloc=4032)
---
> call(in-use=9856, alloc=65760), compile(in-use=95696, alloc=99072), execution(in-use=2936, alloc=4032)
1038c1038
< call(in-use=10064, alloc=65760), compile(in-use=94912, alloc=97328), execution(in-use=2936, alloc=4032)
---
> call(in-use=9856, alloc=65760), compile(in-use=96704, alloc=99072), execution(in-use=2936, alloc=4032)
1043c1043
< SPD: Inserted felem, fid=11333809974545767572, ftype = 1, freason = 1, dtype = 0, dstate = 0, dflag = 0, ver = NO, keep = NO
---
> SPD: Modified felem, fid=11333809974545767572, ftype = 1, freason = 1, dtype = 0, dstate = 0, dflag = 0, ver = NO, keep = NO
1047c1047
< SPD: Inserted felem, fid=2757520453804995358, ftype = 1, freason = 1, dtype = 0, dstate = 0, dflag = 0, ver = NO, keep = NO
---
> SPD: Modified felem, fid=2757520453804995358, ftype = 1, freason = 1, dtype = 0, dstate = 0, dflag = 0, ver = NO, keep = NO
1083c1083
< | 1 | TABLE ACCESS BY INDEX ROWID BATCHED | ORDS | 5 | 85 | 11 | 00:00:01 |
---
> | 1 | TABLE ACCESS BY INDEX ROWID BATCHED | ORDS | 10 | 170 | 11 | 00:00:01 |
2973c2973
< SEL$1 0xf972ef68 (PARSER) [FINAL]
---
> SEL$1 0x6bfd6f68 (PARSER) [FINAL]
2976c2976
< call(in-use=17648, alloc=65760), compile(in-use=123424, alloc=183352), execution(in-use=10112, alloc=12144)
---
> call(in-use=17440, alloc=65760), compile(in-use=125208, alloc=187496), execution(in-use=10112, alloc=12144)
2983c2983
< *** TRACE CONTINUES IN FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20225_GBY.trc ***
---
> *** TRACE CONTINUES IN FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_GBY.trc ***

10053 diff: where status = ‘PENDING’

 

[oracle@stormking db12201 12.2]$ diff run1/db12201_ora_20225_STATUS.trc run2/db12201_ora_20607_STATUS.trc

1c1
< Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20225_STATUS.trc
---
> Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATUS.trc
12,13c12,13
< Oracle process number: 41
< Unix process pid: 20225, image: oracle@stormking (TNS V1-V3)
---
> Oracle process number: 40
> Unix process pid: 20607, image: oracle@stormking (TNS V1-V3)
16,22c16,22
< *** 2018-02-11T14:23:22.737391-05:00
< *** SESSION ID:(84.19304) 2018-02-11T14:23:22.737391-05:00
< *** CLIENT ID:() 2018-02-11T14:23:22.737391-05:00
< *** SERVICE NAME:(SYS$USERS) 2018-02-11T14:23:22.737391-05:00
< *** MODULE NAME:(SQL*Plus) 2018-02-11T14:23:22.737391-05:00
< *** ACTION NAME:() 2018-02-11T14:23:22.737391-05:00
< *** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:23:22.737391-05:00
---
> *** 2018-02-11T14:25:26.553076-05:00
> *** SESSION ID:(84.15782) 2018-02-11T14:25:26.553076-05:00
> *** CLIENT ID:() 2018-02-11T14:25:26.553076-05:00
> *** SERVICE NAME:(SYS$USERS) 2018-02-11T14:25:26.553076-05:00
> *** MODULE NAME:(SQL*Plus) 2018-02-11T14:25:26.553076-05:00
> *** ACTION NAME:() 2018-02-11T14:25:26.553076-05:00
> *** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:25:26.553076-05:00
25c25
< *** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20225_STATS.trc ***
---
> *** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATS.trc ***
27c27
< Registered qb: SEL$1 0xf972ef68 (PARSER)
---
> Registered qb: SEL$1 0x6bfd6f68 (PARSER)
816c816
< kkoqbc-subheap (create addr=0x7fddf9729810)
---
> kkoqbc-subheap (create addr=0x7f286bfd1810)
873a874,875
> Column (#3):
> NewDensity:0.000050, OldDensity:0.000050 BktCnt:10000.000000, PopBktCnt:9999.000000, PopValCnt:1, NDV:2
875,876c877,879
< AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.500000
< Estimated selectivity: 0.500000 , col: #3
---
> AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.000050
> Histogram: Freq #Bkts: 2 UncompBkts: 10000 EndPtVals: 2 ActualVal: no
> Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3
878c881
< Card: Original: 10000.000000 Rounded: 5000 Computed: 5000.000000 Non Adjusted: 5000.000000
---
> Card: Original: 10000.000000 Rounded: 1 Computed: 1.000000 Non Adjusted: 1.000000
882c885
< io = NOCOST, cpu = 50.000000, sel = 0.500000 flag = 2048 ("ORDS"."STATUS"='PENDING')
---
> io = NOCOST, cpu = 50.000000, sel = 0.000100 flag = 2048 ("ORDS"."STATUS"='PENDING')
896c899
< Estimated selectivity: 0.500000 , col: #3
---
> Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3
899,901c902,904
< resc_io: 30.000000 resc_cpu: 2164493
< ix_sel: 0.500000 ix_sel_with_filters: 0.500000
< Cost: 30.057486 Resp: 30.057486 Degree: 1
---
> resc_io: 2.000000 resc_cpu: 15483
> ix_sel: 1.0000e-04 ix_sel_with_filters: 1.0000e-04
> Cost: 2.000411 Resp: 2.000411 Degree: 1
904c907
< Estimated selectivity: 0.500000 , col: #3
---
> Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3
908c911
< Estimated selectivity: 0.500000 , col: #3
---
> Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3
911,913c914,916
< resc_io: 14.000000 resc_cpu: 1100550
< ix_sel: 0.500000 ix_sel_with_filters: 0.500000
< Cost: 14.029229 Resp: 14.029229 Degree: 0
---
> resc_io: 1.000000 resc_cpu: 8171
> ix_sel: 1.0000e-04 ix_sel_with_filters: 1.0000e-04
> Cost: 1.000217 Resp: 1.000217 Degree: 0
916c919
< Cost = 14.047156, sel = 0.500000
---
> Cost = 1.000221, sel = 1.0000e-04
931c934
< resc: 14.029229 card 5000.000000 bytes: deg: 1 resp: 14.029229
---
> resc: 1.000217 card 1.000000 bytes: deg: 1 resp: 1.000217
935,937c938,940
< Cost per ptn: 0.062413 #ptns: 1
< hash_area: 256 (max=41035) buildfrag: 19 probefrag: 32 ppasses: 1
< Hash join: Resc: 35.148731 Resp: 35.148731 [multiMatchCost=0.000000]
---
> Cost per ptn: 0.042498 #ptns: 1
> hash_area: 256 (max=41035) buildfrag: 1 probefrag: 32 ppasses: 1
> Hash join: Resc: 22.099804 Resp: 22.099804 [multiMatchCost=0.000000]
941c944
< Cost: 35.148731
---
> Cost: 22.099804
943,944c946,948
< Best:: AccessPath: TableScan
< Cost: 11.070360 Degree: 1 Resp: 11.070360 Card: 5000.000000 Bytes: 0.000000
---
> Best:: AccessPath: IndexRange
> Index: STATUS_IDX
> Cost: 2.000411 Degree: 1 Resp: 2.000411 Card: 1.000000 Bytes: 0.000000
958c962
< Best so far: Table#: 0 cost: 11.070360 card: 5000.000000 bytes: 65000.000000
---
> Best so far: Table#: 0 cost: 2.000411 card: 1.000000 bytes: 13.000000
970,971c974,975
< AutoDOP: Consider caching for ORDS[ORDS](obj#93045)
< cost:11.070360 blkSize:8192 objSize:35.00 marObjSize:33.25 bufSize:469047.00 affPercent:80 smallTab:YES affinitized:NO
---
> AutoDOP: Consider caching for ORDS[ORDS](obj#-1)
> cost:2.000411 blkSize:8192 objSize:35.00 marObjSize:33.25 bufSize:469047.00 affPercent:80 smallTab:YES affinitized:NO
974c978,979
< id=0 frofand predicate="ORDS"."STATUS"='PENDING'
---
> id=0 frofkks[i] (index start key) predicate="ORDS"."STATUS"='PENDING'
> id=0 frofkke[i] (index stop key) predicate="ORDS"."STATUS"='PENDING'
978,981c983,986
< Cost: 11.070360 Degree: 1 Card: 5000.000000 Bytes: 65000.000000
< Resc: 11.070360 Resc_io: 11.000000 Resc_cpu: 2649250
< Resp: 11.070360 Resp_io: 11.000000 Resc_cpu: 2649250
< kkoqbc-subheap (delete addr=0x7fddf9729810, in-use=41016, alloc=49272)
---
> Cost: 2.000411 Degree: 1 Card: 1.000000 Bytes: 13.000000
> Resc: 2.000411 Resc_io: 2.000000 Resc_cpu: 15483
> Resp: 2.000411 Resp_io: 2.000000 Resc_cpu: 15483
> kkoqbc-subheap (delete addr=0x7f286bfd1810, in-use=41112, alloc=49272)
984c989
< call(in-use=9096, alloc=65760), compile(in-use=86264, alloc=89040), execution(in-use=2936, alloc=4032)
---
> call(in-use=8888, alloc=65760), compile(in-use=88344, alloc=89040), execution(in-use=2936, alloc=4032)
990c995
< call(in-use=9096, alloc=65760), compile(in-use=87272, alloc=89040), execution(in-use=2936, alloc=4032)
---
> call(in-use=8888, alloc=65760), compile(in-use=89352, alloc=93184), execution(in-use=2936, alloc=4032)
992a998,1004
> CBRID: ORDS @ SEL$1 TableLookup allocation - Failure - bug-fix control
> kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s)
> block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes)
> tot_io_size=0(MB) time=0(ms)
> kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s)
> block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes)
> tot_io_size=0(MB) time=0(ms)
1002c1014
< sql_id=03y2yj25g7d27 plan_hash_value=1252245826 problem_type=3
---
> sql_id=03y2yj25g7d27 plan_hash_value=1807741764 problem_type=3
1016,1021c1028,1034
< -------------------------------------+-----------------------------------+
< | Id | Operation | Name | Rows | Bytes | Cost | Time |
< -------------------------------------+-----------------------------------+
< | 0 | SELECT STATEMENT | | | | 11 | |
< | 1 | TABLE ACCESS FULL | ORDS | 5000 | 63K | 11 | 00:00:01 |
< -------------------------------------+-----------------------------------+
---
> ---------------------------------------------------------+-----------------------------------+
> | Id | Operation | Name | Rows | Bytes | Cost | Time |
> ---------------------------------------------------------+-----------------------------------+
> | 0 | SELECT STATEMENT | | | | 2 | |
> | 1 | TABLE ACCESS BY INDEX ROWID BATCHED | ORDS | 1 | 13 | 2 | 00:00:01 |
> | 2 | INDEX RANGE SCAN | STATUS_IDX| 1 | | 1 | 00:00:01 |
> ---------------------------------------------------------+-----------------------------------+
1024a1038
> 2 - SEL$1 / ORDS@SEL$1
1028c1042
< 1 - filter("STATUS"='PENDING')
---
> 2 - access("STATUS"='PENDING')
1034,1036c1048,1050
< plan_hash_full : 2095704957
< plan_hash : 1252245826
< plan_hash_2 : 2095704957
---
> plan_hash_full : 2670720227
> plan_hash : 1807741764
> plan_hash_2 : 2670720227
1045c1059,1060
< FULL(@"SEL$1" "ORDS"@"SEL$1")
---
> INDEX_RS_ASC(@"SEL$1" "ORDS"@"SEL$1" ("ORDS"."STATUS"))
> BATCH_TABLE_ACCESS_BY_ROWID(@"SEL$1" "ORDS"@"SEL$1")
2906c2921
< SEL$1 0xf972ef68 (PARSER) [FINAL]
---
> SEL$1 0x6bfd6f68 (PARSER) [FINAL]
2909c2924
< call(in-use=16696, alloc=65760), compile(in-use=108432, alloc=168664), execution(in-use=6504, alloc=8088)
---
> call(in-use=13888, alloc=65760), compile(in-use=113288, alloc=175064), execution(in-use=9136, alloc=12144)
2916c2931,2933
< *** TRACE CONTINUES IN FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20225_CAT.trc ***
---
> *** 2018-02-11T14:25:26.880036-05:00
>
> *** TRACE CONTINUES IN FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_CAT.trc ***

db12201_ora_20607_GBY.trc

Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_GBY.trc
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
Build label: RDBMS_12.2.0.1.0_LINUX.X64_170125
ORACLE_HOME: /u01/app/oracle/product/12.2.0/dbhome_1
System name: Linux
Node name: stormking
Release: 2.6.39-400.247.1.el6uek.x86_64
Version: #1 SMP Thu Feb 5 16:06:15 PST 2015
Machine: x86_64
Instance name: db12201
Redo thread mounted by this instance: 1
Oracle process number: 40
Unix process pid: 20607, image: oracle@stormking (TNS V1-V3)




*** 2018-02-11T14:25:27.002021-05:00
*** SESSION ID:(84.15782) 2018-02-11T14:25:27.002021-05:00
*** CLIENT ID:() 2018-02-11T14:25:27.002021-05:00
*** SERVICE NAME:(SYS$USERS) 2018-02-11T14:25:27.002021-05:00
*** MODULE NAME:(SQL*Plus) 2018-02-11T14:25:27.002021-05:00
*** ACTION NAME:() 2018-02-11T14:25:27.002021-05:00
*** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:25:27.002021-05:00


*** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_CAT.trc ***

Registered qb: SEL$1 0x6bfd6f68 (PARSER)
---------------------
QUERY BLOCK SIGNATURE
---------------------
 signature (): qb_name=SEL$1 nbfros=1 flg=0
 fro(0): flg=4 objn=93045 hint_alias="ORDS"@"SEL$1"

SPM: statement not found in SMB
SPM: capture of plan baseline is OFF

**************************
Automatic degree of parallelism (AUTODOP)
**************************
Automatic degree of parallelism is disabled: Parameter.
kkopqSetForceParallelProperties: Hint:no
Query: compute:yes forced:no forceDop:0
Global Manual Dop: 1 - Rounded?: no

PM: Considering predicate move-around in query block SEL$1 (#0)
**************************
Predicate Move-Around (PM)
**************************
OPTIMIZER INFORMATION

******************************************
----- Current SQL Statement for this session (sql_id=1yn23jxt8g9fj) -----
select status, count(*) numords
from ords
group by status
*******************************************
Legend
The following abbreviations are used by optimizer trace.
CBQT - cost-based query transformation
JPPD - join predicate push-down
OJPPD - old-style (non-cost-based) JPPD
FPD - filter push-down
PM - predicate move-around
CVM - complex view merging
SPJ - select-project-join
SJC - set join conversion
SU - subquery unnesting
OBYE - order by elimination
OST - old style star transformation
ST - new (cbqt) star transformation
CNT - count(col) to count(*) transformation
JE - Join Elimination
JF - join factorization
CBY - connect by
SLP - select list pruning
DP - distinct placement
VT - vector transformation
AAT - Approximate Aggregate Transformation
ORE - CBQT OR-Expansion
LORE - Legacy OR-Expansion
qb - query block
LB - leaf blocks
DK - distinct keys
LB/K - average number of leaf blocks per key
DB/K - average number of data blocks per key
CLUF - clustering factor
NDV - number of distinct values
Resp - response cost
Card - cardinality
Resc - resource cost
NL - nested loops (join)
SM - sort merge (join)
HA - hash (join)
CPUSPEED - CPU Speed 
IOTFRSPEED - I/O transfer speed
IOSEEKTIM - I/O seek time
SREADTIM - average single block read time
MREADTIM - average multiblock read time
MBRC - average multiblock read count
MAXTHR - maximum I/O system throughput
SLAVETHR - average slave I/O throughput
dmeth - distribution method
 1: no partitioning required
 2: value partitioned
 4: right is random (round-robin)
 128: left is random (round-robin)
 8: broadcast right and partition left
 16: broadcast left and partition right
 32: partition left using partitioning of right
 64: partition right using partitioning of left
 256: run the join in serial
 0: invalid distribution method
sel - selectivity
ptn - partition
AP - adaptive plans
***************************************
PARAMETERS USED BY THE OPTIMIZER
********************************
 *************************************
 PARAMETERS WITH ALTERED VALUES
 ******************************
Compilation Environment Dump
_pga_max_size = 328280 KB
Bug Fix Control Environment




*************************************
 PARAMETERS WITH DEFAULT VALUES
 ******************************
Compilation Environment Dump
optimizer_mode_hinted = false
optimizer_features_hinted = 0.0.0
parallel_execution_enabled = true
parallel_query_forced_dop = 0
parallel_dml_forced_dop = 0
parallel_ddl_forced_degree = 0
parallel_ddl_forced_instances = 0
_query_rewrite_fudge = 90
optimizer_features_enable = 12.2.0.1
_optimizer_search_limit = 5
cpu_count = 1
active_instance_count = 1
parallel_threads_per_cpu = 2
hash_area_size = 131072
bitmap_merge_area_size = 1048576
sort_area_size = 65536
sort_area_retained_size = 0
_sort_elimination_cost_ratio = 0
_optimizer_block_size = 8192
_sort_multiblock_read_count = 2
_hash_multiblock_io_count = 0
_db_file_optimizer_read_count = 8
_optimizer_max_permutations = 2000
pga_aggregate_target = 1641472 KB
_query_rewrite_maxdisjunct = 257
_smm_auto_min_io_size = 56 KB
_smm_auto_max_io_size = 248 KB
_smm_min_size = 1024 KB
_smm_max_size_static = 164140 KB
_smm_px_max_size_static = 820736 KB
_cpu_to_io = 0
_optimizer_undo_cost_change = 12.2.0.1
parallel_query_mode = enabled
parallel_dml_mode = disabled
parallel_ddl_mode = enabled
optimizer_mode = all_rows
sqlstat_enabled = false
_optimizer_percent_parallel = 101
_always_anti_join = choose
_always_semi_join = choose
_optimizer_mode_force = true
_partition_view_enabled = true
_always_star_transformation = false
_query_rewrite_or_error = false
_hash_join_enabled = true
cursor_sharing = exact
_b_tree_bitmap_plans = true
star_transformation_enabled = false
_optimizer_cost_model = choose
_new_sort_cost_estimate = true
_complex_view_merging = true
_unnest_subquery = true
_eliminate_common_subexpr = true
_pred_move_around = true
_convert_set_to_join = false
_push_join_predicate = true
_push_join_union_view = true
_fast_full_scan_enabled = true
_optim_enhance_nnull_detection = true
_parallel_broadcast_enabled = true
_px_broadcast_fudge_factor = 100
_ordered_nested_loop = true
_no_or_expansion = false
optimizer_index_cost_adj = 100
optimizer_index_caching = 0
_system_index_caching = 0
_disable_datalayer_sampling = false
query_rewrite_enabled = true
query_rewrite_integrity = enforced
_query_cost_rewrite = true
_query_rewrite_2 = true
_query_rewrite_1 = true
_query_rewrite_expression = true
_query_rewrite_jgmigrate = true
_query_rewrite_fpc = true
_query_rewrite_drj = false
_full_pwise_join_enabled = true
_partial_pwise_join_enabled = true
_left_nested_loops_random = true
_improved_row_length_enabled = true
_index_join_enabled = true
_enable_type_dep_selectivity = true
_improved_outerjoin_card = true
_optimizer_adjust_for_nulls = true
_optimizer_degree = 0
_use_column_stats_for_function = true
_subquery_pruning_enabled = true
_subquery_pruning_mv_enabled = false
_or_expand_nvl_predicate = true
_like_with_bind_as_equality = false
_table_scan_cost_plus_one = true
_cost_equality_semi_join = true
_default_non_equality_sel_check = true
_new_initial_join_orders = true
_oneside_colstat_for_equijoins = true
_optim_peek_user_binds = true
_minimal_stats_aggregation = true
_force_temptables_for_gsets = false
workarea_size_policy = auto
_smm_auto_cost_enabled = true
_gs_anti_semi_join_allowed = true
_optim_new_default_join_sel = true
optimizer_dynamic_sampling = 2
_pre_rewrite_push_pred = true
_optimizer_new_join_card_computation = true
_union_rewrite_for_gs = yes_gset_mvs
_generalized_pruning_enabled = true
_optim_adjust_for_part_skews = true
_force_datefold_trunc = false
statistics_level = typical
_optimizer_system_stats_usage = true
skip_unusable_indexes = true
_remove_aggr_subquery = true
_optimizer_push_down_distinct = 0
_dml_monitoring_enabled = true
_optimizer_undo_changes = false
_predicate_elimination_enabled = true
_nested_loop_fudge = 100
_project_view_columns = true
_local_communication_costing_enabled = true
_local_communication_ratio = 50
_query_rewrite_vop_cleanup = true
_slave_mapping_enabled = true
_optimizer_cost_based_transformation = linear
_optimizer_mjc_enabled = true
_right_outer_hash_enable = true
_spr_push_pred_refspr = true
_optimizer_cache_stats = false
_optimizer_cbqt_factor = 50
_optimizer_squ_bottomup = true
_fic_area_size = 131072
_optimizer_skip_scan_enabled = true
_optimizer_cost_filter_pred = false
_optimizer_sortmerge_join_enabled = true
_optimizer_join_sel_sanity_check = true
_mmv_query_rewrite_enabled = true
_bt_mmv_query_rewrite_enabled = true
_add_stale_mv_to_dependency_list = true
_distinct_view_unnesting = false
_optimizer_dim_subq_join_sel = true
_optimizer_disable_strans_sanity_checks = 0
_optimizer_compute_index_stats = true
_push_join_union_view2 = true
_optimizer_ignore_hints = false
_optimizer_random_plan = 0
_query_rewrite_setopgrw_enable = true
_optimizer_correct_sq_selectivity = true
_disable_function_based_index = false
_optimizer_join_order_control = 3
_optimizer_cartesian_enabled = true
_optimizer_starplan_enabled = true
_extended_pruning_enabled = true
_optimizer_push_pred_cost_based = true
_optimizer_null_aware_antijoin = true
_optimizer_extend_jppd_view_types = true
_sql_model_unfold_forloops = run_time
_enable_dml_lock_escalation = false
_bloom_filter_enabled = true
_update_bji_ipdml_enabled = 0
_optimizer_extended_cursor_sharing = udo
_dm_max_shared_pool_pct = 1
_optimizer_cost_hjsmj_multimatch = true
_optimizer_transitivity_retain = true
_px_pwg_enabled = true
optimizer_secure_view_merging = true
_optimizer_join_elimination_enabled = true
flashback_table_rpi = non_fbt
_optimizer_cbqt_no_size_restriction = true
_optimizer_enhanced_filter_push = true
_optimizer_filter_pred_pullup = true
_rowsrc_trace_level = 0
_simple_view_merging = true
_optimizer_rownum_pred_based_fkr = true
_optimizer_better_inlist_costing = all
_optimizer_self_induced_cache_cost = false
_optimizer_min_cache_blocks = 10
_optimizer_or_expansion = depth
_optimizer_order_by_elimination_enabled = true
_optimizer_outer_to_anti_enabled = true
_selfjoin_mv_duplicates = true
_dimension_skip_null = true
_force_rewrite_enable = false
_optimizer_star_tran_in_with_clause = true
_optimizer_complex_pred_selectivity = true
_optimizer_connect_by_cost_based = true
_gby_hash_aggregation_enabled = true
_globalindex_pnum_filter_enabled = true
_px_minus_intersect = true
_fix_control_key = 0
_force_slave_mapping_intra_part_loads = false
_force_tmp_segment_loads = false
_query_mmvrewrite_maxpreds = 10
_query_mmvrewrite_maxintervals = 5
_query_mmvrewrite_maxinlists = 5
_query_mmvrewrite_maxdmaps = 10
_query_mmvrewrite_maxcmaps = 20
_query_mmvrewrite_maxregperm = 512
_query_mmvrewrite_maxqryinlistvals = 500
_disable_parallel_conventional_load = false
_trace_virtual_columns = false
_replace_virtual_columns = true
_virtual_column_overload_allowed = true
_kdt_buffering = true
_first_k_rows_dynamic_proration = true
_optimizer_sortmerge_join_inequality = true
_optimizer_aw_stats_enabled = true
_bloom_pruning_enabled = true
result_cache_mode = MANUAL
_px_ual_serial_input = true
_optimizer_skip_scan_guess = false
_enable_row_shipping = true
_row_shipping_threshold = 100
_row_shipping_explain = false
transaction_isolation_level = read_commited
_optimizer_distinct_elimination = true
_optimizer_multi_level_push_pred = true
_optimizer_group_by_placement = true
_optimizer_rownum_bind_default = 10
_enable_query_rewrite_on_remote_objs = true
_optimizer_extended_cursor_sharing_rel = simple
_optimizer_adaptive_cursor_sharing = true
_direct_path_insert_features = 0
_optimizer_improve_selectivity = true
optimizer_use_pending_statistics = false
_optimizer_enable_density_improvements = true
_optimizer_aw_join_push_enabled = true
_optimizer_connect_by_combine_sw = true
_enable_pmo_ctas = 0
_optimizer_native_full_outer_join = force
_bloom_predicate_enabled = true
_optimizer_enable_extended_stats = true
_is_lock_table_for_ddl_wait_lock = 0
_pivot_implementation_method = choose
optimizer_capture_sql_plan_baselines = false
optimizer_use_sql_plan_baselines = true
_optimizer_star_trans_min_cost = 0
_optimizer_star_trans_min_ratio = 0
_with_subquery = OPTIMIZER
_optimizer_fkr_index_cost_bias = 10
_optimizer_use_subheap = true
parallel_degree_policy = manual
parallel_degree = 0
parallel_min_time_threshold = 10
_parallel_time_unit = 10
_optimizer_or_expansion_subheap = true
_optimizer_free_transformation_heap = true
_optimizer_reuse_cost_annotations = true
_result_cache_auto_size_threshold = 100
_result_cache_auto_time_threshold = 1000
_optimizer_nested_rollup_for_gset = 100
_nlj_batching_enabled = 1
parallel_query_default_dop = 0
is_recur_flags = 0
optimizer_use_invisible_indexes = false
flashback_data_archive_internal_cursor = 0
_optimizer_extended_stats_usage_control = 192
_parallel_syspls_obey_force = true
cell_offload_processing = true
_rdbms_internal_fplib_enabled = false
db_file_multiblock_read_count = 128
_bloom_folding_enabled = true
_mv_generalized_oj_refresh_opt = true
cell_offload_compaction = ADAPTIVE
cell_offload_plan_display = AUTO
_bloom_predicate_offload = true
_bloom_filter_size = 0
_bloom_pushing_max = 512
parallel_degree_limit = 65535
parallel_force_local = false
parallel_max_degree = 2
total_cpu_count = 1
_optimizer_coalesce_subqueries = true
_optimizer_fast_pred_transitivity = true
_optimizer_fast_access_pred_analysis = true
_optimizer_unnest_disjunctive_subq = true
_optimizer_unnest_corr_set_subq = true
_optimizer_distinct_agg_transform = true
_aggregation_optimization_settings = 0
_optimizer_connect_by_elim_dups = true
_optimizer_eliminate_filtering_join = true
_connect_by_use_union_all = true
dst_upgrade_insert_conv = true
advanced_queuing_internal_cursor = 0
_optimizer_unnest_all_subqueries = true
parallel_autodop = 0
parallel_ddldml = 0
_parallel_cluster_cache_policy = adaptive
_parallel_scalability = 50
iot_internal_cursor = 0
_optimizer_instance_count = 0
_optimizer_connect_by_cb_whr_only = false
_suppress_scn_chk_for_cqn = nosuppress_1466
_optimizer_join_factorization = true
_optimizer_use_cbqt_star_transformation = true
_optimizer_table_expansion = true
_and_pruning_enabled = true
_deferred_constant_folding_mode = DEFAULT
_optimizer_distinct_placement = true
partition_pruning_internal_cursor = 0
parallel_hinted = none
_sql_compatibility = 0
_optimizer_use_feedback = true
_optimizer_try_st_before_jppd = true
_dml_frequency_tracking = false
_optimizer_interleave_jppd = true
kkb_drop_empty_segments = 0
_px_partition_scan_enabled = true
_px_partition_scan_threshold = 64
_optimizer_false_filter_pred_pullup = true
_bloom_minmax_enabled = true
only_move_row = 0
_optimizer_enable_table_lookup_by_nl = true
parallel_execution_message_size = 16384
_px_loc_msg_cost = 1000
_px_net_msg_cost = 10000
_optimizer_generate_transitive_pred = true
_optimizer_cube_join_enabled = true
_optimizer_filter_pushdown = true
deferred_segment_creation = true
_optimizer_outer_join_to_inner = true
_allow_level_without_connect_by = false
_max_rwgs_groupings = 8192
_optimizer_hybrid_fpwj_enabled = true
_px_replication_enabled = true
ilm_filter = 0
_optimizer_partial_join_eval = true
_px_concurrent = true
_px_object_sampling_enabled = true
_px_back_to_parallel = OFF
_optimizer_unnest_scalar_sq = true
_optimizer_full_outer_join_to_outer = true
_px_filter_parallelized = true
_px_filter_skew_handling = true
_zonemap_use_enabled = true
_zonemap_control = 0
_optimizer_multi_table_outerjoin = true
_px_groupby_pushdown = force
_partition_advisor_srs_active = true
_optimizer_ansi_join_lateral_enhance = true
_px_parallelize_expression = true
_fast_index_maintenance = true
_optimizer_ansi_rearchitecture = true
_optimizer_gather_stats_on_load = true
ilm_access_tracking = 0
ilm_dml_timestamp = 0
_px_adaptive_dist_method = choose
_px_adaptive_dist_method_threshold = 0
_optimizer_batch_table_access_by_rowid = true
optimizer_adaptive_reporting_only = false
_optimizer_ads_max_table_count = 0
_optimizer_ads_time_limit = 0
_optimizer_ads_use_result_cache = true
_px_wif_dfo_declumping = choose
_px_wif_extend_distribution_keys = true
_px_join_skew_handling = true
_px_join_skew_ratio = 10
_px_join_skew_minfreq = 30
CLI_internal_cursor = 0
_parallel_fault_tolerance_enabled = false
_parallel_fault_tolerance_threshold = 3
_px_partial_rollup_pushdown = adaptive
_px_single_server_enabled = true
_optimizer_dsdir_usage_control = 0
_px_cpu_autodop_enabled = true
_px_cpu_process_bandwidth = 200
_sql_hvshare_threshold = 0
_px_tq_rowhvs = true
_optimizer_use_gtt_session_stats = true
_optimizer_proc_rate_level = basic
_px_hybrid_TSM_HWMB_load = true
_optimizer_use_histograms = true
PMO_altidx_rebuild = 0
_cell_offload_expressions = true
_cell_materialize_virtual_columns = true
_cell_materialize_all_expressions = false
_rowsets_enabled = true
_rowsets_target_maxsize = 524288
_rowsets_max_rows = 256
_use_hidden_partitions = 0
_px_monitor_load = false
_px_load_monitor_threshold = 10000
_px_numa_support_enabled = false
total_processor_group_count = 1
_adaptive_window_consolidator_enabled = true
_optimizer_strans_adaptive_pruning = true
_bloom_rm_filter = false
_optimizer_null_accepting_semijoin = true
_long_varchar_allow_IOT = 0
_parallel_ctas_enabled = true
_cell_offload_complex_processing = true
_optimizer_performance_feedback = off
_optimizer_proc_rate_source = DEFAULT
_hashops_prefetch_size = 4
_cell_offload_sys_context = true
_multi_commit_global_index_maint = 0
_stat_aggs_one_pass_algorithm = false
_dbg_scan = 2048
_oltp_comp_dbg_scan = 0
_arch_comp_dbg_scan = 0
_optimizer_gather_feedback = true
_upddel_dba_hash_mask_bits = 0
_px_pwmr_enabled = true
_px_cdb_view_enabled = true
_bloom_sm_enabled = true
_optimizer_cluster_by_rowid = true
_optimizer_cluster_by_rowid_control = 129
_partition_cdb_view_enabled = true
_common_data_view_enabled = true
_pred_push_cdb_view_enabled = true
_rowsets_cdb_view_enabled = true
_distinct_agg_optimization_gsets = choose
_array_cdb_view_enabled = true
_optimizer_adaptive_plan_control = 0
_optimizer_adaptive_random_seed = 0
_optimizer_cbqt_or_expansion = on
_inmemory_dbg_scan = 0
_gby_vector_aggregation_enabled = true
_optimizer_vector_transformation = true
_optimizer_vector_fact_dim_ratio = 10
_key_vector_max_size = 0
_key_vector_predicate_enabled = true
_key_vector_predicate_threshold = 0
_key_vector_caching = false
_vector_operations_control = 0
_optimizer_vector_min_fact_rows = 10000000
parallel_dblink = 0
_px_scalable_invdist = true
_key_vector_offload = predicate
_optimizer_aggr_groupby_elim = true
_optimizer_reduce_groupby_key = true
_vector_serialize_temp_threshold = 1000
_always_vector_transformation = false
_optimizer_cluster_by_rowid_batched = true
_object_link_fixed_enabled = true
optimizer_inmemory_aware = true
_optimizer_inmemory_table_expansion = true
_optimizer_inmemory_gen_pushable_preds = true
_optimizer_inmemory_autodop = true
_optimizer_inmemory_access_path = true
_optimizer_inmemory_bloom_filter = true
_parallel_inmemory_min_time_threshold = 1
_parallel_inmemory_time_unit = 1
_rc_sys_obj_enabled = true
_optimizer_nlj_hj_adaptive_join = true
_indexable_con_id = true
_bloom_serial_filter = on
inmemory_force = default
inmemory_query = enable
_inmemory_query_scan = true
_inmemory_query_fetch_by_rowid = false
_inmemory_pruning = on
_px_autodop_pq_overhead = true
_px_external_table_default_stats = true
_optimizer_key_vector_aggr_factor = 75
_optimizer_vector_cost_adj = 100
_cdb_cross_container = 65535
_cdb_view_parallel_degree = 65535
_optimizer_hll_entry = 4096
_px_cdb_view_join_enabled = true
inmemory_size = 0
_external_table_smart_scan = hadoop_only
_optimizer_inmemory_minmax_pruning = true
_approx_cnt_distinct_gby_pushdown = choose
_approx_cnt_distinct_optimization = 0
_optimizer_ads_use_partial_results = true
_query_execution_time_limit = 0
_optimizer_inmemory_cluster_aware_dop = true
_optimizer_db_blocks_buffers = 0 KB
_query_rewrite_use_on_query_computation = true
_px_scalable_invdist_mcol = true
_optimizer_bushy_join = off
_optimizer_bushy_fact_dim_ratio = 20
_optimizer_bushy_fact_min_size = 100000
_optimizer_bushy_cost_factor = 100
_rmt_for_table_redef_enabled = true
_optimizer_eliminate_subquery = true
_sqlexec_cache_aware_hash_join_enabled = true
_zonemap_usage_tracking = true
_sqlexec_hash_based_distagg_enabled = false
_sqlexec_disable_hash_based_distagg_tiv = false
_sqlexec_hash_based_distagg_ssf_enabled = true
_sqlexec_distagg_optimization_settings = 0
approx_for_aggregation = false
approx_for_count_distinct = false
_optimizer_union_all_gsets = true
_rowsets_use_encoding = true
_rowsets_max_enc_rows = 64
_optimizer_enhanced_join_elimination = true
_optimizer_multicol_join_elimination = true
_key_vector_create_pushdown_threshold = 20000
_optimizer_enable_plsql_stats = true
_recursive_with_parallel = true
_recursive_with_branch_iterations = 7
_px_dist_agg_partial_rollup_pushdown = adaptive
_px_adaptive_dist_bypass_enabled = true
_enable_view_pdb = true
_optimizer_key_vector_pruning_enabled = true
_pwise_distinct_enabled = true
_recursive_with_using_temp_table = false
_partition_read_only = true
_sql_alias_scope = true
_cdb_view_no_skip_migrate = false
_approx_perc_sampling_err_rate = 2
_sqlexec_encoding_aware_hj_enabled = true
rim_node_exist = 0
_enable_containers_subquery = false
_force_containers_subquery = false
_cell_offload_vector_groupby = true
_vector_encoding_mode = manual
_ds_xt_split_count = 1
_ds_sampling_method = PROGRESSIVE
_optimizer_ads_use_spd_cache = true
_optimizer_use_table_scanrate = HADOOP_ONLY
_optimizer_use_xt_rowid = true
_xt_sampling_scan_granules = on
_recursive_with_control = 0
_sqlexec_use_rwo_aware_expr_analysis = true
_optimizer_band_join_aware = true
_optimizer_vector_base_dim_fact_factor = 200
approx_for_percentile = none
_approx_percentile_optimization = 0
_projection_pushdown = true
_px_object_sampling = 200
_px_reuse_server_group = true
_optimizer_adaptive_plans_continuous = false
_optimizer_adaptive_plans_iterative = false
_ds_enable_view_sampling = true
_optimizer_generate_ptf_implied_preds = true
_optimizer_inmemory_use_stored_stats = AUTO
_cdb_special_old_xplan = false
uniaud_internal_cursor = 0
_kd_dbg_control = 0
_mv_access_compute_fresh_data = on
_bloom_filter_ratio = 35
_optimizer_control_shard_qry_processing = 65534
containers_parallel_degree = 65535
sql_from_coordinator = 0
_xt_sampling_scan_granules_min_granules = 1
_in_memory_cdt = LIMITED
_in_memory_cdt_maxpx = 4
_px_partition_load_dist_threshold = 64
_px_adaptive_dist_bypass_optimization = 1
_optimizer_interleave_or_expansion = true
_bloom_use_crchash = BASIC
optimizer_adaptive_plans = true
optimizer_adaptive_statistics = false
_optimizer_use_feedback_for_join = false
_optimizer_ads_for_pq = false
_px_join_skewed_values_count = 0

***************************************
 PARAMETERS IN OPT_PARAM HINT
 ****************************
***************************************
Column Usage Monitoring is ON: tracking level = 21
***************************************

Considering Query Transformations on query block SEL$1 (#0)
**************************
Query transformations (QT)
**************************
CBQT: Validity checks passed for 1yn23jxt8g9fj.
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
OBYE: Considering Order-by Elimination from view SEL$1 (#0)
***************************
Order-by elimination (OBYE)
***************************
OBYE: OBYE bypassed: no order by to eliminate.
OJE: Begin: find best directive for query block SEL$1 (#0)
OJE: End: finding best directive for query block SEL$1 (#0)
CNT: Considering count(col) to count(*) on query block SEL$1 (#0)
*************************
Count(col) to Count(*) (CNT)
*************************
CNT: COUNT() to COUNT(*) not done.
query block SEL$1 (#0) unchanged
Considering Query Transformations on query block SEL$1 (#0)
**************************
Query transformations (QT)
**************************
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
query block SEL$1 (#0) unchanged
apadrv-start sqlid=2256377696693495249
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
 :
 call(in-use=1328, alloc=16344), compile(in-use=67976, alloc=68272), execution(in-use=2936, alloc=4032)

*******************************************
Peeked values of the binds in SQL statement
*******************************************




=====================================
SPD: BEGIN context at statement level
=====================================
Stmt: ******* UNPARSED QUERY IS *******
SELECT "ORDS"."STATUS" "STATUS",COUNT(*) "NUMORDS" FROM "U"."ORDS" "ORDS" GROUP BY "ORDS"."STATUS"
Objects referenced in the statement
 ORDS[ORDS] 93045, type = 1
Objects in the hash table
 Hash table Object 93045, type = 1, ownerid = 7329457324875310191:
 No Dynamic Sampling Directives for the object
Return code in qosdInitDirCtx: ENBLD
===================================
SPD: END context at statement level
===================================
CBQT: Considering cost-based transformation on query block SEL$1 (#0)
********************************
COST-BASED QUERY TRANSFORMATIONS
********************************
FPD: Considering simple filter push (pre rewrite) in query block SEL$1 (#0)
FPD: Current where clause predicates ??

OBYE: Considering Order-by Elimination from view SEL$1 (#0)
***************************
Order-by elimination (OBYE)
***************************
OBYE: OBYE bypassed: no order by to eliminate.
Considering Query Transformations on query block SEL$1 (#0)
**************************
Query transformations (QT)
**************************
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
AAT: Considering Approximate Aggregate Transformation on query block SEL$1 (#0) 
*******************************************
Approximate Aggregate Transformation (AAT) 
*******************************************
AAT: no exact aggregates transformed
SQE: Trying SQ elimination.
kkqctdrvTD-start on query block SEL$1 (#0)
kkqctdrvTD-start: :
 call(in-use=1328, alloc=16344), compile(in-use=119504, alloc=122000), execution(in-use=2936, alloc=4032)

ORE: Checking validity of OR Expansion for query block SEL$1 (#1)
kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1328, alloc=16344), compile(in-use=120008, alloc=122000), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1328, alloc=16344), compile(in-use=120128, alloc=122000), execution(in-use=2936, alloc=4032)

kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1328, alloc=16344), compile(in-use=120128, alloc=122000), execution(in-use=2936, alloc=4032)

kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1328, alloc=16344), compile(in-use=120536, alloc=122000), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1328, alloc=16344), compile(in-use=120656, alloc=122000), execution(in-use=2936, alloc=4032)

SJC: Considering set-join conversion in query block SEL$1 (#1)
*************************
Set-Join Conversion (SJC)
*************************
SJC: not performed
QB before group-by removal:******* UNPARSED QUERY IS *******
SELECT "ORDS"."STATUS" "STATUS",COUNT(*) "NUMORDS" FROM "U"."ORDS" "ORDS" GROUP BY "ORDS"."STATUS"
DCL: Checking validity of group-by elimination SEL$1 (#1)
DCL: Result of group-by elimination: Invalid
OJE: Begin: find best directive for query block SEL$1 (#1)
OJE: End: finding best directive for query block SEL$1 (#1)
CNT: Considering count(col) to count(*) on query block SEL$1 (#1)
*************************
Count(col) to Count(*) (CNT)
*************************
CNT: COUNT() to COUNT(*) not done.
PM: Considering predicate move-around in query block SEL$1 (#1)
**************************
Predicate Move-Around (PM)
**************************
PM: PM bypassed: Outer query contains no views.
PM: PM bypassed: Outer query contains no views.
kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1736, alloc=16344), compile(in-use=120800, alloc=122000), execution(in-use=2936, alloc=4032)

kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1736, alloc=16344), compile(in-use=121208, alloc=122000), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1736, alloc=16344), compile(in-use=121328, alloc=122000), execution(in-use=2936, alloc=4032)

isReduceGrByValid: Group By Validation (Passed).
isReduceGrByValid: Group By Validation (Passed).
QB before group-by removal:******* UNPARSED QUERY IS *******
SELECT "ORDS"."STATUS" "STATUS",COUNT(*) "NUMORDS" FROM "U"."ORDS" "ORDS" GROUP BY "ORDS"."STATUS"
kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1736, alloc=16344), compile(in-use=121496, alloc=122000), execution(in-use=2936, alloc=4032)

VT: Initial VT validity check for query block SEL$1 (#1)
VT: Bypassed: inmemory is disabled.
kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1736, alloc=16344), compile(in-use=121928, alloc=126144), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1736, alloc=16344), compile(in-use=122048, alloc=126144), execution(in-use=2936, alloc=4032)

kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1736, alloc=16344), compile(in-use=122048, alloc=126144), execution(in-use=2936, alloc=4032)

BJ: Checking validity for bushy join for query block SEL$1 (#1)
invalid because Not enabled by hint/parameter
BJ: Bypassed: Not enabled by hint/parameter.
kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1736, alloc=16344), compile(in-use=122456, alloc=126144), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1736, alloc=16344), compile(in-use=122576, alloc=126144), execution(in-use=2936, alloc=4032)

kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1736, alloc=16344), compile(in-use=122576, alloc=126144), execution(in-use=2936, alloc=4032)

Registered qb: SEL$1 0x6c4d9b28 (COPY SEL$1)
---------------------
QUERY BLOCK SIGNATURE
---------------------
 signature(): NULL
****************************************
 Cost-Based Group-By/Distinct Placement
****************************************
GBP/DP: Checking validity of GBP/DP for query block SEL$1 (#1)
GBP: Checking validity of group-by placement for query block SEL$1 (#1)
GBP: Bypassed: Query has invalid constructs.
DP: Checking validity of distinct placement for query block SEL$1 (#1)
DP: Bypassed: Query has invalid constructs.
kkqctdrvTD-cleanup: transform(in-use=3584, alloc=4184) :
 call(in-use=1736, alloc=16344), compile(in-use=130400, alloc=136232), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1736, alloc=16344), compile(in-use=126272, alloc=136232), execution(in-use=2936, alloc=4032)

kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1736, alloc=16344), compile(in-use=126272, alloc=136232), execution(in-use=2936, alloc=4032)

TE: Checking validity of table expansion for query block SEL$1 (#1)
TE: Bypassed: No partitioned table in query block.
kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1736, alloc=16344), compile(in-use=126704, alloc=136232), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1736, alloc=16344), compile(in-use=126824, alloc=136232), execution(in-use=2936, alloc=4032)

TE: Checking validity of table expansion for query block SEL$1 (#1)
TE: Bypassed: No partitioned table in query block.
kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1736, alloc=16344), compile(in-use=126824, alloc=136232), execution(in-use=2936, alloc=4032)

ORE: Checking validity of OR Expansion for query block SEL$1 (#1)
kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1736, alloc=16344), compile(in-use=127272, alloc=136232), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1736, alloc=16344), compile(in-use=127392, alloc=136232), execution(in-use=2936, alloc=4032)

ST: Query in kkqstardrv:******* UNPARSED QUERY IS *******
SELECT "ORDS"."STATUS" "STATUS",COUNT(*) "NUMORDS" FROM "U"."ORDS" "ORDS" GROUP BY "ORDS"."STATUS"
ST: not valid since star transformation parameter is FALSE
kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1736, alloc=16344), compile(in-use=127392, alloc=136232), execution(in-use=2936, alloc=4032)

JF: Checking validity of join factorization for query block SEL$1 (#1)
JF: Bypassed: not a UNION or UNION-ALL query block.
kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1736, alloc=16344), compile(in-use=127800, alloc=136232), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1736, alloc=16344), compile(in-use=127920, alloc=136232), execution(in-use=2936, alloc=4032)

JPPD: Considering Cost-based predicate pushdown from query block SEL$1 (#1)
************************************
Cost-based predicate pushdown (JPPD)
************************************
kkqctdrvTD-start on query block SEL$1 (#1)
kkqctdrvTD-start: :
 call(in-use=1736, alloc=16344), compile(in-use=127920, alloc=136232), execution(in-use=2936, alloc=4032)

kkqctdrvTD-cleanup: transform(in-use=0, alloc=0) :
 call(in-use=1736, alloc=16344), compile(in-use=128328, alloc=136232), execution(in-use=2936, alloc=4032)

kkqctdrvTD-end:
 call(in-use=1736, alloc=16344), compile(in-use=128448, alloc=136232), execution(in-use=2936, alloc=4032)

JPPD: Applying transformation directives
query block SEL$1 (#1) unchanged
FPD: Considering simple filter push in query block SEL$1 (#1)
 ?? 
CSE: Considering common sub-expression elimination in query block SEL$1 (#1)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#1).
Final query after transformations:******* UNPARSED QUERY IS *******
SELECT "ORDS"."STATUS" "STATUS",COUNT(*) "NUMORDS" FROM "U"."ORDS" "ORDS" GROUP BY "ORDS"."STATUS"
kkoqbc: optimizing query block SEL$1 (#1)
 
 :
 call(in-use=1736, alloc=16344), compile(in-use=129728, alloc=136232), execution(in-use=2936, alloc=4032)

kkoqbc-subheap (create addr=0x7f286bfd1810)
****************
QUERY BLOCK TEXT
****************
select status, count(*) numords
from ords
group by status

---------------------
QUERY BLOCK SIGNATURE
---------------------
signature (optimizer): qb_name=SEL$1 nbfros=1 flg=0
 fro(0): flg=0 objn=93045 hint_alias="ORDS"@"SEL$1"

-----------------------------
SYSTEM STATISTICS INFORMATION
-----------------------------
Using dictionary system stats.
 Using NOWORKLOAD Stats
 CPUSPEEDNW: 3138 millions instructions/sec (default is 100)
 IOTFRSPEED: 4096 bytes per millisecond (default is 4096)
 IOSEEKTIM: 10 milliseconds (default is 10)
 MBRC: NO VALUE blocks (default is 8)

***************************************
BASE STATISTICAL INFORMATION
***********************
Table Stats::
 Table: ORDS Alias: ORDS
 #Rows: 10000 SSZ: 0 LGR: 0 #Blks: 35 AvgRowLen: 17.00 NEB: 0 ChainCnt: 0.00 ScanRate: 0.00 SPC: 0 RFL: 0 RNF: 0 CBK: 0 CHR: 0 KQDFLG: 1
 #IMCUs: 0 IMCRowCnt: 0 IMCJournalRowCnt: 0 #IMCBlocks: 0 IMCQuotient: 0.000000
Index Stats::
 Index: CATEGORY_IDX Col#: 2
 LVLS: 1 #LB: 21 #DK: 1000 LB/K: 1.00 DB/K: 10.00 CLUF: 10000.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
 Index: ORDS Col#: 1
 LVLS: 1 #LB: 20 #DK: 10000 LB/K: 1.00 DB/K: 1.00 CLUF: 31.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
 Index: STATUS_IDX Col#: 3
 LVLS: 1 #LB: 28 #DK: 2 LB/K: 14.00 DB/K: 16.00 CLUF: 32.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
 Column (#3): 
 NewDensity:0.000050, OldDensity:0.000050 BktCnt:10000.000000, PopBktCnt:9999.000000, PopValCnt:1, NDV:2
 Column (#3): STATUS(VARCHAR2)
 AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.000050
 Histogram: Freq #Bkts: 2 UncompBkts: 10000 EndPtVals: 2 ActualVal: no 
try to generate single-table filter predicates from ORs for query block SEL$1 (#1)
=======================================
SPD: BEGIN context at query block level
=======================================
Query Block SEL$1 (#1)
Return code in qosdSetupDirCtx4QB: NOCTX
=====================================
SPD: END context at query block level
=====================================
Access path analysis for ORDS
***************************************
SINGLE TABLE ACCESS PATH 
 Single Table Cardinality Estimation for ORDS[ORDS] 
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = TABLE
 Table: ORDS Alias: ORDS
 Card: Original: 10000.000000 Rounded: 10000 Computed: 10000.000000 Non Adjusted: 10000.000000
 Scan IO Cost (Disk) = 11.000000
 Scan CPU Cost (Disk) = 2149250.400000
 Total Scan IO Cost = 11.000000 (scan (Disk))
 = 11.000000
 Total Scan CPU Cost = 2149250.400000 (scan (Disk))
 = 2149250.400000
 Access Path: TableScan
 Cost: 11.057081 Resp: 11.057081 Degree: 0
 Cost_io: 11.000000 Cost_cpu: 2149250
 Resp_io: 11.000000 Resp_cpu: 2149250
 Access Path: index (index (FFS))
 Index: STATUS_IDX
 resc_io: 9.000000 resc_cpu: 1399400
 ix_sel: 0.000000 ix_sel_with_filters: 1.000000 
 Access Path: index (FFS)
 Cost: 9.037166 Resp: 9.037166 Degree: 1
 Cost_io: 9.000000 Cost_cpu: 1399400
 Resp_io: 9.000000 Resp_cpu: 1399400
 ****** Costing Index STATUS_IDX
 Access Path: index (FullScan)
 Index: STATUS_IDX
 resc_io: 29.000000 resc_cpu: 2206522
 ix_sel: 1.000000 ix_sel_with_filters: 1.000000 
 Cost: 29.058602 Resp: 29.058602 Degree: 1
******** Begin index join costing ********
 ****** trying bitmap/domain indexes ******
 ****** Costing Index STATUS_IDX
 Access Path: index (FullScan)
 Index: STATUS_IDX
 resc_io: 29.000000 resc_cpu: 2206522
 ix_sel: 1.000000 ix_sel_with_filters: 1.000000 
 Cost: 29.058602 Resp: 29.058602 Degree: 0
 ****** Costing Index STATUS_IDX
 Access Path: index (FullScan)
 Index: STATUS_IDX
 resc_io: 29.000000 resc_cpu: 2206522
 ix_sel: 1.000000 ix_sel_with_filters: 1.000000 
 Cost: 29.058602 Resp: 29.058602 Degree: 0
 Bitmap nodes:
 Used STATUS_IDX
 Cost = 36.323253, sel = 1.000000
 ****** finished trying bitmap/domain indexes ******
******** End index join costing ********
 Best:: AccessPath: IndexFFS
 Index: STATUS_IDX
 Cost: 9.037166 Degree: 1 Resp: 9.037166 Card: 10000.000000 Bytes: 0.000000

Grouping column cardinality [ STATUS] 2
***************************************




OPTIMIZER STATISTICS AND COMPUTATIONS
PJE: Bypassed; QB has a single table SEL$1 (#1)
***************************************
GENERAL PLANS
***************************************
Considering cardinality-based initial join order.
Permutations for Starting Table :0
Join order[1]: ORDS[ORDS]#0
GROUP BY sort
GROUP BY/Correlated Subquery Filter adjustment factor: 1.000000
GROUP BY cardinality: 2.000000, TABLE cardinality: 10000.000000
Vector group by not costed because no SYS_OP_XLATE_USE in group by.
 SORT ressource Sort statistics
 Sort width: 960 Area size: 1048576 Max Area size: 168079360
 Degree: 1
 Blocks to Sort: 25 Row size: 20 Total Rows: 10000
 Initial runs: 1 Merge passes: 0 IO Cost / pass: 0
 Total IO sort cost: 0.000000 Total CPU sort cost: 43639286
 Total Temp space used: 0
***********************
Best so far: Table#: 0 cost: 10.196165 card: 10000.000000 bytes: 90000.000000
***********************

****** Recost for ORDER BY (using index) ************
Access path analysis for ORDS
***************************************
SINGLE TABLE ACCESS PATH 
 Single Table Cardinality Estimation for ORDS[ORDS] 
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = TABLE
 Table: ORDS Alias: ORDS
 Card: Original: 10000.000000 Rounded: 10000 Computed: 10000.000000 Non Adjusted: 10000.000000
 Scan IO Cost (Disk) = 11.000000
 Scan CPU Cost (Disk) = 2149250.400000
 Total Scan IO Cost = 11.000000 (scan (Disk))
 = 11.000000
 Total Scan CPU Cost = 2149250.400000 (scan (Disk))
 = 2149250.400000
 Access Path: TableScan
 Cost: 11.057081 Resp: 11.057081 Degree: 0
 Cost_io: 11.000000 Cost_cpu: 2149250
 Resp_io: 11.000000 Resp_cpu: 2149250
 ****** Costing Index STATUS_IDX
 Access Path: index (FullScan)
 Index: STATUS_IDX
 resc_io: 29.000000 resc_cpu: 2206522
 ix_sel: 1.000000 ix_sel_with_filters: 1.000000 
 Cost: 29.058602 Resp: 29.058602 Degree: 1
 Best:: AccessPath: IndexRange
 Index: STATUS_IDX
 Cost: 29.058602 Degree: 1 Resp: 29.058602 Card: 10000.000000 Bytes: 0.000000

Join order[1]: ORDS[ORDS]#0
Join order aborted: cost > best plan cost
***********************
(newjo-stop-1) k:0, spcnt:0, perm:1, maxperm:2000

*********************************
Number of join permutations tried: 1
*********************************
Enumerating distribution method (advanced)

GROUP BY/Correlated Subquery Filter adjustment factor: 1.000000
GROUP BY cardinality: 2.000000, TABLE cardinality: 10000.000000
 SORT ressource Sort statistics
 Sort width: 960 Area size: 1048576 Max Area size: 168079360
 Degree: 1
 Blocks to Sort: 25 Row size: 20 Total Rows: 10000
 Initial runs: 1 Merge passes: 0 IO Cost / pass: 0
 Total IO sort cost: 0.000000 Total CPU sort cost: 43639286
 Total Temp space used: 0
LORE: Or-Expansion validity checks failed on query block SEL$1 (#1) because Cost based OR expansion enabled
Transfer Optimizer annotations for query block SEL$1 (#1)
AP: Checking validity for query block SEL$1, sqlid=1yn23jxt8g9fj
AutoDOP: Consider caching for ORDS[ORDS](obj#93048) 
cost:10.196165 blkSize:8192 objSize:28.00 marObjSize:26.60 bufSize:469047.00 affPercent:80 smallTab:YES affinitized:NO
kkecComputeAPDop: IO Dop: 0.000000 - CPU Dop: 0.000000
Replication not feasible for first input in join order
Transfer optimizer annotations for ORDS[ORDS]
GROUP BY/Correlated Subquery Filter adjustment factor: 1.000000
Final cost for query block SEL$1 (#1) - All Rows Plan:
 Best join order: 1
 Cost: 10.196165 Degree: 1 Card: 10000.000000 Bytes: 90000.000000
 Resc: 10.196165 Resc_io: 9.000000 Resc_cpu: 45038687
 Resp: 10.196165 Resp_io: 9.000000 Resc_cpu: 45038687
kkoqbc-subheap (delete addr=0x7f286bfd1810, in-use=27312, alloc=32840)
kkoqbc-end:
 :
 call(in-use=9624, alloc=65656), compile(in-use=135032, alloc=136232), execution(in-use=2936, alloc=4032)

kkoqbc: finish optimizing query block SEL$1 (#1)
CBRID: ORDS @ SEL$1 - blocking operation in qb SEL$1
apadrv-end
 :
 call(in-use=9624, alloc=65656), compile(in-use=138208, alloc=140376), execution(in-use=2936, alloc=4032)




kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
Starting SQL statement dump

user_id=114 user_name=U module=SQL*Plus action=
sql_id=1yn23jxt8g9fj plan_hash_value=-1648398675 problem_type=3
----- Current SQL Statement for this session (sql_id=1yn23jxt8g9fj) -----
select status, count(*) numords
from ords
group by status
sql_text_length=59
sql=select status, count(*) numords
from ords
group by status

----- Explain Plan Dump -----
----- Plan Table -----
 
============
Plan Table
============
-------------------------------------------+-----------------------------------+
| Id | Operation | Name | Rows | Bytes | Cost | Time |
-------------------------------------------+-----------------------------------+
| 0 | SELECT STATEMENT | | | | 10 | |
| 1 | HASH GROUP BY | | 2 | 18 | 10 | 00:00:01 |
| 2 | INDEX FAST FULL SCAN | STATUS_IDX| 10K | 88K | 9 | 00:00:01 |
-------------------------------------------+-----------------------------------+
Query Block Name / Object Alias(identified by operation id):
------------------------------------------------------------
 1 - SEL$1 
 2 - SEL$1 / ORDS@SEL$1
------------------------------------------------------------
Predicate Information:
----------------------
 
Content of other_xml column
===========================
 db_version : 12.2.0.1
 parse_schema : U
 plan_hash_full : 3044090569
 plan_hash : 2646568621
 plan_hash_2 : 3044090569
 Outline Data:
 /*+
 BEGIN_OUTLINE_DATA
 IGNORE_OPTIM_EMBEDDED_HINTS
 OPTIMIZER_FEATURES_ENABLE('12.2.0.1')
 DB_VERSION('12.2.0.1')
 ALL_ROWS
 OUTLINE_LEAF(@"SEL$1")
 INDEX_FFS(@"SEL$1" "ORDS"@"SEL$1" ("ORDS"."STATUS"))
 USE_HASH_AGGREGATION(@"SEL$1")
 END_OUTLINE_DATA
 */
 
Optimizer state dump:
Compilation Environment Dump
optimizer_mode_hinted = false
optimizer_features_hinted = 0.0.0
parallel_execution_enabled = true
parallel_query_forced_dop = 0
parallel_dml_forced_dop = 0
parallel_ddl_forced_degree = 0
parallel_ddl_forced_instances = 0
_query_rewrite_fudge = 90
optimizer_features_enable = 12.2.0.1
_optimizer_search_limit = 5
cpu_count = 1
active_instance_count = 1
parallel_threads_per_cpu = 2
hash_area_size = 131072
bitmap_merge_area_size = 1048576
sort_area_size = 65536
sort_area_retained_size = 0
_sort_elimination_cost_ratio = 0
_optimizer_block_size = 8192
_sort_multiblock_read_count = 2
_hash_multiblock_io_count = 0
_db_file_optimizer_read_count = 8
_optimizer_max_permutations = 2000
pga_aggregate_target = 1641472 KB
_pga_max_size = 328280 KB
_query_rewrite_maxdisjunct = 257
_smm_auto_min_io_size = 56 KB
_smm_auto_max_io_size = 248 KB
_smm_min_size = 1024 KB
_smm_max_size_static = 164140 KB
_smm_px_max_size_static = 820736 KB
_cpu_to_io = 0
_optimizer_undo_cost_change = 12.2.0.1
parallel_query_mode = enabled
parallel_dml_mode = disabled
parallel_ddl_mode = enabled
optimizer_mode = all_rows
sqlstat_enabled = false
_optimizer_percent_parallel = 101
_always_anti_join = choose
_always_semi_join = choose
_optimizer_mode_force = true
_partition_view_enabled = true
_always_star_transformation = false
_query_rewrite_or_error = false
_hash_join_enabled = true
cursor_sharing = exact
_b_tree_bitmap_plans = true
star_transformation_enabled = false
_optimizer_cost_model = choose
_new_sort_cost_estimate = true
_complex_view_merging = true
_unnest_subquery = true
_eliminate_common_subexpr = true
_pred_move_around = true
_convert_set_to_join = false
_push_join_predicate = true
_push_join_union_view = true
_fast_full_scan_enabled = true
_optim_enhance_nnull_detection = true
_parallel_broadcast_enabled = true
_px_broadcast_fudge_factor = 100
_ordered_nested_loop = true
_no_or_expansion = false
optimizer_index_cost_adj = 100
optimizer_index_caching = 0
_system_index_caching = 0
_disable_datalayer_sampling = false
query_rewrite_enabled = true
query_rewrite_integrity = enforced
_query_cost_rewrite = true
_query_rewrite_2 = true
_query_rewrite_1 = true
_query_rewrite_expression = true
_query_rewrite_jgmigrate = true
_query_rewrite_fpc = true
_query_rewrite_drj = false
_full_pwise_join_enabled = true
_partial_pwise_join_enabled = true
_left_nested_loops_random = true
_improved_row_length_enabled = true
_index_join_enabled = true
_enable_type_dep_selectivity = true
_improved_outerjoin_card = true
_optimizer_adjust_for_nulls = true
_optimizer_degree = 0
_use_column_stats_for_function = true
_subquery_pruning_enabled = true
_subquery_pruning_mv_enabled = false
_or_expand_nvl_predicate = true
_like_with_bind_as_equality = false
_table_scan_cost_plus_one = true
_cost_equality_semi_join = true
_default_non_equality_sel_check = true
_new_initial_join_orders = true
_oneside_colstat_for_equijoins = true
_optim_peek_user_binds = true
_minimal_stats_aggregation = true
_force_temptables_for_gsets = false
workarea_size_policy = auto
_smm_auto_cost_enabled = true
_gs_anti_semi_join_allowed = true
_optim_new_default_join_sel = true
optimizer_dynamic_sampling = 2
_pre_rewrite_push_pred = true
_optimizer_new_join_card_computation = true
_union_rewrite_for_gs = yes_gset_mvs
_generalized_pruning_enabled = true
_optim_adjust_for_part_skews = true
_force_datefold_trunc = false
statistics_level = typical
_optimizer_system_stats_usage = true
skip_unusable_indexes = true
_remove_aggr_subquery = true
_optimizer_push_down_distinct = 0
_dml_monitoring_enabled = true
_optimizer_undo_changes = false
_predicate_elimination_enabled = true
_nested_loop_fudge = 100
_project_view_columns = true
_local_communication_costing_enabled = true
_local_communication_ratio = 50
_query_rewrite_vop_cleanup = true
_slave_mapping_enabled = true
_optimizer_cost_based_transformation = linear
_optimizer_mjc_enabled = true
_right_outer_hash_enable = true
_spr_push_pred_refspr = true
_optimizer_cache_stats = false
_optimizer_cbqt_factor = 50
_optimizer_squ_bottomup = true
_fic_area_size = 131072
_optimizer_skip_scan_enabled = true
_optimizer_cost_filter_pred = false
_optimizer_sortmerge_join_enabled = true
_optimizer_join_sel_sanity_check = true
_mmv_query_rewrite_enabled = true
_bt_mmv_query_rewrite_enabled = true
_add_stale_mv_to_dependency_list = true
_distinct_view_unnesting = false
_optimizer_dim_subq_join_sel = true
_optimizer_disable_strans_sanity_checks = 0
_optimizer_compute_index_stats = true
_push_join_union_view2 = true
_optimizer_ignore_hints = false
_optimizer_random_plan = 0
_query_rewrite_setopgrw_enable = true
_optimizer_correct_sq_selectivity = true
_disable_function_based_index = false
_optimizer_join_order_control = 3
_optimizer_cartesian_enabled = true
_optimizer_starplan_enabled = true
_extended_pruning_enabled = true
_optimizer_push_pred_cost_based = true
_optimizer_null_aware_antijoin = true
_optimizer_extend_jppd_view_types = true
_sql_model_unfold_forloops = run_time
_enable_dml_lock_escalation = false
_bloom_filter_enabled = true
_update_bji_ipdml_enabled = 0
_optimizer_extended_cursor_sharing = udo
_dm_max_shared_pool_pct = 1
_optimizer_cost_hjsmj_multimatch = true
_optimizer_transitivity_retain = true
_px_pwg_enabled = true
optimizer_secure_view_merging = true
_optimizer_join_elimination_enabled = true
flashback_table_rpi = non_fbt
_optimizer_cbqt_no_size_restriction = true
_optimizer_enhanced_filter_push = true
_optimizer_filter_pred_pullup = true
_rowsrc_trace_level = 0
_simple_view_merging = true
_optimizer_rownum_pred_based_fkr = true
_optimizer_better_inlist_costing = all
_optimizer_self_induced_cache_cost = false
_optimizer_min_cache_blocks = 10
_optimizer_or_expansion = depth
_optimizer_order_by_elimination_enabled = true
_optimizer_outer_to_anti_enabled = true
_selfjoin_mv_duplicates = true
_dimension_skip_null = true
_force_rewrite_enable = false
_optimizer_star_tran_in_with_clause = true
_optimizer_complex_pred_selectivity = true
_optimizer_connect_by_cost_based = true
_gby_hash_aggregation_enabled = true
_globalindex_pnum_filter_enabled = true
_px_minus_intersect = true
_fix_control_key = 0
_force_slave_mapping_intra_part_loads = false
_force_tmp_segment_loads = false
_query_mmvrewrite_maxpreds = 10
_query_mmvrewrite_maxintervals = 5
_query_mmvrewrite_maxinlists = 5
_query_mmvrewrite_maxdmaps = 10
_query_mmvrewrite_maxcmaps = 20
_query_mmvrewrite_maxregperm = 512
_query_mmvrewrite_maxqryinlistvals = 500
_disable_parallel_conventional_load = false
_trace_virtual_columns = false
_replace_virtual_columns = true
_virtual_column_overload_allowed = true
_kdt_buffering = true
_first_k_rows_dynamic_proration = true
_optimizer_sortmerge_join_inequality = true
_optimizer_aw_stats_enabled = true
_bloom_pruning_enabled = true
result_cache_mode = MANUAL
_px_ual_serial_input = true
_optimizer_skip_scan_guess = false
_enable_row_shipping = true
_row_shipping_threshold = 100
_row_shipping_explain = false
transaction_isolation_level = read_commited
_optimizer_distinct_elimination = true
_optimizer_multi_level_push_pred = true
_optimizer_group_by_placement = true
_optimizer_rownum_bind_default = 10
_enable_query_rewrite_on_remote_objs = true
_optimizer_extended_cursor_sharing_rel = simple
_optimizer_adaptive_cursor_sharing = true
_direct_path_insert_features = 0
_optimizer_improve_selectivity = true
optimizer_use_pending_statistics = false
_optimizer_enable_density_improvements = true
_optimizer_aw_join_push_enabled = true
_optimizer_connect_by_combine_sw = true
_enable_pmo_ctas = 0
_optimizer_native_full_outer_join = force
_bloom_predicate_enabled = true
_optimizer_enable_extended_stats = true
_is_lock_table_for_ddl_wait_lock = 0
_pivot_implementation_method = choose
optimizer_capture_sql_plan_baselines = false
optimizer_use_sql_plan_baselines = true
_optimizer_star_trans_min_cost = 0
_optimizer_star_trans_min_ratio = 0
_with_subquery = OPTIMIZER
_optimizer_fkr_index_cost_bias = 10
_optimizer_use_subheap = true
parallel_degree_policy = manual
parallel_degree = 0
parallel_min_time_threshold = 10
_parallel_time_unit = 10
_optimizer_or_expansion_subheap = true
_optimizer_free_transformation_heap = true
_optimizer_reuse_cost_annotations = true
_result_cache_auto_size_threshold = 100
_result_cache_auto_time_threshold = 1000
_optimizer_nested_rollup_for_gset = 100
_nlj_batching_enabled = 1
parallel_query_default_dop = 0
is_recur_flags = 0
optimizer_use_invisible_indexes = false
flashback_data_archive_internal_cursor = 0
_optimizer_extended_stats_usage_control = 192
_parallel_syspls_obey_force = true
cell_offload_processing = true
_rdbms_internal_fplib_enabled = false
db_file_multiblock_read_count = 128
_bloom_folding_enabled = true
_mv_generalized_oj_refresh_opt = true
cell_offload_compaction = ADAPTIVE
cell_offload_plan_display = AUTO
_bloom_predicate_offload = true
_bloom_filter_size = 0
_bloom_pushing_max = 512
parallel_degree_limit = 65535
parallel_force_local = false
parallel_max_degree = 2
total_cpu_count = 1
_optimizer_coalesce_subqueries = true
_optimizer_fast_pred_transitivity = true
_optimizer_fast_access_pred_analysis = true
_optimizer_unnest_disjunctive_subq = true
_optimizer_unnest_corr_set_subq = true
_optimizer_distinct_agg_transform = true
_aggregation_optimization_settings = 0
_optimizer_connect_by_elim_dups = true
_optimizer_eliminate_filtering_join = true
_connect_by_use_union_all = true
dst_upgrade_insert_conv = true
advanced_queuing_internal_cursor = 0
_optimizer_unnest_all_subqueries = true
parallel_autodop = 0
parallel_ddldml = 0
_parallel_cluster_cache_policy = adaptive
_parallel_scalability = 50
iot_internal_cursor = 0
_optimizer_instance_count = 0
_optimizer_connect_by_cb_whr_only = false
_suppress_scn_chk_for_cqn = nosuppress_1466
_optimizer_join_factorization = true
_optimizer_use_cbqt_star_transformation = true
_optimizer_table_expansion = true
_and_pruning_enabled = true
_deferred_constant_folding_mode = DEFAULT
_optimizer_distinct_placement = true
partition_pruning_internal_cursor = 0
parallel_hinted = none
_sql_compatibility = 0
_optimizer_use_feedback = true
_optimizer_try_st_before_jppd = true
_dml_frequency_tracking = false
_optimizer_interleave_jppd = true
kkb_drop_empty_segments = 0
_px_partition_scan_enabled = true
_px_partition_scan_threshold = 64
_optimizer_false_filter_pred_pullup = true
_bloom_minmax_enabled = true
only_move_row = 0
_optimizer_enable_table_lookup_by_nl = true
parallel_execution_message_size = 16384
_px_loc_msg_cost = 1000
_px_net_msg_cost = 10000
_optimizer_generate_transitive_pred = true
_optimizer_cube_join_enabled = true
_optimizer_filter_pushdown = true
deferred_segment_creation = true
_optimizer_outer_join_to_inner = true
_allow_level_without_connect_by = false
_max_rwgs_groupings = 8192
_optimizer_hybrid_fpwj_enabled = true
_px_replication_enabled = true
ilm_filter = 0
_optimizer_partial_join_eval = true
_px_concurrent = true
_px_object_sampling_enabled = true
_px_back_to_parallel = OFF
_optimizer_unnest_scalar_sq = true
_optimizer_full_outer_join_to_outer = true
_px_filter_parallelized = true
_px_filter_skew_handling = true
_zonemap_use_enabled = true
_zonemap_control = 0
_optimizer_multi_table_outerjoin = true
_px_groupby_pushdown = force
_partition_advisor_srs_active = true
_optimizer_ansi_join_lateral_enhance = true
_px_parallelize_expression = true
_fast_index_maintenance = true
_optimizer_ansi_rearchitecture = true
_optimizer_gather_stats_on_load = true
ilm_access_tracking = 0
ilm_dml_timestamp = 0
_px_adaptive_dist_method = choose
_px_adaptive_dist_method_threshold = 0
_optimizer_batch_table_access_by_rowid = true
optimizer_adaptive_reporting_only = false
_optimizer_ads_max_table_count = 0
_optimizer_ads_time_limit = 0
_optimizer_ads_use_result_cache = true
_px_wif_dfo_declumping = choose
_px_wif_extend_distribution_keys = true
_px_join_skew_handling = true
_px_join_skew_ratio = 10
_px_join_skew_minfreq = 30
CLI_internal_cursor = 0
_parallel_fault_tolerance_enabled = false
_parallel_fault_tolerance_threshold = 3
_px_partial_rollup_pushdown = adaptive
_px_single_server_enabled = true
_optimizer_dsdir_usage_control = 0
_px_cpu_autodop_enabled = true
_px_cpu_process_bandwidth = 200
_sql_hvshare_threshold = 0
_px_tq_rowhvs = true
_optimizer_use_gtt_session_stats = true
_optimizer_proc_rate_level = basic
_px_hybrid_TSM_HWMB_load = true
_optimizer_use_histograms = true
PMO_altidx_rebuild = 0
_cell_offload_expressions = true
_cell_materialize_virtual_columns = true
_cell_materialize_all_expressions = false
_rowsets_enabled = true
_rowsets_target_maxsize = 524288
_rowsets_max_rows = 256
_use_hidden_partitions = 0
_px_monitor_load = false
_px_load_monitor_threshold = 10000
_px_numa_support_enabled = false
total_processor_group_count = 1
_adaptive_window_consolidator_enabled = true
_optimizer_strans_adaptive_pruning = true
_bloom_rm_filter = false
_optimizer_null_accepting_semijoin = true
_long_varchar_allow_IOT = 0
_parallel_ctas_enabled = true
_cell_offload_complex_processing = true
_optimizer_performance_feedback = off
_optimizer_proc_rate_source = DEFAULT
_hashops_prefetch_size = 4
_cell_offload_sys_context = true
_multi_commit_global_index_maint = 0
_stat_aggs_one_pass_algorithm = false
_dbg_scan = 2048
_oltp_comp_dbg_scan = 0
_arch_comp_dbg_scan = 0
_optimizer_gather_feedback = true
_upddel_dba_hash_mask_bits = 0
_px_pwmr_enabled = true
_px_cdb_view_enabled = true
_bloom_sm_enabled = true
_optimizer_cluster_by_rowid = true
_optimizer_cluster_by_rowid_control = 129
_partition_cdb_view_enabled = true
_common_data_view_enabled = true
_pred_push_cdb_view_enabled = true
_rowsets_cdb_view_enabled = true
_distinct_agg_optimization_gsets = choose
_array_cdb_view_enabled = true
_optimizer_adaptive_plan_control = 0
_optimizer_adaptive_random_seed = 0
_optimizer_cbqt_or_expansion = on
_inmemory_dbg_scan = 0
_gby_vector_aggregation_enabled = true
_optimizer_vector_transformation = true
_optimizer_vector_fact_dim_ratio = 10
_key_vector_max_size = 0
_key_vector_predicate_enabled = true
_key_vector_predicate_threshold = 0
_key_vector_caching = false
_vector_operations_control = 0
_optimizer_vector_min_fact_rows = 10000000
parallel_dblink = 0
_px_scalable_invdist = true
_key_vector_offload = predicate
_optimizer_aggr_groupby_elim = true
_optimizer_reduce_groupby_key = true
_vector_serialize_temp_threshold = 1000
_always_vector_transformation = false
_optimizer_cluster_by_rowid_batched = true
_object_link_fixed_enabled = true
optimizer_inmemory_aware = true
_optimizer_inmemory_table_expansion = true
_optimizer_inmemory_gen_pushable_preds = true
_optimizer_inmemory_autodop = true
_optimizer_inmemory_access_path = true
_optimizer_inmemory_bloom_filter = true
_parallel_inmemory_min_time_threshold = 1
_parallel_inmemory_time_unit = 1
_rc_sys_obj_enabled = true
_optimizer_nlj_hj_adaptive_join = true
_indexable_con_id = true
_bloom_serial_filter = on
inmemory_force = default
inmemory_query = enable
_inmemory_query_scan = true
_inmemory_query_fetch_by_rowid = false
_inmemory_pruning = on
_px_autodop_pq_overhead = true
_px_external_table_default_stats = true
_optimizer_key_vector_aggr_factor = 75
_optimizer_vector_cost_adj = 100
_cdb_cross_container = 65535
_cdb_view_parallel_degree = 65535
_optimizer_hll_entry = 4096
_px_cdb_view_join_enabled = true
inmemory_size = 0
_external_table_smart_scan = hadoop_only
_optimizer_inmemory_minmax_pruning = true
_approx_cnt_distinct_gby_pushdown = choose
_approx_cnt_distinct_optimization = 0
_optimizer_ads_use_partial_results = true
_query_execution_time_limit = 0
_optimizer_inmemory_cluster_aware_dop = true
_optimizer_db_blocks_buffers = 0 KB
_query_rewrite_use_on_query_computation = true
_px_scalable_invdist_mcol = true
_optimizer_bushy_join = off
_optimizer_bushy_fact_dim_ratio = 20
_optimizer_bushy_fact_min_size = 100000
_optimizer_bushy_cost_factor = 100
_rmt_for_table_redef_enabled = true
_optimizer_eliminate_subquery = true
_sqlexec_cache_aware_hash_join_enabled = true
_zonemap_usage_tracking = true
_sqlexec_hash_based_distagg_enabled = false
_sqlexec_disable_hash_based_distagg_tiv = false
_sqlexec_hash_based_distagg_ssf_enabled = true
_sqlexec_distagg_optimization_settings = 0
approx_for_aggregation = false
approx_for_count_distinct = false
_optimizer_union_all_gsets = true
_rowsets_use_encoding = true
_rowsets_max_enc_rows = 64
_optimizer_enhanced_join_elimination = true
_optimizer_multicol_join_elimination = true
_key_vector_create_pushdown_threshold = 20000
_optimizer_enable_plsql_stats = true
_recursive_with_parallel = true
_recursive_with_branch_iterations = 7
_px_dist_agg_partial_rollup_pushdown = adaptive
_px_adaptive_dist_bypass_enabled = true
_enable_view_pdb = true
_optimizer_key_vector_pruning_enabled = true
_pwise_distinct_enabled = true
_recursive_with_using_temp_table = false
_partition_read_only = true
_sql_alias_scope = true
_cdb_view_no_skip_migrate = false
_approx_perc_sampling_err_rate = 2
_sqlexec_encoding_aware_hj_enabled = true
rim_node_exist = 0
_enable_containers_subquery = false
_force_containers_subquery = false
_cell_offload_vector_groupby = true
_vector_encoding_mode = manual
_ds_xt_split_count = 1
_ds_sampling_method = PROGRESSIVE
_optimizer_ads_use_spd_cache = true
_optimizer_use_table_scanrate = HADOOP_ONLY
_optimizer_use_xt_rowid = true
_xt_sampling_scan_granules = on
_recursive_with_control = 0
_sqlexec_use_rwo_aware_expr_analysis = true
_optimizer_band_join_aware = true
_optimizer_vector_base_dim_fact_factor = 200
approx_for_percentile = none
_approx_percentile_optimization = 0
_projection_pushdown = true
_px_object_sampling = 200
_px_reuse_server_group = true
_optimizer_adaptive_plans_continuous = false
_optimizer_adaptive_plans_iterative = false
_ds_enable_view_sampling = true
_optimizer_generate_ptf_implied_preds = true
_optimizer_inmemory_use_stored_stats = AUTO
_cdb_special_old_xplan = false
uniaud_internal_cursor = 0
_kd_dbg_control = 0
_mv_access_compute_fresh_data = on
_bloom_filter_ratio = 35
_optimizer_control_shard_qry_processing = 65534
containers_parallel_degree = 65535
sql_from_coordinator = 0
_xt_sampling_scan_granules_min_granules = 1
_in_memory_cdt = LIMITED
_in_memory_cdt_maxpx = 4
_px_partition_load_dist_threshold = 64
_px_adaptive_dist_bypass_optimization = 1
_optimizer_interleave_or_expansion = true
_bloom_use_crchash = BASIC
optimizer_adaptive_plans = true
optimizer_adaptive_statistics = false
_optimizer_use_feedback_for_join = false
_optimizer_ads_for_pq = false
_px_join_skewed_values_count = 0
Bug Fix Control Environment
 fix 3834770 = 1 
 fix 3746511 = enabled
 fix 4519016 = enabled
 fix 3118776 = enabled
 fix 4488689 = enabled
 fix 2194204 = disabled
 fix 2660592 = enabled
 fix 2320291 = enabled
 fix 2324795 = enabled
 fix 4308414 = enabled
 fix 3499674 = disabled
 fix 4569940 = enabled
 fix 4631959 = enabled
 fix 4519340 = enabled
 fix 4550003 = enabled
 fix 1403283 = enabled
 fix 4554846 = enabled
 fix 4602374 = enabled
 fix 4584065 = enabled
 fix 4545833 = enabled
 fix 4611850 = enabled
 fix 4663698 = enabled
 fix 4663804 = enabled
 fix 4666174 = enabled
 fix 4567767 = enabled
 fix 4556762 = 15 
 fix 4728348 = enabled
 fix 4708389 = enabled
 fix 4175830 = enabled
 fix 4752814 = enabled
 fix 4583239 = enabled
 fix 4386734 = enabled
 fix 4887636 = enabled
 fix 4483240 = enabled
 fix 4872602 = disabled
 fix 4711525 = enabled
 fix 4545802 = enabled
 fix 4605810 = enabled
 fix 4704779 = enabled
 fix 4900129 = enabled
 fix 4924149 = enabled
 fix 4663702 = enabled
 fix 4878299 = enabled
 fix 4658342 = enabled
 fix 4881533 = enabled
 fix 4676955 = enabled
 fix 4273361 = enabled
 fix 4967068 = enabled
 fix 4969880 = disabled
 fix 5005866 = enabled
 fix 5015557 = enabled
 fix 4705343 = enabled
 fix 4904838 = enabled
 fix 4716096 = enabled
 fix 4483286 = disabled
 fix 4722900 = enabled
 fix 4615392 = enabled
 fix 5096560 = enabled
 fix 5029464 = enabled
 fix 4134994 = enabled
 fix 4904890 = enabled
 fix 5104624 = enabled
 fix 5014836 = enabled
 fix 4768040 = enabled
 fix 4600710 = enabled
 fix 5129233 = enabled
 fix 4595987 = enabled
 fix 4908162 = enabled
 fix 5139520 = enabled
 fix 5084239 = enabled
 fix 5143477 = disabled
 fix 2663857 = enabled
 fix 4717546 = enabled
 fix 5240264 = disabled
 fix 5099909 = enabled
 fix 5240607 = enabled
 fix 5195882 = enabled
 fix 5220356 = enabled
 fix 5263572 = enabled
 fix 5385629 = enabled
 fix 5302124 = enabled
 fix 5391942 = enabled
 fix 5384335 = enabled
 fix 5482831 = enabled
 fix 4158812 = enabled
 fix 5387148 = enabled
 fix 5383891 = enabled
 fix 5466973 = enabled
 fix 5396162 = enabled
 fix 5394888 = enabled
 fix 5395291 = enabled
 fix 5236908 = enabled
 fix 5509293 = enabled
 fix 5449488 = enabled
 fix 5567933 = enabled
 fix 5570494 = enabled
 fix 5288623 = enabled
 fix 5505995 = enabled
 fix 5505157 = enabled
 fix 5112460 = enabled
 fix 5554865 = enabled
 fix 5112260 = enabled
 fix 5112352 = enabled
 fix 5547058 = enabled
 fix 5618040 = enabled
 fix 5585313 = enabled
 fix 5547895 = enabled
 fix 5634346 = enabled
 fix 5620485 = enabled
 fix 5483301 = enabled
 fix 5657044 = enabled
 fix 5694984 = enabled
 fix 5868490 = enabled
 fix 5650477 = enabled
 fix 5611962 = enabled
 fix 4279274 = enabled
 fix 5741121 = enabled
 fix 5714944 = enabled
 fix 5391505 = enabled
 fix 5762598 = enabled
 fix 5578791 = enabled
 fix 5259048 = enabled
 fix 5882954 = enabled
 fix 2492766 = enabled
 fix 5707608 = enabled
 fix 5891471 = enabled
 fix 5884780 = enabled
 fix 5680702 = enabled
 fix 5371452 = enabled
 fix 5838613 = enabled
 fix 5949981 = enabled
 fix 5624216 = enabled
 fix 5741044 = enabled
 fix 5976822 = enabled
 fix 6006457 = enabled
 fix 5872956 = enabled
 fix 5923644 = enabled
 fix 5943234 = enabled
 fix 5844495 = enabled
 fix 4168080 = enabled
 fix 6020579 = enabled
 fix 5842686 = disabled
 fix 5996801 = enabled
 fix 5593639 = enabled
 fix 6133948 = enabled
 fix 3151991 = enabled
 fix 6146906 = enabled
 fix 6239909 = enabled
 fix 6267621 = enabled
 fix 5909305 = enabled
 fix 6279918 = enabled
 fix 6141818 = enabled
 fix 6151963 = enabled
 fix 6251917 = enabled
 fix 6282093 = enabled
 fix 6119510 = enabled
 fix 6119382 = enabled
 fix 3801750 = enabled
 fix 5705630 = disabled
 fix 5944076 = enabled
 fix 5406763 = enabled
 fix 6070954 = enabled
 fix 6282944 = enabled
 fix 6138746 = enabled
 fix 6082745 = enabled
 fix 3426050 = enabled
 fix 599680 = enabled
 fix 6062266 = enabled
 fix 6087237 = enabled
 fix 6122894 = enabled
 fix 6377505 = enabled
 fix 5893768 = enabled
 fix 6163564 = enabled
 fix 6073325 = enabled
 fix 6188881 = enabled
 fix 6007259 = enabled
 fix 6239971 = enabled
 fix 5284200 = disabled
 fix 6042205 = enabled
 fix 6051211 = enabled
 fix 6434668 = enabled
 fix 6438752 = enabled
 fix 5936366 = enabled
 fix 6439032 = enabled
 fix 6438892 = enabled
 fix 6006300 = enabled
 fix 5947231 = enabled
 fix 5416118 = 1 
 fix 6365442 = 1 
 fix 6239039 = enabled
 fix 6502845 = enabled
 fix 6913094 = enabled
 fix 6029469 = enabled
 fix 5919513 = enabled
 fix 6057611 = enabled
 fix 6469667 = enabled
 fix 6608941 = disabled
 fix 6368066 = enabled
 fix 6329318 = enabled
 fix 6656356 = enabled
 fix 4507997 = enabled
 fix 6671155 = enabled
 fix 6694548 = enabled
 fix 6688200 = enabled
 fix 6612471 = enabled
 fix 6708183 = disabled
 fix 6326934 = enabled
 fix 6520717 = disabled
 fix 6714199 = enabled
 fix 6681545 = enabled
 fix 6748058 = enabled
 fix 6167716 = enabled
 fix 6674254 = enabled
 fix 6468287 = enabled
 fix 6503543 = enabled
 fix 6808773 = disabled
 fix 6766962 = enabled
 fix 6120483 = enabled
 fix 6670551 = enabled
 fix 6771838 = enabled
 fix 6626018 = disabled
 fix 6530596 = enabled
 fix 6778642 = enabled
 fix 6699059 = enabled
 fix 6376551 = enabled
 fix 6429113 = enabled
 fix 6782437 = enabled
 fix 6776808 = enabled
 fix 6765823 = enabled
 fix 6768660 = enabled
 fix 6782665 = enabled
 fix 6610822 = enabled
 fix 6514189 = enabled
 fix 6818410 = enabled
 fix 6827696 = enabled
 fix 6773613 = enabled
 fix 5902962 = enabled
 fix 6956212 = enabled
 fix 3056297 = enabled
 fix 6440977 = disabled
 fix 6972291 = disabled
 fix 6904146 = enabled
 fix 6221403 = enabled
 fix 5475051 = enabled
 fix 6845871 = enabled
 fix 5468809 = enabled
 fix 6917633 = enabled
 fix 4444536 = disabled
 fix 6955210 = enabled
 fix 6994194 = enabled
 fix 6399597 = disabled
 fix 6951776 = enabled
 fix 5648287 = 3 
 fix 6987082 = disabled
 fix 7132036 = enabled
 fix 6980350 = enabled
 fix 5199213 = enabled
 fix 7138405 = enabled
 fix 7148689 = enabled
 fix 6820988 = enabled
 fix 7032684 = enabled
 fix 6617866 = enabled
 fix 7155968 = enabled
 fix 7127980 = enabled
 fix 6982954 = enabled
 fix 7241819 = enabled
 fix 6897034 = enabled
 fix 7236148 = enabled
 fix 7298570 = enabled
 fix 7249095 = enabled
 fix 7314499 = enabled
 fix 7324224 = enabled
 fix 7289023 = enabled
 fix 7237571 = enabled
 fix 7116357 = enabled
 fix 7345484 = enabled
 fix 7375179 = enabled
 fix 6430500 = disabled
 fix 5897486 = enabled
 fix 6774209 = enabled
 fix 7306637 = enabled
 fix 6451322 = enabled
 fix 7208131 = enabled
 fix 7388652 = enabled
 fix 7127530 = enabled
 fix 6751206 = enabled
 fix 6669103 = enabled
 fix 7430474 = enabled
 fix 6990305 = enabled
 fix 7043307 = enabled
 fix 3120429 = enabled
 fix 7452823 = disabled
 fix 6838105 = enabled
 fix 6769711 = enabled
 fix 7170213 = enabled
 fix 6528872 = enabled
 fix 7295298 = enabled
 fix 5922070 = enabled
 fix 7259468 = enabled
 fix 6418552 = enabled
 fix 4619997 = enabled
 fix 7524366 = enabled
 fix 6942476 = enabled
 fix 6418771 = enabled
 fix 7375077 = enabled
 fix 5400639 = enabled
 fix 4570921 = enabled
 fix 7426911 = enabled
 fix 5099019 = disabled
 fix 7528216 = enabled
 fix 7521266 = enabled
 fix 7385140 = enabled
 fix 7576516 = enabled
 fix 7573526 = enabled
 fix 7576476 = enabled
 fix 7165898 = enabled
 fix 7263214 = enabled
 fix 3320140 = enabled
 fix 7555510 = enabled
 fix 7613118 = enabled
 fix 7597059 = enabled
 fix 7558911 = enabled
 fix 5520732 = enabled
 fix 7679490 = disabled
 fix 7449971 = enabled
 fix 3628118 = enabled
 fix 4370840 = enabled
 fix 7281191 = enabled
 fix 7519687 = enabled
 fix 5029592 = 3 
 fix 6012093 = 1 
 fix 6053861 = disabled
 fix 6941515 = disabled
 fix 7696414 = enabled
 fix 7272039 = enabled
 fix 7834811 = enabled
 fix 7640597 = enabled
 fix 7341616 = enabled
 fix 7168184 = enabled
 fix 399198 = enabled
 fix 7831070 = enabled
 fix 7676897 = disabled
 fix 7414637 = enabled
 fix 7585456 = enabled
 fix 8202421 = enabled
 fix 7658097 = disabled
 fix 8251486 = enabled
 fix 7132684 = enabled
 fix 7512227 = enabled
 fix 6972987 = enabled
 fix 7199035 = enabled
 fix 8243446 = enabled
 fix 7650462 = enabled
 fix 6720701 = enabled
 fix 7592673 = enabled
 fix 7718694 = enabled
 fix 7534027 = enabled
 fix 7708267 = enabled
 fix 5716785 = enabled
 fix 7356191 = enabled
 fix 7679161 = enabled
 fix 7597159 = enabled
 fix 7499258 = enabled
 fix 8328363 = enabled
 fix 7452863 = enabled
 fix 8284930 = enabled
 fix 7298626 = enabled
 fix 7657126 = enabled
 fix 8371884 = enabled
 fix 8318020 = enabled
 fix 8255423 = enabled
 fix 7135745 = enabled
 fix 8356253 = enabled
 fix 7534257 = enabled
 fix 8323407 = enabled
 fix 7539815 = enabled
 fix 8289316 = enabled
 fix 8447850 = enabled
 fix 7675944 = enabled
 fix 8355120 = enabled
 fix 7176746 = enabled
 fix 8442891 = enabled
 fix 8373261 = enabled
 fix 7679164 = enabled
 fix 7670533 = enabled
 fix 8408665 = enabled
 fix 8491399 = enabled
 fix 8348392 = enabled
 fix 8348585 = enabled
 fix 8335178 = enabled
 fix 8247017 = enabled
 fix 7325597 = enabled
 fix 8531490 = enabled
 fix 6163600 = enabled
 fix 8589278 = disabled
 fix 8557992 = enabled
 fix 7556098 = enabled
 fix 8580883 = enabled
 fix 5892599 = disabled
 fix 8609714 = enabled
 fix 8619631 = disabled
 fix 8672915 = enabled
 fix 8514561 = enabled
 fix 8213977 = enabled
 fix 8560951 = disabled
 fix 8578587 = enabled
 fix 8287870 = enabled
 fix 8467123 = enabled
 fix 8602185 = enabled
 fix 8519457 = enabled
 fix 3335182 = enabled
 fix 8602840 = enabled
 fix 8725296 = enabled
 fix 8628970 = enabled
 fix 6754080 = enabled
 fix 8767442 = enabled
 fix 8760135 = enabled
 fix 8644935 = enabled
 fix 8352378 = enabled
 fix 8685327 = enabled
 fix 8763472 = enabled
 fix 8773324 = enabled
 fix 8813674 = enabled
 fix 8532236 = enabled
 fix 8629716 = enabled
 fix 7277732 = enabled
 fix 8692170 = enabled
 fix 8900973 = enabled
 fix 8919133 = enabled
 fix 8927050 = enabled
 fix 8551880 = enabled
 fix 8901237 = enabled
 fix 8812372 = enabled
 fix 6236862 = enabled
 fix 8528517 = enabled
 fix 7215982 = enabled
 fix 8214022 = enabled
 fix 8595392 = enabled
 fix 8890233 = enabled
 fix 8999317 = enabled
 fix 9004800 = enabled
 fix 8986163 = enabled
 fix 8855396 = enabled
 fix 8800514 = 20 
 fix 9007859 = enabled
 fix 8198783 = disabled
 fix 9053879 = enabled
 fix 6086930 = enabled
 fix 7641601 = enabled
 fix 9052506 = enabled
 fix 9103775 = enabled
 fix 9047975 = enabled
 fix 8893626 = enabled
 fix 9111170 = enabled
 fix 8971829 = enabled
 fix 7628358 = enabled
 fix 9125151 = enabled
 fix 9039715 = enabled
 fix 9106224 = enabled
 fix 9185228 = enabled
 fix 9206747 = enabled
 fix 9088510 = enabled
 fix 9143856 = enabled
 fix 8833381 = enabled
 fix 8949971 = enabled
 fix 8951812 = enabled
 fix 9148171 = enabled
 fix 8706652 = enabled
 fix 9245114 = enabled
 fix 8802198 = enabled
 fix 9011016 = enabled
 fix 9265681 = enabled
 fix 7284269 = enabled
 fix 9272549 = enabled
 fix 8917507 = 7 
 fix 8531463 = enabled
 fix 9263333 = enabled
 fix 8675087 = enabled
 fix 8896955 = enabled
 fix 9041934 = enabled
 fix 9344709 = enabled
 fix 9024933 = enabled
 fix 9033718 = enabled
 fix 9240455 = enabled
 fix 9081848 = enabled
 fix 5982893 = enabled
 fix 9287401 = enabled
 fix 8590021 = enabled
 fix 9340120 = enabled
 fix 9355794 = enabled
 fix 9356656 = enabled
 fix 9385634 = enabled
 fix 9069046 = enabled
 fix 9239337 = enabled
 fix 9300228 = enabled
 fix 9298010 = enabled
 fix 9384170 = enabled
 fix 9407929 = enabled
 fix 8836806 = enabled
 fix 9344055 = enabled
 fix 9274675 = enabled
 fix 9203723 = enabled
 fix 9443476 = enabled
 fix 9195582 = enabled
 fix 8226666 = enabled
 fix 9433490 = enabled
 fix 9065494 = enabled
 fix 9303766 = enabled
 fix 9437283 = enabled
 fix 9116214 = enabled
 fix 9456688 = enabled
 fix 9456746 = disabled
 fix 9342979 = enabled
 fix 9465425 = enabled
 fix 9092442 = enabled
 fix 4926618 = enabled
 fix 8792846 = enabled
 fix 9474259 = enabled
 fix 9495669 = disabled
 fix 6472966 = enabled
 fix 6408301 = enabled
 fix 9380298 = disabled
 fix 8500130 = enabled
 fix 9584723 = enabled
 fix 9270951 = enabled
 fix 9508254 = enabled
 fix 9593680 = enabled
 fix 9196440 = disabled
 fix 9309281 = enabled
 fix 8693158 = enabled
 fix 9381638 = enabled
 fix 9383967 = enabled
 fix 7711900 = enabled
 fix 9218587 = enabled
 fix 9728438 = enabled
 fix 9038395 = enabled
 fix 9577300 = enabled
 fix 9171113 = enabled
 fix 8973745 = enabled
 fix 9732434 = enabled
 fix 8937971 = disabled
 fix 9102474 = enabled
 fix 9243499 = enabled
 fix 9791810 = enabled
 fix 9785632 = enabled
 fix 9898249 = enabled
 fix 9153459 = enabled
 fix 9680430 = enabled
 fix 9841679 = enabled
 fix 9912503 = enabled
 fix 9850461 = enabled
 fix 9762592 = 3 
 fix 9716877 = enabled
 fix 9814067 = enabled
 fix 9776736 = enabled
 fix 8349119 = enabled
 fix 9958518 = enabled
 fix 10041074 = enabled
 fix 10004943 = enabled
 fix 9980661 = enabled
 fix 9554026 = enabled
 fix 9593547 = enabled
 fix 9833381 = enabled
 fix 10043801 = enabled
 fix 9940732 = enabled
 fix 9702850 = enabled
 fix 9659125 = 0 
 fix 9668086 = enabled
 fix 9476520 = enabled
 fix 10158107 = enabled
 fix 10148457 = enabled
 fix 10106423 = enabled
 fix 9721439 = disabled
 fix 10162430 = enabled
 fix 10134677 = enabled
 fix 10182051 = 3 
 fix 10175079 = enabled
 fix 10026972 = enabled
 fix 10192889 = enabled
 fix 3566843 = enabled
 fix 9550277 = disabled
 fix 10236566 = enabled
 fix 10227392 = enabled
 fix 8961143 = enabled
 fix 9721228 = enabled
 fix 10080014 = enabled
 fix 10101489 = enabled
 fix 9929609 = enabled
 fix 10015652 = enabled
 fix 9918661 = enabled
 fix 10333395 = enabled
 fix 10336499 = disabled
 fix 10182672 = enabled
 fix 9578670 = enabled
 fix 10232225 = enabled
 fix 10330090 = enabled
 fix 10232623 = enabled
 fix 9630092 = disabled
 fix 10271790 = enabled
 fix 9227576 = enabled
 fix 10197666 = enabled
 fix 10376744 = enabled
 fix 8274946 = enabled
 fix 10046368 = enabled
 fix 9569678 = enabled
 fix 9002661 = enabled
 fix 10038373 = enabled
 fix 9477688 = enabled
 fix 10013899 = enabled
 fix 9832338 = enabled
 fix 10623119 = enabled
 fix 9898066 = enabled
 fix 11699884 = enabled
 fix 10640430 = enabled
 fix 10428450 = enabled
 fix 10117760 = enabled
 fix 11720178 = enabled
 fix 9881812 = enabled
 fix 10428278 = enabled
 fix 11741436 = enabled
 fix 11668189 = enabled
 fix 10359631 = enabled
 fix 9829887 = enabled
 fix 8275054 = enabled
 fix 11814428 = enabled
 fix 11676888 = disabled
 fix 10348427 = enabled
 fix 11843512 = enabled
 fix 11657468 = enabled
 fix 11877160 = enabled
 fix 11738631 = enabled
 fix 11744086 = enabled
 fix 11830663 = enabled
 fix 11853331 = enabled
 fix 9748015 = enabled
 fix 11834739 = enabled
 fix 6055658 = enabled
 fix 11740670 = enabled
 fix 11940126 = enabled
 fix 12315002 = enabled
 fix 8275023 = enabled
 fix 12352373 = enabled
 fix 12390139 = enabled
 fix 11935589 = enabled
 fix 10226906 = enabled
 fix 12327548 = enabled
 fix 12388221 = enabled
 fix 11892888 = enabled
 fix 11814265 = enabled
 fix 10230017 = enabled
 fix 12341619 = enabled
 fix 11744016 = enabled
 fix 10216738 = enabled
 fix 10298302 = enabled
 fix 12563419 = enabled
 fix 12399886 = enabled
 fix 12584007 = enabled
 fix 11881047 = enabled
 fix 12534597 = enabled
 fix 8683604 = enabled
 fix 12410972 = enabled
 fix 7147087 = enabled
 fix 11846314 = enabled
 fix 12535474 = enabled
 fix 12561635 = enabled
 fix 12432426 = enabled
 fix 9913117 = enabled
 fix 12432089 = enabled
 fix 12587690 = enabled
 fix 11858963 = enabled
 fix 12569245 = enabled
 fix 12569300 = enabled
 fix 7308975 = disabled
 fix 12569316 = enabled
 fix 12569321 = enabled
 fix 12335617 = enabled
 fix 9002958 = enabled
 fix 12591120 = enabled
 fix 11876260 = enabled
 fix 12313574 = enabled
 fix 12569713 = enabled
 fix 12348584 = enabled
 fix 10420220 = enabled
 fix 12559453 = enabled
 fix 12727549 = enabled
 fix 12728203 = enabled
 fix 12828479 = enabled
 fix 10181153 = enabled
 fix 9971371 = disabled
 fix 12864791 = enabled
 fix 12810427 = enabled
 fix 12605402 = enabled
 fix 12861609 = enabled
 fix 12915337 = enabled
 fix 12942119 = enabled
 fix 12622441 = enabled
 fix 11072246 = enabled
 fix 12739252 = enabled
 fix 12953765 = enabled
 fix 12905116 = enabled
 fix 12978495 = enabled
 fix 9633142 = disabled
 fix 3639130 = enabled
 fix 12827166 = enabled
 fix 12944193 = enabled
 fix 13020272 = enabled
 fix 12673320 = enabled
 fix 12975771 = enabled
 fix 12882092 = enabled
 fix 12379334 = enabled
 fix 12723414 = enabled
 fix 9488694 = disabled
 fix 13255388 = 10 
 fix 11727871 = enabled
 fix 13110511 = enabled
 fix 13075297 = enabled
 fix 13345888 = enabled
 fix 11657903 = disabled
 fix 13396096 = enabled
 fix 12591379 = enabled
 fix 13398214 = enabled
 fix 13382280 = enabled
 fix 12869367 = enabled
 fix 12999577 = enabled
 fix 12433153 = enabled
 fix 9094254 = enabled
 fix 13104618 = enabled
 fix 13524237 = enabled
 fix 11813257 = enabled
 fix 13489017 = enabled
 fix 12954320 = enabled
 fix 13555551 = enabled
 fix 13499154 = enabled
 fix 13036910 = enabled
 fix 13545925 = enabled
 fix 13545956 = enabled
 fix 13545989 = enabled
 fix 12839247 = enabled
 fix 9858777 = enabled
 fix 13568366 = enabled
 fix 13393357 = enabled
 fix 13040171 = enabled
 fix 13406619 = enabled
 fix 13594757 = enabled
 fix 13543207 = enabled
 fix 13594712 = enabled
 fix 12648629 = enabled
 fix 13549808 = enabled
 fix 13634700 = enabled
 fix 8792821 = enabled
 fix 13454409 = enabled
 fix 13146487 = enabled
 fix 13592248 = enabled
 fix 11689541 = enabled
 fix 13527374 = enabled
 fix 13430622 = enabled
 fix 13704562 = enabled
 fix 9547706 = enabled
 fix 13497184 = enabled
 fix 13704977 = enabled
 fix 13734456 = enabled
 fix 13070532 = enabled
 fix 6520878 = enabled
 fix 2273284 = enabled
 fix 13786127 = enabled
 fix 13065064 = enabled
 fix 13972896 = enabled
 fix 11843466 = enabled
 fix 13777823 = enabled
 fix 13616573 = enabled
 fix 13831671 = enabled
 fix 13652216 = enabled
 fix 13912192 = enabled
 fix 13909909 = enabled
 fix 13849486 = enabled
 fix 13321547 = enabled
 fix 13886606 = disabled
 fix 14013502 = enabled
 fix 13850256 = enabled
 fix 13929275 = enabled
 fix 11732303 = enabled
 fix 13906168 = enabled
 fix 14055128 = enabled
 fix 12856200 = enabled
 fix 14008590 = enabled
 fix 13627489 = disabled
 fix 13961105 = enabled
 fix 13583722 = enabled
 fix 13076238 = enabled
 fix 13936229 = enabled
 fix 9852856 = enabled
 fix 3904125 = enabled
 fix 5910187 = enabled
 fix 10068316 = enabled
 fix 14029891 = enabled
 fix 4215125 = enabled
 fix 13711083 = enabled
 fix 13973691 = enabled
 fix 13486825 = enabled
 fix 13682550 = enabled
 fix 13826669 = enabled
 fix 14033181 = enabled
 fix 13836796 = enabled
 fix 12555499 = enabled
 fix 13568506 = enabled
 fix 9891396 = enabled
 fix 13699643 = enabled
 fix 13835788 = enabled
 fix 7271518 = enabled
 fix 14127824 = enabled
 fix 12557401 = enabled
 fix 13350470 = enabled
 fix 14095362 = enabled
 fix 13000118 = enabled
 fix 14254795 = enabled
 fix 14012261 = enabled
 fix 14241953 = enabled
 fix 14221012 = enabled
 fix 13329748 = enabled
 fix 13843964 = enabled
 fix 14254052 = enabled
 fix 13814866 = enabled
 fix 14255600 = disabled
 fix 13735304 = enabled
 fix 14142884 = disabled
 fix 12909121 = enabled
 fix 14464068 = enabled
 fix 14295250 = 45000 
 fix 6873091 = enabled
 fix 13448445 = enabled
 fix 14155722 = enabled
 fix 14098180 = enabled
 fix 11905801 = enabled
 fix 14467202 = enabled
 fix 14541122 = enabled
 fix 13905599 = disabled
 fix 14320077 = enabled
 fix 14243782 = enabled
 fix 9114915 = enabled
 fix 14516175 = enabled
 fix 12812697 = enabled
 fix 13109345 = enabled
 fix 14456124 = enabled
 fix 14605040 = enabled
 fix 14595273 = disabled
 fix 14176247 = enabled
 fix 11894476 = enabled
 fix 14256885 = enabled
 fix 14545269 = disabled
 fix 14668404 = disabled
 fix 14144611 = enabled
 fix 14346182 = enabled
 fix 13083139 = enabled
 fix 14726188 = enabled
 fix 14707009 = enabled
 fix 14703133 = enabled
 fix 14618560 = enabled
 fix 14170552 = enabled
 fix 13263174 = enabled
 fix 14669785 = enabled
 fix 14633570 = enabled
 fix 14755138 = enabled
 fix 14682092 = enabled
 fix 14712222 = enabled
 fix 14570575 = enabled
 fix 14707748 = disabled
 fix 14684079 = enabled
 fix 13245379 = enabled
 fix 13853916 = enabled
 fix 13699007 = enabled
 fix 14843189 = enabled
 fix 14147762 = enabled
 fix 14795969 = enabled
 fix 14746036 = 1 
 fix 14750501 = enabled
 fix 13891981 = enabled
 fix 15996520 = enabled
 fix 16026776 = enabled
 fix 13573073 = enabled
 fix 13263455 = enabled
 fix 16053273 = enabled
 fix 16029607 = enabled
 fix 14242833 = enabled
 fix 13362020 = enabled
 fix 13799389 = enabled
 fix 12693573 = enabled
 fix 15998585 = enabled
 fix 16166364 = enabled
 fix 14723910 = enabled
 fix 15873008 = enabled
 fix 14133928 = enabled
 fix 16085999 = enabled
 fix 14176203 = enabled
 fix 16226575 = enabled
 fix 16015637 = enabled
 fix 15968693 = disabled
 fix 16220895 = enabled
 fix 16178821 = enabled
 fix 11865196 = enabled
 fix 16237969 = enabled
 fix 16058481 = enabled
 fix 13361493 = enabled
 fix 16264537 = enabled
 fix 14401107 = enabled
 fix 13943459 = enabled
 fix 13994546 = enabled
 fix 7174435 = enabled
 fix 14750443 = enabled
 fix 14469756 = enabled
 fix 14552075 = enabled
 fix 16324844 = enabled
 fix 13583529 = enabled
 fix 14565911 = enabled
 fix 13526551 = enabled
 fix 16368002 = enabled
 fix 16077770 = enabled
 fix 16419357 = enabled
 fix 15889476 = disabled
 fix 16273483 = enabled
 fix 16496848 = disabled
 fix 14107333 = enabled
 fix 11814337 = enabled
 fix 15882436 = enabled
 fix 14764840 = enabled
 fix 16226660 = enabled
 fix 16555865 = enabled
 fix 16625151 = enabled
 fix 16092378 = enabled
 fix 16487030 = enabled
 fix 9552303 = enabled
 fix 16609749 = enabled
 fix 16751246 = enabled
 fix 13253977 = enabled
 fix 14058291 = disabled
 fix 16749025 = enabled
 fix 16750067 = enabled
 fix 16726844 = enabled
 fix 15899648 = enabled
 fix 16690013 = enabled
 fix 15996156 = enabled
 fix 16544878 = enabled
 fix 9413591 = disabled
 fix 16792882 = 0 
 fix 16725982 = enabled
 fix 14648222 = enabled
 fix 16799181 = enabled
 fix 16516883 = enabled
 fix 16507317 = enabled
 fix 16837274 = enabled
 fix 14085520 = enabled
 fix 16713081 = enabled
 fix 14703295 = enabled
 fix 16908409 = enabled
 fix 16212250 = enabled
 fix 13692395 = disabled
 fix 17087729 = enabled
 fix 17088819 = enabled
 fix 13848786 = enabled
 fix 13522189 = enabled
 fix 16400122 = enabled
 fix 16796185 = enabled
 fix 15950252 = enabled
 fix 17070464 = enabled
 fix 16976121 = enabled
 fix 14580303 = enabled
 fix 16554552 = enabled
 fix 16582322 = enabled
 fix 16712213 = enabled
 fix 17382690 = enabled
 fix 14846352 = enabled
 fix 16516751 = enabled
 fix 3174223 = enabled
 fix 8611462 = enabled
 fix 14851437 = 3 
 fix 17348895 = enabled
 fix 16515789 = enabled
 fix 5451645 = disabled
 fix 14062749 = enabled
 fix 16346018 = enabled
 fix 12977599 = enabled
 fix 14191778 = enabled
 fix 15939321 = enabled
 fix 16874299 = enabled
 fix 16470836 = enabled
 fix 16805362 = disabled
 fix 17442009 = disabled
 fix 16825679 = enabled
 fix 17543180 = enabled
 fix 17301564 = enabled
 fix 12373708 = enabled
 fix 17397506 = enabled
 fix 14558315 = enabled
 fix 16615686 = enabled
 fix 16622801 = enabled
 fix 10038517 = enabled
 fix 16954950 = enabled
 fix 17728161 = enabled
 fix 17760375 = enabled
 fix 14311185 = enabled
 fix 13077335 = disabled
 fix 13458979 = disabled
 fix 17485514 = enabled
 fix 17599514 = enabled
 fix 17640863 = enabled
 fix 17716301 = enabled
 fix 17368047 = disabled
 fix 17597748 = enabled
 fix 17303359 = enabled
 fix 17376322 = disabled
 fix 16391176 = disabled
 fix 16673868 = enabled
 fix 17800514 = enabled
 fix 14826303 = enabled
 fix 17663076 = enabled
 fix 17760755 = enabled
 fix 17793460 = enabled
 fix 17997159 = enabled
 fix 17938754 = enabled
 fix 14733442 = enabled
 fix 17727676 = enabled
 fix 17781659 = enabled
 fix 17526569 = enabled
 fix 17950612 = enabled
 fix 17760686 = enabled
 fix 17696414 = enabled
 fix 17799716 = enabled
 fix 18116777 = enabled
 fix 18159664 = disabled
 fix 16052625 = enabled
 fix 18091750 = enabled
 fix 17572606 = enabled
 fix 17971955 = enabled
 fix 17946915 = enabled
 fix 18196576 = enabled
 fix 10145667 = enabled
 fix 17736165 = enabled
 fix 16434021 = enabled
 fix 18035463 = enabled
 fix 18011820 = enabled
 fix 16405740 = enabled
 fix 14612201 = enabled
 fix 17491018 = enabled
 fix 18365267 = enabled
 fix 17986549 = enabled
 fix 18115594 = enabled
 fix 18182018 = enabled
 fix 18302923 = enabled
 fix 18377553 = enabled
 fix 5677419 = enabled
 fix 17896018 = disabled
 fix 13097308 = enabled
 fix 17863980 = enabled
 fix 17567154 = enabled
 fix 18398980 = enabled
 fix 17023040 = enabled
 fix 17991403 = 1 
 fix 16033838 = enabled
 fix 17908541 = enabled
 fix 18134680 = enabled
 fix 18405517 = 0 
 fix 18304693 = enabled
 fix 18456944 = enabled
 fix 18467455 = enabled
 fix 18425876 = enabled
 fix 18508675 = enabled
 fix 17473046 = disabled
 fix 18636079 = enabled
 fix 18388128 = enabled
 fix 18415557 = enabled
 fix 18385778 = enabled
 fix 18308329 = enabled
 fix 18461984 = enabled
 fix 17973658 = enabled
 fix 18558952 = enabled
 fix 9912950 = enabled
 fix 18751128 = enabled
 fix 16809786 = enabled
 fix 18795224 = enabled
 fix 14776289 = enabled
 fix 18823135 = enabled
 fix 18874242 = enabled
 fix 18770199 = disabled
 fix 4185270 = disabled
 fix 18765574 = enabled
 fix 18754357 = disabled
 fix 18959892 = enabled
 fix 17324379 = disabled
 fix 18952882 = enabled
 fix 18924221 = enabled
 fix 18422714 = enabled
 fix 18798414 = enabled
 fix 18969167 = enabled
 fix 16191689 = enabled
 fix 18907562 = enabled
 fix 19055664 = enabled
 fix 18898582 = enabled
 fix 18960760 = enabled
 fix 19070454 = enabled
 fix 19230097 = enabled
 fix 19063497 = enabled
 fix 19046459 = enabled
 fix 19269482 = enabled
 fix 18876528 = enabled
 fix 19227996 = enabled
 fix 18864613 = enabled
 fix 19239478 = enabled
 fix 19451895 = enabled
 fix 19450139 = enabled
 fix 18907390 = enabled
 fix 19025959 = enabled
 fix 19309574 = enabled
 fix 16774698 = enabled
 fix 16923858 = 6 
 fix 19546825 = enabled
 fix 19475484 = enabled
 fix 19498595 = enabled
 fix 16934526 = enabled
 fix 19287919 = enabled
 fix 19386746 = enabled
 fix 19774486 = enabled
 fix 19803410 = enabled
 fix 18671960 = enabled
 fix 19484911 = enabled
 fix 19731940 = enabled
 fix 19604408 = enabled
 fix 14402409 = enabled
 fix 16486095 = enabled
 fix 19563657 = enabled
 fix 19632232 = enabled
 fix 19889960 = enabled
 fix 17208933 = enabled
 fix 19710102 = enabled
 fix 18697515 = enabled
 fix 18318631 = enabled
 fix 19377983 = enabled
 fix 20078639 = enabled
 fix 19503668 = enabled
 fix 20124288 = enabled
 fix 19847091 = enabled
 fix 12989345 = enabled
 fix 12618642 = enabled
 fix 19779920 = enabled
 fix 20186282 = enabled
 fix 20186295 = enabled
 fix 19563433 = enabled
 fix 19848804 = enabled
 fix 20046257 = enabled
 fix 20265690 = enabled
 fix 16047938 = enabled
 fix 19507904 = enabled
 fix 18915345 = enabled
 fix 20173686 = disabled
 fix 20329321 = enabled
 fix 20225191 = enabled
 fix 18776755 = enabled
 fix 19882842 = enabled
 fix 20010996 = enabled
 fix 20445764 = disabled
 fix 19728543 = disabled
 fix 20379571 = enabled
 fix 20129763 = enabled
 fix 19899588 = enabled
 fix 10098852 = enabled
 fix 19663421 = enabled
 fix 20355502 = 0 
 fix 20526705 = enabled
 fix 20465582 = enabled
 fix 20581886 = disabled
 fix 16732417 = enabled
 fix 20732410 = enabled
 fix 20289688 = enabled
 fix 20543684 = enabled
 fix 20636003 = enabled
 fix 20506136 = enabled
 fix 20458598 = disabled
 fix 20830312 = enabled
 fix 19768896 = enabled
 fix 20321661 = enabled
 fix 19814541 = enabled
 fix 20933264 = enabled
 fix 17443547 = enabled
 fix 20602794 = enabled
 fix 19123152 = enabled
 fix 19899833 = enabled
 fix 20754928 = enabled
 fix 20808265 = enabled
 fix 20808192 = enabled
 fix 20340595 = enabled
 fix 14474264 = disabled
 fix 20508819 = enabled
 fix 21098866 = disabled
 fix 18949550 = enabled
 fix 14775297 = enabled
 fix 19568958 = disabled
 fix 20923950 = enabled
 fix 21283159 = enabled
 fix 17497847 = enabled
 fix 21211629 = enabled
 fix 20819668 = disabled
 fix 20232513 = enabled
 fix 20906782 = enabled
 fix 20587527 = enabled
 fix 20914534 = disabled
 fix 20830544 = enabled
 fix 16851194 = enabled
 fix 19186783 = enabled
 fix 19653920 = enabled
 fix 21211786 = enabled
 fix 21057343 = enabled
 fix 21503478 = enabled
 fix 19808939 = disabled
 fix 21476032 = enabled
 fix 20859246 = enabled
 fix 20838633 = 2 
 fix 21639419 = enabled
 fix 20951803 = enabled
 fix 21683982 = enabled
 fix 20216500 = enabled
 fix 21614112 = enabled
 fix 20906162 = enabled
 fix 20854798 = enabled
 fix 21509656 = enabled
 fix 21833220 = enabled
 fix 21802552 = enabled
 fix 21452843 = enabled
 fix 21553593 = enabled
 fix 21093805 = enabled
 fix 16220085 = disabled
 fix 21800590 = enabled
 fix 21273039 = enabled
 fix 16750133 = enabled
 fix 22013607 = enabled
 fix 22152372 = enabled
 fix 22077191 = enabled
 fix 22123025 = enabled
 fix 16913734 = enabled
 fix 8357294 = enabled
 fix 12670904 = enabled
 fix 21979983 = enabled
 fix 22158526 = enabled
 fix 21971099 = enabled
 fix 22090662 = enabled
 fix 22149010 = disabled
 fix 21300129 = enabled
 fix 21339278 = enabled
 fix 20270511 = enabled
 fix 21424812 = enabled
 fix 22114090 = enabled
 fix 22310074 = disabled
 fix 22159570 = enabled
 fix 22272439 = enabled
 fix 22372694 = enabled
 fix 22514195 = enabled
 fix 20413540 = enabled
 fix 22520315 = enabled
 fix 22649054 = enabled
 fix 8617254 = enabled
 fix 22020067 = enabled
 fix 22864730 = enabled
 fix 21099502 = enabled
 fix 22904304 = enabled
 fix 22967807 = enabled
 fix 22879002 = enabled
 fix 23019286 = enabled
 fix 22760704 = enabled
 fix 20853506 = enabled
 fix 22540411 = disabled
 fix 22513493 = enabled
 fix 22518491 = enabled
 fix 23103096 = enabled
 fix 22143411 = enabled
 fix 23180670 = enabled
 fix 23002609 = enabled
 fix 22928015 = 1 
 fix 23210039 = enabled
 fix 23102649 = enabled
 fix 23071621 = enabled
 fix 22822245 = enabled
 fix 23136865 = enabled
 fix 22463839 = disabled
 fix 23176721 = enabled
 fix 23308385 = enabled
 fix 23223113 = enabled
 fix 22301868 = disabled
 fix 22258300 = enabled
 fix 22205301 = enabled
 fix 23514473 = 1 
 fix 23556483 = enabled
 fix 21305617 = enabled
 fix 22533539 = enabled
 fix 23596611 = enabled
 fix 23853877 = disabled
 fix 20347374 = disabled
 fix 22937293 = enabled
 fix 20228468 = disabled
 fix 23565188 = enabled
 fix 22393169 = enabled
 fix 24654471 = enabled
 fix 24845754 = enabled
 fix 25058954 = enabled
 fix 23146876 = disabled




Query Block Registry:
SEL$1 0x6bfd6f68 (PARSER) [FINAL]

:
 call(in-use=12072, alloc=65656), compile(in-use=161568, alloc=223424), execution(in-use=7392, alloc=8088)

End of Optimizer State Dump
Dumping Hints
=============
====================== END SQL Statement Dump ======================

db12201_ora_20607_CAT.trc

Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_CAT.trc
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
Build label: RDBMS_12.2.0.1.0_LINUX.X64_170125
ORACLE_HOME: /u01/app/oracle/product/12.2.0/dbhome_1
System name: Linux
Node name: stormking
Release: 2.6.39-400.247.1.el6uek.x86_64
Version: #1 SMP Thu Feb 5 16:06:15 PST 2015
Machine: x86_64
Instance name: db12201
Redo thread mounted by this instance: 1
Oracle process number: 40
Unix process pid: 20607, image: oracle@stormking (TNS V1-V3)




*** 2018-02-11T14:25:26.881036-05:00
*** SESSION ID:(84.15782) 2018-02-11T14:25:26.881036-05:00
*** CLIENT ID:() 2018-02-11T14:25:26.881036-05:00
*** SERVICE NAME:(SYS$USERS) 2018-02-11T14:25:26.881036-05:00
*** MODULE NAME:(SQL*Plus) 2018-02-11T14:25:26.881036-05:00
*** ACTION NAME:() 2018-02-11T14:25:26.881036-05:00
*** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:25:26.881036-05:00


*** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATUS.trc ***

Registered qb: SEL$1 0x6bfd6f68 (PARSER)
---------------------
QUERY BLOCK SIGNATURE
---------------------
 signature (): qb_name=SEL$1 nbfros=1 flg=0
 fro(0): flg=4 objn=93045 hint_alias="ORDS"@"SEL$1"

SPM: statement not found in SMB
SPM: capture of plan baseline is OFF

**************************
Automatic degree of parallelism (AUTODOP)
**************************
Automatic degree of parallelism is disabled: Parameter.
kkopqSetForceParallelProperties: Hint:no
Query: compute:yes forced:no forceDop:0
Global Manual Dop: 1 - Rounded?: no

PM: Considering predicate move-around in query block SEL$1 (#0)
**************************
Predicate Move-Around (PM)
**************************
OPTIMIZER INFORMATION

******************************************
----- Current SQL Statement for this session (sql_id=dpqv2vras9v7v) -----
select ordid from ords
where categoryid = 0
and status = 'COMPLETE'
*******************************************
Legend
The following abbreviations are used by optimizer trace.
CBQT - cost-based query transformation
JPPD - join predicate push-down
OJPPD - old-style (non-cost-based) JPPD
FPD - filter push-down
PM - predicate move-around
CVM - complex view merging
SPJ - select-project-join
SJC - set join conversion
SU - subquery unnesting
OBYE - order by elimination
OST - old style star transformation
ST - new (cbqt) star transformation
CNT - count(col) to count(*) transformation
JE - Join Elimination
JF - join factorization
CBY - connect by
SLP - select list pruning
DP - distinct placement
VT - vector transformation
AAT - Approximate Aggregate Transformation
ORE - CBQT OR-Expansion
LORE - Legacy OR-Expansion
qb - query block
LB - leaf blocks
DK - distinct keys
LB/K - average number of leaf blocks per key
DB/K - average number of data blocks per key
CLUF - clustering factor
NDV - number of distinct values
Resp - response cost
Card - cardinality
Resc - resource cost
NL - nested loops (join)
SM - sort merge (join)
HA - hash (join)
CPUSPEED - CPU Speed 
IOTFRSPEED - I/O transfer speed
IOSEEKTIM - I/O seek time
SREADTIM - average single block read time
MREADTIM - average multiblock read time
MBRC - average multiblock read count
MAXTHR - maximum I/O system throughput
SLAVETHR - average slave I/O throughput
dmeth - distribution method
 1: no partitioning required
 2: value partitioned
 4: right is random (round-robin)
 128: left is random (round-robin)
 8: broadcast right and partition left
 16: broadcast left and partition right
 32: partition left using partitioning of right
 64: partition right using partitioning of left
 256: run the join in serial
 0: invalid distribution method
sel - selectivity
ptn - partition
AP - adaptive plans
***************************************
PARAMETERS USED BY THE OPTIMIZER
********************************
 *************************************
 PARAMETERS WITH ALTERED VALUES
 ******************************
Compilation Environment Dump
_pga_max_size = 328280 KB
Bug Fix Control Environment




*************************************
 PARAMETERS WITH DEFAULT VALUES
 ******************************
Compilation Environment Dump
optimizer_mode_hinted = false
optimizer_features_hinted = 0.0.0
parallel_execution_enabled = true
parallel_query_forced_dop = 0
parallel_dml_forced_dop = 0
parallel_ddl_forced_degree = 0
parallel_ddl_forced_instances = 0
_query_rewrite_fudge = 90
optimizer_features_enable = 12.2.0.1
_optimizer_search_limit = 5
cpu_count = 1
active_instance_count = 1
parallel_threads_per_cpu = 2
hash_area_size = 131072
bitmap_merge_area_size = 1048576
sort_area_size = 65536
sort_area_retained_size = 0
_sort_elimination_cost_ratio = 0
_optimizer_block_size = 8192
_sort_multiblock_read_count = 2
_hash_multiblock_io_count = 0
_db_file_optimizer_read_count = 8
_optimizer_max_permutations = 2000
pga_aggregate_target = 1641472 KB
_query_rewrite_maxdisjunct = 257
_smm_auto_min_io_size = 56 KB
_smm_auto_max_io_size = 248 KB
_smm_min_size = 1024 KB
_smm_max_size_static = 164140 KB
_smm_px_max_size_static = 820736 KB
_cpu_to_io = 0
_optimizer_undo_cost_change = 12.2.0.1
parallel_query_mode = enabled
parallel_dml_mode = disabled
parallel_ddl_mode = enabled
optimizer_mode = all_rows
sqlstat_enabled = false
_optimizer_percent_parallel = 101
_always_anti_join = choose
_always_semi_join = choose
_optimizer_mode_force = true
_partition_view_enabled = true
_always_star_transformation = false
_query_rewrite_or_error = false
_hash_join_enabled = true
cursor_sharing = exact
_b_tree_bitmap_plans = true
star_transformation_enabled = false
_optimizer_cost_model = choose
_new_sort_cost_estimate = true
_complex_view_merging = true
_unnest_subquery = true
_eliminate_common_subexpr = true
_pred_move_around = true
_convert_set_to_join = false
_push_join_predicate = true
_push_join_union_view = true
_fast_full_scan_enabled = true
_optim_enhance_nnull_detection = true
_parallel_broadcast_enabled = true
_px_broadcast_fudge_factor = 100
_ordered_nested_loop = true
_no_or_expansion = false
optimizer_index_cost_adj = 100
optimizer_index_caching = 0
_system_index_caching = 0
_disable_datalayer_sampling = false
query_rewrite_enabled = true
query_rewrite_integrity = enforced
_query_cost_rewrite = true
_query_rewrite_2 = true
_query_rewrite_1 = true
_query_rewrite_expression = true
_query_rewrite_jgmigrate = true
_query_rewrite_fpc = true
_query_rewrite_drj = false
_full_pwise_join_enabled = true
_partial_pwise_join_enabled = true
_left_nested_loops_random = true
_improved_row_length_enabled = true
_index_join_enabled = true
_enable_type_dep_selectivity = true
_improved_outerjoin_card = true
_optimizer_adjust_for_nulls = true
_optimizer_degree = 0
_use_column_stats_for_function = true
_subquery_pruning_enabled = true
_subquery_pruning_mv_enabled = false
_or_expand_nvl_predicate = true
_like_with_bind_as_equality = false
_table_scan_cost_plus_one = true
_cost_equality_semi_join = true
_default_non_equality_sel_check = true
_new_initial_join_orders = true
_oneside_colstat_for_equijoins = true
_optim_peek_user_binds = true
_minimal_stats_aggregation = true
_force_temptables_for_gsets = false
workarea_size_policy = auto
_smm_auto_cost_enabled = true
_gs_anti_semi_join_allowed = true
_optim_new_default_join_sel = true
optimizer_dynamic_sampling = 2
_pre_rewrite_push_pred = true
_optimizer_new_join_card_computation = true
_union_rewrite_for_gs = yes_gset_mvs
_generalized_pruning_enabled = true
_optim_adjust_for_part_skews = true
_force_datefold_trunc = false
statistics_level = typical
_optimizer_system_stats_usage = true
skip_unusable_indexes = true
_remove_aggr_subquery = true
_optimizer_push_down_distinct = 0
_dml_monitoring_enabled = true
_optimizer_undo_changes = false
_predicate_elimination_enabled = true
_nested_loop_fudge = 100
_project_view_columns = true
_local_communication_costing_enabled = true
_local_communication_ratio = 50
_query_rewrite_vop_cleanup = true
_slave_mapping_enabled = true
_optimizer_cost_based_transformation = linear
_optimizer_mjc_enabled = true
_right_outer_hash_enable = true
_spr_push_pred_refspr = true
_optimizer_cache_stats = false
_optimizer_cbqt_factor = 50
_optimizer_squ_bottomup = true
_fic_area_size = 131072
_optimizer_skip_scan_enabled = true
_optimizer_cost_filter_pred = false
_optimizer_sortmerge_join_enabled = true
_optimizer_join_sel_sanity_check = true
_mmv_query_rewrite_enabled = true
_bt_mmv_query_rewrite_enabled = true
_add_stale_mv_to_dependency_list = true
_distinct_view_unnesting = false
_optimizer_dim_subq_join_sel = true
_optimizer_disable_strans_sanity_checks = 0
_optimizer_compute_index_stats = true
_push_join_union_view2 = true
_optimizer_ignore_hints = false
_optimizer_random_plan = 0
_query_rewrite_setopgrw_enable = true
_optimizer_correct_sq_selectivity = true
_disable_function_based_index = false
_optimizer_join_order_control = 3
_optimizer_cartesian_enabled = true
_optimizer_starplan_enabled = true
_extended_pruning_enabled = true
_optimizer_push_pred_cost_based = true
_optimizer_null_aware_antijoin = true
_optimizer_extend_jppd_view_types = true
_sql_model_unfold_forloops = run_time
_enable_dml_lock_escalation = false
_bloom_filter_enabled = true
_update_bji_ipdml_enabled = 0
_optimizer_extended_cursor_sharing = udo
_dm_max_shared_pool_pct = 1
_optimizer_cost_hjsmj_multimatch = true
_optimizer_transitivity_retain = true
_px_pwg_enabled = true
optimizer_secure_view_merging = true
_optimizer_join_elimination_enabled = true
flashback_table_rpi = non_fbt
_optimizer_cbqt_no_size_restriction = true
_optimizer_enhanced_filter_push = true
_optimizer_filter_pred_pullup = true
_rowsrc_trace_level = 0
_simple_view_merging = true
_optimizer_rownum_pred_based_fkr = true
_optimizer_better_inlist_costing = all
_optimizer_self_induced_cache_cost = false
_optimizer_min_cache_blocks = 10
_optimizer_or_expansion = depth
_optimizer_order_by_elimination_enabled = true
_optimizer_outer_to_anti_enabled = true
_selfjoin_mv_duplicates = true
_dimension_skip_null = true
_force_rewrite_enable = false
_optimizer_star_tran_in_with_clause = true
_optimizer_complex_pred_selectivity = true
_optimizer_connect_by_cost_based = true
_gby_hash_aggregation_enabled = true
_globalindex_pnum_filter_enabled = true
_px_minus_intersect = true
_fix_control_key = 0
_force_slave_mapping_intra_part_loads = false
_force_tmp_segment_loads = false
_query_mmvrewrite_maxpreds = 10
_query_mmvrewrite_maxintervals = 5
_query_mmvrewrite_maxinlists = 5
_query_mmvrewrite_maxdmaps = 10
_query_mmvrewrite_maxcmaps = 20
_query_mmvrewrite_maxregperm = 512
_query_mmvrewrite_maxqryinlistvals = 500
_disable_parallel_conventional_load = false
_trace_virtual_columns = false
_replace_virtual_columns = true
_virtual_column_overload_allowed = true
_kdt_buffering = true
_first_k_rows_dynamic_proration = true
_optimizer_sortmerge_join_inequality = true
_optimizer_aw_stats_enabled = true
_bloom_pruning_enabled = true
result_cache_mode = MANUAL
_px_ual_serial_input = true
_optimizer_skip_scan_guess = false
_enable_row_shipping = true
_row_shipping_threshold = 100
_row_shipping_explain = false
transaction_isolation_level = read_commited
_optimizer_distinct_elimination = true
_optimizer_multi_level_push_pred = true
_optimizer_group_by_placement = true
_optimizer_rownum_bind_default = 10
_enable_query_rewrite_on_remote_objs = true
_optimizer_extended_cursor_sharing_rel = simple
_optimizer_adaptive_cursor_sharing = true
_direct_path_insert_features = 0
_optimizer_improve_selectivity = true
optimizer_use_pending_statistics = false
_optimizer_enable_density_improvements = true
_optimizer_aw_join_push_enabled = true
_optimizer_connect_by_combine_sw = true
_enable_pmo_ctas = 0
_optimizer_native_full_outer_join = force
_bloom_predicate_enabled = true
_optimizer_enable_extended_stats = true
_is_lock_table_for_ddl_wait_lock = 0
_pivot_implementation_method = choose
optimizer_capture_sql_plan_baselines = false
optimizer_use_sql_plan_baselines = true
_optimizer_star_trans_min_cost = 0
_optimizer_star_trans_min_ratio = 0
_with_subquery = OPTIMIZER
_optimizer_fkr_index_cost_bias = 10
_optimizer_use_subheap = true
parallel_degree_policy = manual
parallel_degree = 0
parallel_min_time_threshold = 10
_parallel_time_unit = 10
_optimizer_or_expansion_subheap = true
_optimizer_free_transformation_heap = true
_optimizer_reuse_cost_annotations = true
_result_cache_auto_size_threshold = 100
_result_cache_auto_time_threshold = 1000
_optimizer_nested_rollup_for_gset = 100
_nlj_batching_enabled = 1
parallel_query_default_dop = 0
is_recur_flags = 0
optimizer_use_invisible_indexes = false
flashback_data_archive_internal_cursor = 0
_optimizer_extended_stats_usage_control = 192
_parallel_syspls_obey_force = true
cell_offload_processing = true
_rdbms_internal_fplib_enabled = false
db_file_multiblock_read_count = 128
_bloom_folding_enabled = true
_mv_generalized_oj_refresh_opt = true
cell_offload_compaction = ADAPTIVE
cell_offload_plan_display = AUTO
_bloom_predicate_offload = true
_bloom_filter_size = 0
_bloom_pushing_max = 512
parallel_degree_limit = 65535
parallel_force_local = false
parallel_max_degree = 2
total_cpu_count = 1
_optimizer_coalesce_subqueries = true
_optimizer_fast_pred_transitivity = true
_optimizer_fast_access_pred_analysis = true
_optimizer_unnest_disjunctive_subq = true
_optimizer_unnest_corr_set_subq = true
_optimizer_distinct_agg_transform = true
_aggregation_optimization_settings = 0
_optimizer_connect_by_elim_dups = true
_optimizer_eliminate_filtering_join = true
_connect_by_use_union_all = true
dst_upgrade_insert_conv = true
advanced_queuing_internal_cursor = 0
_optimizer_unnest_all_subqueries = true
parallel_autodop = 0
parallel_ddldml = 0
_parallel_cluster_cache_policy = adaptive
_parallel_scalability = 50
iot_internal_cursor = 0
_optimizer_instance_count = 0
_optimizer_connect_by_cb_whr_only = false
_suppress_scn_chk_for_cqn = nosuppress_1466
_optimizer_join_factorization = true
_optimizer_use_cbqt_star_transformation = true
_optimizer_table_expansion = true
_and_pruning_enabled = true
_deferred_constant_folding_mode = DEFAULT
_optimizer_distinct_placement = true
partition_pruning_internal_cursor = 0
parallel_hinted = none
_sql_compatibility = 0
_optimizer_use_feedback = true
_optimizer_try_st_before_jppd = true
_dml_frequency_tracking = false
_optimizer_interleave_jppd = true
kkb_drop_empty_segments = 0
_px_partition_scan_enabled = true
_px_partition_scan_threshold = 64
_optimizer_false_filter_pred_pullup = true
_bloom_minmax_enabled = true
only_move_row = 0
_optimizer_enable_table_lookup_by_nl = true
parallel_execution_message_size = 16384
_px_loc_msg_cost = 1000
_px_net_msg_cost = 10000
_optimizer_generate_transitive_pred = true
_optimizer_cube_join_enabled = true
_optimizer_filter_pushdown = true
deferred_segment_creation = true
_optimizer_outer_join_to_inner = true
_allow_level_without_connect_by = false
_max_rwgs_groupings = 8192
_optimizer_hybrid_fpwj_enabled = true
_px_replication_enabled = true
ilm_filter = 0
_optimizer_partial_join_eval = true
_px_concurrent = true
_px_object_sampling_enabled = true
_px_back_to_parallel = OFF
_optimizer_unnest_scalar_sq = true
_optimizer_full_outer_join_to_outer = true
_px_filter_parallelized = true
_px_filter_skew_handling = true
_zonemap_use_enabled = true
_zonemap_control = 0
_optimizer_multi_table_outerjoin = true
_px_groupby_pushdown = force
_partition_advisor_srs_active = true
_optimizer_ansi_join_lateral_enhance = true
_px_parallelize_expression = true
_fast_index_maintenance = true
_optimizer_ansi_rearchitecture = true
_optimizer_gather_stats_on_load = true
ilm_access_tracking = 0
ilm_dml_timestamp = 0
_px_adaptive_dist_method = choose
_px_adaptive_dist_method_threshold = 0
_optimizer_batch_table_access_by_rowid = true
optimizer_adaptive_reporting_only = false
_optimizer_ads_max_table_count = 0
_optimizer_ads_time_limit = 0
_optimizer_ads_use_result_cache = true
_px_wif_dfo_declumping = choose
_px_wif_extend_distribution_keys = true
_px_join_skew_handling = true
_px_join_skew_ratio = 10
_px_join_skew_minfreq = 30
CLI_internal_cursor = 0
_parallel_fault_tolerance_enabled = false
_parallel_fault_tolerance_threshold = 3
_px_partial_rollup_pushdown = adaptive
_px_single_server_enabled = true
_optimizer_dsdir_usage_control = 0
_px_cpu_autodop_enabled = true
_px_cpu_process_bandwidth = 200
_sql_hvshare_threshold = 0
_px_tq_rowhvs = true
_optimizer_use_gtt_session_stats = true
_optimizer_proc_rate_level = basic
_px_hybrid_TSM_HWMB_load = true
_optimizer_use_histograms = true
PMO_altidx_rebuild = 0
_cell_offload_expressions = true
_cell_materialize_virtual_columns = true
_cell_materialize_all_expressions = false
_rowsets_enabled = true
_rowsets_target_maxsize = 524288
_rowsets_max_rows = 256
_use_hidden_partitions = 0
_px_monitor_load = false
_px_load_monitor_threshold = 10000
_px_numa_support_enabled = false
total_processor_group_count = 1
_adaptive_window_consolidator_enabled = true
_optimizer_strans_adaptive_pruning = true
_bloom_rm_filter = false
_optimizer_null_accepting_semijoin = true
_long_varchar_allow_IOT = 0
_parallel_ctas_enabled = true
_cell_offload_complex_processing = true
_optimizer_performance_feedback = off
_optimizer_proc_rate_source = DEFAULT
_hashops_prefetch_size = 4
_cell_offload_sys_context = true
_multi_commit_global_index_maint = 0
_stat_aggs_one_pass_algorithm = false
_dbg_scan = 2048
_oltp_comp_dbg_scan = 0
_arch_comp_dbg_scan = 0
_optimizer_gather_feedback = true
_upddel_dba_hash_mask_bits = 0
_px_pwmr_enabled = true
_px_cdb_view_enabled = true
_bloom_sm_enabled = true
_optimizer_cluster_by_rowid = true
_optimizer_cluster_by_rowid_control = 129
_partition_cdb_view_enabled = true
_common_data_view_enabled = true
_pred_push_cdb_view_enabled = true
_rowsets_cdb_view_enabled = true
_distinct_agg_optimization_gsets = choose
_array_cdb_view_enabled = true
_optimizer_adaptive_plan_control = 0
_optimizer_adaptive_random_seed = 0
_optimizer_cbqt_or_expansion = on
_inmemory_dbg_scan = 0
_gby_vector_aggregation_enabled = true
_optimizer_vector_transformation = true
_optimizer_vector_fact_dim_ratio = 10
_key_vector_max_size = 0
_key_vector_predicate_enabled = true
_key_vector_predicate_threshold = 0
_key_vector_caching = false
_vector_operations_control = 0
_optimizer_vector_min_fact_rows = 10000000
parallel_dblink = 0
_px_scalable_invdist = true
_key_vector_offload = predicate
_optimizer_aggr_groupby_elim = true
_optimizer_reduce_groupby_key = true
_vector_serialize_temp_threshold = 1000
_always_vector_transformation = false
_optimizer_cluster_by_rowid_batched = true
_object_link_fixed_enabled = true
optimizer_inmemory_aware = true
_optimizer_inmemory_table_expansion = true
_optimizer_inmemory_gen_pushable_preds = true
_optimizer_inmemory_autodop = true
_optimizer_inmemory_access_path = true
_optimizer_inmemory_bloom_filter = true
_parallel_inmemory_min_time_threshold = 1
_parallel_inmemory_time_unit = 1
_rc_sys_obj_enabled = true
_optimizer_nlj_hj_adaptive_join = true
_indexable_con_id = true
_bloom_serial_filter = on
inmemory_force = default
inmemory_query = enable
_inmemory_query_scan = true
_inmemory_query_fetch_by_rowid = false
_inmemory_pruning = on
_px_autodop_pq_overhead = true
_px_external_table_default_stats = true
_optimizer_key_vector_aggr_factor = 75
_optimizer_vector_cost_adj = 100
_cdb_cross_container = 65535
_cdb_view_parallel_degree = 65535
_optimizer_hll_entry = 4096
_px_cdb_view_join_enabled = true
inmemory_size = 0
_external_table_smart_scan = hadoop_only
_optimizer_inmemory_minmax_pruning = true
_approx_cnt_distinct_gby_pushdown = choose
_approx_cnt_distinct_optimization = 0
_optimizer_ads_use_partial_results = true
_query_execution_time_limit = 0
_optimizer_inmemory_cluster_aware_dop = true
_optimizer_db_blocks_buffers = 0 KB
_query_rewrite_use_on_query_computation = true
_px_scalable_invdist_mcol = true
_optimizer_bushy_join = off
_optimizer_bushy_fact_dim_ratio = 20
_optimizer_bushy_fact_min_size = 100000
_optimizer_bushy_cost_factor = 100
_rmt_for_table_redef_enabled = true
_optimizer_eliminate_subquery = true
_sqlexec_cache_aware_hash_join_enabled = true
_zonemap_usage_tracking = true
_sqlexec_hash_based_distagg_enabled = false
_sqlexec_disable_hash_based_distagg_tiv = false
_sqlexec_hash_based_distagg_ssf_enabled = true
_sqlexec_distagg_optimization_settings = 0
approx_for_aggregation = false
approx_for_count_distinct = false
_optimizer_union_all_gsets = true
_rowsets_use_encoding = true
_rowsets_max_enc_rows = 64
_optimizer_enhanced_join_elimination = true
_optimizer_multicol_join_elimination = true
_key_vector_create_pushdown_threshold = 20000
_optimizer_enable_plsql_stats = true
_recursive_with_parallel = true
_recursive_with_branch_iterations = 7
_px_dist_agg_partial_rollup_pushdown = adaptive
_px_adaptive_dist_bypass_enabled = true
_enable_view_pdb = true
_optimizer_key_vector_pruning_enabled = true
_pwise_distinct_enabled = true
_recursive_with_using_temp_table = false
_partition_read_only = true
_sql_alias_scope = true
_cdb_view_no_skip_migrate = false
_approx_perc_sampling_err_rate = 2
_sqlexec_encoding_aware_hj_enabled = true
rim_node_exist = 0
_enable_containers_subquery = false
_force_containers_subquery = false
_cell_offload_vector_groupby = true
_vector_encoding_mode = manual
_ds_xt_split_count = 1
_ds_sampling_method = PROGRESSIVE
_optimizer_ads_use_spd_cache = true
_optimizer_use_table_scanrate = HADOOP_ONLY
_optimizer_use_xt_rowid = true
_xt_sampling_scan_granules = on
_recursive_with_control = 0
_sqlexec_use_rwo_aware_expr_analysis = true
_optimizer_band_join_aware = true
_optimizer_vector_base_dim_fact_factor = 200
approx_for_percentile = none
_approx_percentile_optimization = 0
_projection_pushdown = true
_px_object_sampling = 200
_px_reuse_server_group = true
_optimizer_adaptive_plans_continuous = false
_optimizer_adaptive_plans_iterative = false
_ds_enable_view_sampling = true
_optimizer_generate_ptf_implied_preds = true
_optimizer_inmemory_use_stored_stats = AUTO
_cdb_special_old_xplan = false
uniaud_internal_cursor = 0
_kd_dbg_control = 0
_mv_access_compute_fresh_data = on
_bloom_filter_ratio = 35
_optimizer_control_shard_qry_processing = 65534
containers_parallel_degree = 65535
sql_from_coordinator = 0
_xt_sampling_scan_granules_min_granules = 1
_in_memory_cdt = LIMITED
_in_memory_cdt_maxpx = 4
_px_partition_load_dist_threshold = 64
_px_adaptive_dist_bypass_optimization = 1
_optimizer_interleave_or_expansion = true
_bloom_use_crchash = BASIC
optimizer_adaptive_plans = true
optimizer_adaptive_statistics = false
_optimizer_use_feedback_for_join = false
_optimizer_ads_for_pq = false
_px_join_skewed_values_count = 0

***************************************
 PARAMETERS IN OPT_PARAM HINT
 ****************************
***************************************
Column Usage Monitoring is ON: tracking level = 21
***************************************

Considering Query Transformations on query block SEL$1 (#0)
**************************
Query transformations (QT)
**************************
JF: Checking validity of join factorization for query block SEL$1 (#0)
JF: Bypassed: not a UNION or UNION-ALL query block.
ST: not valid since star transformation parameter is FALSE
TE: Checking validity of table expansion for query block SEL$1 (#0)
TE: Bypassed: No partitioned table in query block.
ORE: Checking validity of OR Expansion for query block SEL$1 (#0)
ORE: Predicate chain before QB validity check - SEL$1
"ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'
ORE: Predicate chain after QB validity check - SEL$1
"ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'
ORE: bypassed - No valid predicate for OR expansion.
VT: Initial VT validity check for query block SEL$1 (#0)
VT: Bypassed: inmemory is disabled.
BJ: Checking validity for bushy join for query block SEL$1 (#0)
invalid because Not enabled by hint/parameter
BJ: Bypassed: Not enabled by hint/parameter.
CBQT bypassed for query block SEL$1 (#0): no complex view, sub-queries or UNION (ALL) queries.
CBQT: Validity checks failed for dpqv2vras9v7v.
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
OBYE: Considering Order-by Elimination from view SEL$1 (#0)
***************************
Order-by elimination (OBYE)
***************************
OBYE: OBYE bypassed: no order by to eliminate.
CVM: Considering view merge in query block SEL$1 (#0)
OJE: Begin: find best directive for query block SEL$1 (#0)
OJE: End: finding best directive for query block SEL$1 (#0)
query block SEL$1 (#0) unchanged
Considering Query Transformations on query block SEL$1 (#0)
**************************
Query transformations (QT)
**************************
JF: Checking validity of join factorization for query block SEL$1 (#0)
JF: Bypassed: not a UNION or UNION-ALL query block.
ST: not valid since star transformation parameter is FALSE
TE: Checking validity of table expansion for query block SEL$1 (#0)
TE: Bypassed: No partitioned table in query block.
ORE: Checking validity of OR Expansion for query block SEL$1 (#0)
ORE: Predicate chain before QB validity check - SEL$1
"ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'
ORE: Predicate chain after QB validity check - SEL$1
"ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'
ORE: bypassed - No valid predicate for OR expansion.
VT: Initial VT validity check for query block SEL$1 (#0)
VT: Bypassed: inmemory is disabled.
BJ: Checking validity for bushy join for query block SEL$1 (#0)
invalid because Not enabled by hint/parameter
BJ: Bypassed: Not enabled by hint/parameter.
CBQT bypassed for query block SEL$1 (#0): no complex view, sub-queries or UNION (ALL) queries.
CBQT: Validity checks failed for dpqv2vras9v7v.
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
AAT: Considering Approximate Aggregate Transformation on query block SEL$1 (#0) 
*******************************************
Approximate Aggregate Transformation (AAT) 
*******************************************
AAT: no exact aggregates transformed
SQE: Trying SQ elimination.
SU: Considering subquery unnesting in query block SEL$1 (#0)
********************
Subquery Unnest (SU)
********************
SJC: Considering set-join conversion in query block SEL$1 (#0)
*************************
Set-Join Conversion (SJC)
*************************
SJC: not performed
DCL: Checking validity of group-by elimination SEL$1 (#0)
DCL: Result of group-by elimination: Invalid
PM: Considering predicate move-around in query block SEL$1 (#0)
**************************
Predicate Move-Around (PM)
**************************
PM: PM bypassed: Outer query contains no views.
PM: PM bypassed: Outer query contains no views.
isReduceGrByValid: Group By Validation (Failed).
isReduceGrByValid: Group By Validation (Failed).
query block SEL$1 (#0) unchanged
FPD: Considering simple filter push in query block SEL$1 (#0)
"ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'
try to generate transitive predicate from check constraints for query block SEL$1 (#0)
finally: "ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'

apadrv-start sqlid=15770307225077476603
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
 :
 call(in-use=1472, alloc=16344), compile(in-use=69256, alloc=72416), execution(in-use=2936, alloc=4032)

*******************************************
Peeked values of the binds in SQL statement
*******************************************




=====================================
SPD: BEGIN context at statement level
=====================================
Stmt: ******* UNPARSED QUERY IS *******
SELECT "ORDS"."ORDID" "ORDID" FROM "U"."ORDS" "ORDS" WHERE "ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'
Objects referenced in the statement
 ORDS[ORDS] 93045, type = 1
Objects in the hash table
 Hash table Object 93045, type = 1, ownerid = 7329457324875310191:
 No Dynamic Sampling Directives for the object
Return code in qosdInitDirCtx: ENBLD
===================================
SPD: END context at statement level
===================================
Final query after transformations:******* UNPARSED QUERY IS *******
SELECT "ORDS"."ORDID" "ORDID" FROM "U"."ORDS" "ORDS" WHERE "ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'
kkoqbc: optimizing query block SEL$1 (#0)
 
 :
 call(in-use=1696, alloc=16344), compile(in-use=79144, alloc=80752), execution(in-use=2936, alloc=4032)

kkoqbc-subheap (create addr=0x7f286bfd1810)
****************
QUERY BLOCK TEXT
****************
select ordid from ords
where categoryid = 0
and status = 'COMPLETE'

---------------------
QUERY BLOCK SIGNATURE
---------------------
signature (optimizer): qb_name=SEL$1 nbfros=1 flg=0
 fro(0): flg=0 objn=93045 hint_alias="ORDS"@"SEL$1"

-----------------------------
SYSTEM STATISTICS INFORMATION
-----------------------------
Using dictionary system stats.
 Using NOWORKLOAD Stats
 CPUSPEEDNW: 3138 millions instructions/sec (default is 100)
 IOTFRSPEED: 4096 bytes per millisecond (default is 4096)
 IOSEEKTIM: 10 milliseconds (default is 10)
 MBRC: NO VALUE blocks (default is 8)

***************************************
BASE STATISTICAL INFORMATION
***********************
Table Stats::
 Table: ORDS Alias: ORDS
 #Rows: 10000 SSZ: 0 LGR: 0 #Blks: 35 AvgRowLen: 17.00 NEB: 0 ChainCnt: 0.00 ScanRate: 0.00 SPC: 0 RFL: 0 RNF: 0 CBK: 0 CHR: 0 KQDFLG: 1
 #IMCUs: 0 IMCRowCnt: 0 IMCJournalRowCnt: 0 #IMCBlocks: 0 IMCQuotient: 0.000000
Index Stats::
 Index: CATEGORY_IDX Col#: 2
 LVLS: 1 #LB: 21 #DK: 1000 LB/K: 1.00 DB/K: 10.00 CLUF: 10000.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
 Index: ORDS Col#: 1
 LVLS: 1 #LB: 20 #DK: 10000 LB/K: 1.00 DB/K: 1.00 CLUF: 31.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
 Index: STATUS_IDX Col#: 3
 LVLS: 1 #LB: 28 #DK: 2 LB/K: 14.00 DB/K: 16.00 CLUF: 32.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
try to generate single-table filter predicates from ORs for query block SEL$1 (#0)
finally: "ORDS"."CATEGORYID"=0 AND "ORDS"."STATUS"='COMPLETE'

=======================================
SPD: BEGIN context at query block level
=======================================
Query Block SEL$1 (#0)
Return code in qosdSetupDirCtx4QB: NOCTX
=====================================
SPD: END context at query block level
=====================================
Access path analysis for ORDS
***************************************
SINGLE TABLE ACCESS PATH 
 Single Table Cardinality Estimation for ORDS[ORDS] 
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = TABLE
 Column (#2): CATEGORYID(NUMBER)
 AvgLen: 4 NDV: 1000 Nulls: 0 Density: 0.001000 Min: 0.000000 Max: 999.000000
 Estimated selectivity: 0.001000 , col: #2 
 Column (#3): 
 NewDensity:0.000050, OldDensity:0.000050 BktCnt:10000.000000, PopBktCnt:9999.000000, PopValCnt:1, NDV:2
 Column (#3): STATUS(VARCHAR2)
 AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.000050
 Histogram: Freq #Bkts: 2 UncompBkts: 10000 EndPtVals: 2 ActualVal: no 
 Estimated selectivity: 0.999900 , endpoint value predicate, col: #3




kkecdn: Single Table Predicate:"ORDS"."CATEGORYID"=0
 Estimated selectivity: 0.001000 , col: #2

kkecdn: Single Table Predicate:"ORDS"."STATUS"='COMPLETE'
 Estimated selectivity: 0.999900 , endpoint value predicate, col: #3 
 Table: ORDS Alias: ORDS
 Card: Original: 10000.000000 Rounded: 10 Computed: 9.999000 Non Adjusted: 9.999000
 Scan IO Cost (Disk) = 11.000000
 Scan CPU Cost (Disk) = 2149250.400000
 Cost of predicates:
 io = NOCOST, cpu = 50.000000, sel = 0.001000 flag = 2048 ("ORDS"."CATEGORYID"=0)
 io = NOCOST, cpu = 50.000000, sel = 0.999900 flag = 2048 ("ORDS"."STATUS"='COMPLETE')
 Total Scan IO Cost = 11.000000 (scan (Disk))
 + 0.000000 (io filter eval) (= 0.000000 (per row) * 10000.000000 (#rows))
 = 11.000000
 Total Scan CPU Cost = 2149250.400000 (scan (Disk))
 + 500500.000000 (cpu filter eval) (= 50.050000 (per row) * 10000.000000 (#rows))
 = 2649750.400000
 Access Path: TableScan
 Cost: 11.070374 Resp: 11.070374 Degree: 0
 Cost_io: 11.000000 Cost_cpu: 2649750
 Resp_io: 11.000000 Resp_cpu: 2649750
 ****** Costing Index CATEGORY_IDX
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_SCAN
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_FILTER
 Estimated selectivity: 0.001000 , col: #2 
 Access Path: index (AllEqRange)
 Index: CATEGORY_IDX
 resc_io: 11.000000 resc_cpu: 83586
 ix_sel: 0.001000 ix_sel_with_filters: 0.001000 
 Cost: 11.002220 Resp: 11.002220 Degree: 1
 ****** Costing Index STATUS_IDX
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_SCAN
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_FILTER
 Estimated selectivity: 0.999900 , endpoint value predicate, col: #3 
 Access Path: index (AllEqRange)
 Index: STATUS_IDX
 resc_io: 60.000000 resc_cpu: 4827696
 ix_sel: 0.999900 ix_sel_with_filters: 0.999900 
 Cost: 60.128217 Resp: 60.128217 Degree: 1
 ****** trying bitmap/domain indexes ******
 Estimated selectivity: 0.001000 , col: #2 
 ****** Costing Index CATEGORY_IDX
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_SCAN
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_FILTER
 Estimated selectivity: 0.001000 , col: #2 
 Access Path: index (AllEqRange)
 Index: CATEGORY_IDX
 resc_io: 1.000000 resc_cpu: 9971
 ix_sel: 0.001000 ix_sel_with_filters: 0.001000 
 Cost: 1.000265 Resp: 1.000265 Degree: 0
 Estimated selectivity: 0.999900 , endpoint value predicate, col: #3 
 ****** Costing Index STATUS_IDX
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_SCAN
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_FILTER
 Estimated selectivity: 0.999900 , endpoint value predicate, col: #3 
 Access Path: index (AllEqRange)
 Index: STATUS_IDX
 resc_io: 28.000000 resc_cpu: 2200050
 ix_sel: 0.999900 ix_sel_with_filters: 0.999900 
 Cost: 28.058430 Resp: 28.058430 Degree: 0
 Bitmap nodes:
 Used CATEGORY_IDX
 Cost = 1.000301, sel = 0.001000
 Not used STATUS_IDX
 Cost = 28.094281, sel = 0.999900
 ****** finished trying bitmap/domain indexes ******
******** Begin index join costing ********
 ****** Costing Index ORDS
 Access Path: index (FullScan)
 Index: ORDS
 resc_io: 21.000000 resc_cpu: 2149550
 ix_sel: 1.000000 ix_sel_with_filters: 1.000000 
 Cost: 21.057089 Resp: 21.057089 Degree: 0

******** Cost index join ********

Index join: Joining index CATEGORY_IDX
Index join: Joining index STATUS_IDX
Ix HA Join
 Outer table: ORDS Alias: ORDS
 resc: 1.000265 card 10.000000 bytes: deg: 1 resp: 1.000265
 Inner table: <unnamed> Alias: 
 resc: 28.058430 card: 9999.000000 bytes: deg: 1 resp: 28.058430
 using dmeth: 2 #groups: 1
 Cost per ptn: 0.042531 #ptns: 1
 hash_area: 256 (max=41035) buildfrag: 1 probefrag: 38 ppasses: 1
 Hash join: Resc: 29.101226 Resp: 29.101226 [multiMatchCost=0.000000]
Index join: Joining index ORDS
Ix HA Join
 Outer table: ORDS Alias: ORDS
 resc: 1.000265 card 9.999000 bytes: deg: 1 resp: 1.000265
 Inner table: <unnamed> Alias: 
 resc: 21.057089 card: 10000.000000 bytes: deg: 1 resp: 21.057089
 using dmeth: 2 #groups: 1
 Cost per ptn: 0.042534 #ptns: 1
 hash_area: 256 (max=41035) buildfrag: 1 probefrag: 32 ppasses: 1
 Hash join: Resc: 22.099888 Resp: 22.099888 [multiMatchCost=0.000000]

******** Index join cost ********

Cost: 51.201114 
******** End index join costing ********
 Best:: AccessPath: IndexRange
 Index: CATEGORY_IDX
 Cost: 11.002220 Degree: 1 Resp: 11.002220 Card: 9.999000 Bytes: 0.000000

***************************************




OPTIMIZER STATISTICS AND COMPUTATIONS
PJE: Bypassed; QB has a single table SEL$1 (#0)
***************************************
GENERAL PLANS
***************************************
Considering cardinality-based initial join order.
Permutations for Starting Table :0
Join order[1]: ORDS[ORDS]#0
***********************
Best so far: Table#: 0 cost: 11.002220 card: 9.999000 bytes: 170.000000
***********************
(newjo-stop-1) k:0, spcnt:0, perm:1, maxperm:2000

*********************************
Number of join permutations tried: 1
*********************************
Enumerating distribution method (advanced)

LORE: Trying or-Expansion on query block SEL$1 (#0)
Transfer Optimizer annotations for query block SEL$1 (#0)
AP: Checking validity for query block SEL$1, sqlid=dpqv2vras9v7v
AutoDOP: Consider caching for ORDS[ORDS](obj#-1) 
cost:11.002220 blkSize:8192 objSize:35.00 marObjSize:33.25 bufSize:469047.00 affPercent:80 smallTab:YES affinitized:NO
kkecComputeAPDop: IO Dop: 0.000000 - CPU Dop: 0.000000
Replication not feasible for first input in join order
id=0 frofkks[i] (index start key) predicate="ORDS"."CATEGORYID"=0
id=0 frofkke[i] (index stop key) predicate="ORDS"."CATEGORYID"=0
id=0 frofand predicate="ORDS"."STATUS"='COMPLETE'
Transfer optimizer annotations for ORDS[ORDS]
Final cost for query block SEL$1 (#0) - All Rows Plan:
 Best join order: 1
 Cost: 11.002220 Degree: 1 Card: 10.000000 Bytes: 170.000000
 Resc: 11.002220 Resc_io: 11.000000 Resc_cpu: 83586
 Resp: 11.002220 Resp_io: 11.000000 Resc_cpu: 83586
kkoqbc-subheap (delete addr=0x7f286bfd1810, in-use=42200, alloc=49272)
kkoqbc-end:
 :
 call(in-use=9856, alloc=65760), compile(in-use=95696, alloc=99072), execution(in-use=2936, alloc=4032)

kkoqbc: finish optimizing query block SEL$1 (#0)
CBRID: ORDS @ SEL$1 - no blocking operation found
apadrv-end
 :
 call(in-use=9856, alloc=65760), compile(in-use=96704, alloc=99072), execution(in-use=2936, alloc=4032)




SPD: Generating finding id: type = 1, reason = 1, objcnt = 1, obItr = 0, objid = 93045, objtyp = 1, vecsize = 3, colvec = [2, ], fid = 11333809974545767572
 SPD: Modified felem, fid=11333809974545767572, ftype = 1, freason = 1, dtype = 0, dstate = 0, dflag = 0, ver = NO, keep = NO
CBRID: ORDS @ SEL$1 TableLookup allocation - Failure - bug-fix control

SPD: Generating finding id: type = 1, reason = 1, objcnt = 1, obItr = 0, objid = 93045, objtyp = 1, vecsize = 4, colvec = [2, 3, ], fid = 2757520453804995358
 SPD: Modified felem, fid=2757520453804995358, ftype = 1, freason = 1, dtype = 0, dstate = 0, dflag = 0, ver = NO, keep = NO
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
Starting SQL statement dump

user_id=114 user_name=U module=SQL*Plus action=
sql_id=dpqv2vras9v7v plan_hash_value=-291126309 problem_type=3
----- Current SQL Statement for this session (sql_id=dpqv2vras9v7v) -----
select ordid from ords
where categoryid = 0
and status = 'COMPLETE'
sql_text_length=69
sql=select ordid from ords
where categoryid = 0
and status = 'COMPLETE'

----- Explain Plan Dump -----
----- Plan Table -----
 
============
Plan Table
============
-----------------------------------------------------------+-----------------------------------+
| Id | Operation | Name | Rows | Bytes | Cost | Time |
-----------------------------------------------------------+-----------------------------------+
| 0 | SELECT STATEMENT | | | | 11 | |
| 1 | TABLE ACCESS BY INDEX ROWID BATCHED | ORDS | 10 | 170 | 11 | 00:00:01 |
| 2 | INDEX RANGE SCAN | CATEGORY_IDX| 10 | | 1 | 00:00:01 |
-----------------------------------------------------------+-----------------------------------+
Query Block Name / Object Alias(identified by operation id):
------------------------------------------------------------
 1 - SEL$1 / ORDS@SEL$1
 2 - SEL$1 / ORDS@SEL$1
------------------------------------------------------------
Predicate Information:
----------------------
1 - filter("STATUS"='COMPLETE')
2 - access("CATEGORYID"=0)
 
Content of other_xml column
===========================
 db_version : 12.2.0.1
 parse_schema : U
 plan_hash_full : 2811093575
 plan_hash : 4003840987
 plan_hash_2 : 2811093575
 Outline Data:
 /*+
 BEGIN_OUTLINE_DATA
 IGNORE_OPTIM_EMBEDDED_HINTS
 OPTIMIZER_FEATURES_ENABLE('12.2.0.1')
 DB_VERSION('12.2.0.1')
 ALL_ROWS
 OUTLINE_LEAF(@"SEL$1")
 INDEX_RS_ASC(@"SEL$1" "ORDS"@"SEL$1" ("ORDS"."CATEGORYID"))
 BATCH_TABLE_ACCESS_BY_ROWID(@"SEL$1" "ORDS"@"SEL$1")
 END_OUTLINE_DATA
 */
 
Optimizer state dump:
Compilation Environment Dump
optimizer_mode_hinted = false
optimizer_features_hinted = 0.0.0
parallel_execution_enabled = true
parallel_query_forced_dop = 0
parallel_dml_forced_dop = 0
parallel_ddl_forced_degree = 0
parallel_ddl_forced_instances = 0
_query_rewrite_fudge = 90
optimizer_features_enable = 12.2.0.1
_optimizer_search_limit = 5
cpu_count = 1
active_instance_count = 1
parallel_threads_per_cpu = 2
hash_area_size = 131072
bitmap_merge_area_size = 1048576
sort_area_size = 65536
sort_area_retained_size = 0
_sort_elimination_cost_ratio = 0
_optimizer_block_size = 8192
_sort_multiblock_read_count = 2
_hash_multiblock_io_count = 0
_db_file_optimizer_read_count = 8
_optimizer_max_permutations = 2000
pga_aggregate_target = 1641472 KB
_pga_max_size = 328280 KB
_query_rewrite_maxdisjunct = 257
_smm_auto_min_io_size = 56 KB
_smm_auto_max_io_size = 248 KB
_smm_min_size = 1024 KB
_smm_max_size_static = 164140 KB
_smm_px_max_size_static = 820736 KB
_cpu_to_io = 0
_optimizer_undo_cost_change = 12.2.0.1
parallel_query_mode = enabled
parallel_dml_mode = disabled
parallel_ddl_mode = enabled
optimizer_mode = all_rows
sqlstat_enabled = false
_optimizer_percent_parallel = 101
_always_anti_join = choose
_always_semi_join = choose
_optimizer_mode_force = true
_partition_view_enabled = true
_always_star_transformation = false
_query_rewrite_or_error = false
_hash_join_enabled = true
cursor_sharing = exact
_b_tree_bitmap_plans = true
star_transformation_enabled = false
_optimizer_cost_model = choose
_new_sort_cost_estimate = true
_complex_view_merging = true
_unnest_subquery = true
_eliminate_common_subexpr = true
_pred_move_around = true
_convert_set_to_join = false
_push_join_predicate = true
_push_join_union_view = true
_fast_full_scan_enabled = true
_optim_enhance_nnull_detection = true
_parallel_broadcast_enabled = true
_px_broadcast_fudge_factor = 100
_ordered_nested_loop = true
_no_or_expansion = false
optimizer_index_cost_adj = 100
optimizer_index_caching = 0
_system_index_caching = 0
_disable_datalayer_sampling = false
query_rewrite_enabled = true
query_rewrite_integrity = enforced
_query_cost_rewrite = true
_query_rewrite_2 = true
_query_rewrite_1 = true
_query_rewrite_expression = true
_query_rewrite_jgmigrate = true
_query_rewrite_fpc = true
_query_rewrite_drj = false
_full_pwise_join_enabled = true
_partial_pwise_join_enabled = true
_left_nested_loops_random = true
_improved_row_length_enabled = true
_index_join_enabled = true
_enable_type_dep_selectivity = true
_improved_outerjoin_card = true
_optimizer_adjust_for_nulls = true
_optimizer_degree = 0
_use_column_stats_for_function = true
_subquery_pruning_enabled = true
_subquery_pruning_mv_enabled = false
_or_expand_nvl_predicate = true
_like_with_bind_as_equality = false
_table_scan_cost_plus_one = true
_cost_equality_semi_join = true
_default_non_equality_sel_check = true
_new_initial_join_orders = true
_oneside_colstat_for_equijoins = true
_optim_peek_user_binds = true
_minimal_stats_aggregation = true
_force_temptables_for_gsets = false
workarea_size_policy = auto
_smm_auto_cost_enabled = true
_gs_anti_semi_join_allowed = true
_optim_new_default_join_sel = true
optimizer_dynamic_sampling = 2
_pre_rewrite_push_pred = true
_optimizer_new_join_card_computation = true
_union_rewrite_for_gs = yes_gset_mvs
_generalized_pruning_enabled = true
_optim_adjust_for_part_skews = true
_force_datefold_trunc = false
statistics_level = typical
_optimizer_system_stats_usage = true
skip_unusable_indexes = true
_remove_aggr_subquery = true
_optimizer_push_down_distinct = 0
_dml_monitoring_enabled = true
_optimizer_undo_changes = false
_predicate_elimination_enabled = true
_nested_loop_fudge = 100
_project_view_columns = true
_local_communication_costing_enabled = true
_local_communication_ratio = 50
_query_rewrite_vop_cleanup = true
_slave_mapping_enabled = true
_optimizer_cost_based_transformation = linear
_optimizer_mjc_enabled = true
_right_outer_hash_enable = true
_spr_push_pred_refspr = true
_optimizer_cache_stats = false
_optimizer_cbqt_factor = 50
_optimizer_squ_bottomup = true
_fic_area_size = 131072
_optimizer_skip_scan_enabled = true
_optimizer_cost_filter_pred = false
_optimizer_sortmerge_join_enabled = true
_optimizer_join_sel_sanity_check = true
_mmv_query_rewrite_enabled = true
_bt_mmv_query_rewrite_enabled = true
_add_stale_mv_to_dependency_list = true
_distinct_view_unnesting = false
_optimizer_dim_subq_join_sel = true
_optimizer_disable_strans_sanity_checks = 0
_optimizer_compute_index_stats = true
_push_join_union_view2 = true
_optimizer_ignore_hints = false
_optimizer_random_plan = 0
_query_rewrite_setopgrw_enable = true
_optimizer_correct_sq_selectivity = true
_disable_function_based_index = false
_optimizer_join_order_control = 3
_optimizer_cartesian_enabled = true
_optimizer_starplan_enabled = true
_extended_pruning_enabled = true
_optimizer_push_pred_cost_based = true
_optimizer_null_aware_antijoin = true
_optimizer_extend_jppd_view_types = true
_sql_model_unfold_forloops = run_time
_enable_dml_lock_escalation = false
_bloom_filter_enabled = true
_update_bji_ipdml_enabled = 0
_optimizer_extended_cursor_sharing = udo
_dm_max_shared_pool_pct = 1
_optimizer_cost_hjsmj_multimatch = true
_optimizer_transitivity_retain = true
_px_pwg_enabled = true
optimizer_secure_view_merging = true
_optimizer_join_elimination_enabled = true
flashback_table_rpi = non_fbt
_optimizer_cbqt_no_size_restriction = true
_optimizer_enhanced_filter_push = true
_optimizer_filter_pred_pullup = true
_rowsrc_trace_level = 0
_simple_view_merging = true
_optimizer_rownum_pred_based_fkr = true
_optimizer_better_inlist_costing = all
_optimizer_self_induced_cache_cost = false
_optimizer_min_cache_blocks = 10
_optimizer_or_expansion = depth
_optimizer_order_by_elimination_enabled = true
_optimizer_outer_to_anti_enabled = true
_selfjoin_mv_duplicates = true
_dimension_skip_null = true
_force_rewrite_enable = false
_optimizer_star_tran_in_with_clause = true
_optimizer_complex_pred_selectivity = true
_optimizer_connect_by_cost_based = true
_gby_hash_aggregation_enabled = true
_globalindex_pnum_filter_enabled = true
_px_minus_intersect = true
_fix_control_key = 0
_force_slave_mapping_intra_part_loads = false
_force_tmp_segment_loads = false
_query_mmvrewrite_maxpreds = 10
_query_mmvrewrite_maxintervals = 5
_query_mmvrewrite_maxinlists = 5
_query_mmvrewrite_maxdmaps = 10
_query_mmvrewrite_maxcmaps = 20
_query_mmvrewrite_maxregperm = 512
_query_mmvrewrite_maxqryinlistvals = 500
_disable_parallel_conventional_load = false
_trace_virtual_columns = false
_replace_virtual_columns = true
_virtual_column_overload_allowed = true
_kdt_buffering = true
_first_k_rows_dynamic_proration = true
_optimizer_sortmerge_join_inequality = true
_optimizer_aw_stats_enabled = true
_bloom_pruning_enabled = true
result_cache_mode = MANUAL
_px_ual_serial_input = true
_optimizer_skip_scan_guess = false
_enable_row_shipping = true
_row_shipping_threshold = 100
_row_shipping_explain = false
transaction_isolation_level = read_commited
_optimizer_distinct_elimination = true
_optimizer_multi_level_push_pred = true
_optimizer_group_by_placement = true
_optimizer_rownum_bind_default = 10
_enable_query_rewrite_on_remote_objs = true
_optimizer_extended_cursor_sharing_rel = simple
_optimizer_adaptive_cursor_sharing = true
_direct_path_insert_features = 0
_optimizer_improve_selectivity = true
optimizer_use_pending_statistics = false
_optimizer_enable_density_improvements = true
_optimizer_aw_join_push_enabled = true
_optimizer_connect_by_combine_sw = true
_enable_pmo_ctas = 0
_optimizer_native_full_outer_join = force
_bloom_predicate_enabled = true
_optimizer_enable_extended_stats = true
_is_lock_table_for_ddl_wait_lock = 0
_pivot_implementation_method = choose
optimizer_capture_sql_plan_baselines = false
optimizer_use_sql_plan_baselines = true
_optimizer_star_trans_min_cost = 0
_optimizer_star_trans_min_ratio = 0
_with_subquery = OPTIMIZER
_optimizer_fkr_index_cost_bias = 10
_optimizer_use_subheap = true
parallel_degree_policy = manual
parallel_degree = 0
parallel_min_time_threshold = 10
_parallel_time_unit = 10
_optimizer_or_expansion_subheap = true
_optimizer_free_transformation_heap = true
_optimizer_reuse_cost_annotations = true
_result_cache_auto_size_threshold = 100
_result_cache_auto_time_threshold = 1000
_optimizer_nested_rollup_for_gset = 100
_nlj_batching_enabled = 1
parallel_query_default_dop = 0
is_recur_flags = 0
optimizer_use_invisible_indexes = false
flashback_data_archive_internal_cursor = 0
_optimizer_extended_stats_usage_control = 192
_parallel_syspls_obey_force = true
cell_offload_processing = true
_rdbms_internal_fplib_enabled = false
db_file_multiblock_read_count = 128
_bloom_folding_enabled = true
_mv_generalized_oj_refresh_opt = true
cell_offload_compaction = ADAPTIVE
cell_offload_plan_display = AUTO
_bloom_predicate_offload = true
_bloom_filter_size = 0
_bloom_pushing_max = 512
parallel_degree_limit = 65535
parallel_force_local = false
parallel_max_degree = 2
total_cpu_count = 1
_optimizer_coalesce_subqueries = true
_optimizer_fast_pred_transitivity = true
_optimizer_fast_access_pred_analysis = true
_optimizer_unnest_disjunctive_subq = true
_optimizer_unnest_corr_set_subq = true
_optimizer_distinct_agg_transform = true
_aggregation_optimization_settings = 0
_optimizer_connect_by_elim_dups = true
_optimizer_eliminate_filtering_join = true
_connect_by_use_union_all = true
dst_upgrade_insert_conv = true
advanced_queuing_internal_cursor = 0
_optimizer_unnest_all_subqueries = true
parallel_autodop = 0
parallel_ddldml = 0
_parallel_cluster_cache_policy = adaptive
_parallel_scalability = 50
iot_internal_cursor = 0
_optimizer_instance_count = 0
_optimizer_connect_by_cb_whr_only = false
_suppress_scn_chk_for_cqn = nosuppress_1466
_optimizer_join_factorization = true
_optimizer_use_cbqt_star_transformation = true
_optimizer_table_expansion = true
_and_pruning_enabled = true
_deferred_constant_folding_mode = DEFAULT
_optimizer_distinct_placement = true
partition_pruning_internal_cursor = 0
parallel_hinted = none
_sql_compatibility = 0
_optimizer_use_feedback = true
_optimizer_try_st_before_jppd = true
_dml_frequency_tracking = false
_optimizer_interleave_jppd = true
kkb_drop_empty_segments = 0
_px_partition_scan_enabled = true
_px_partition_scan_threshold = 64
_optimizer_false_filter_pred_pullup = true
_bloom_minmax_enabled = true
only_move_row = 0
_optimizer_enable_table_lookup_by_nl = true
parallel_execution_message_size = 16384
_px_loc_msg_cost = 1000
_px_net_msg_cost = 10000
_optimizer_generate_transitive_pred = true
_optimizer_cube_join_enabled = true
_optimizer_filter_pushdown = true
deferred_segment_creation = true
_optimizer_outer_join_to_inner = true
_allow_level_without_connect_by = false
_max_rwgs_groupings = 8192
_optimizer_hybrid_fpwj_enabled = true
_px_replication_enabled = true
ilm_filter = 0
_optimizer_partial_join_eval = true
_px_concurrent = true
_px_object_sampling_enabled = true
_px_back_to_parallel = OFF
_optimizer_unnest_scalar_sq = true
_optimizer_full_outer_join_to_outer = true
_px_filter_parallelized = true
_px_filter_skew_handling = true
_zonemap_use_enabled = true
_zonemap_control = 0
_optimizer_multi_table_outerjoin = true
_px_groupby_pushdown = force
_partition_advisor_srs_active = true
_optimizer_ansi_join_lateral_enhance = true
_px_parallelize_expression = true
_fast_index_maintenance = true
_optimizer_ansi_rearchitecture = true
_optimizer_gather_stats_on_load = true
ilm_access_tracking = 0
ilm_dml_timestamp = 0
_px_adaptive_dist_method = choose
_px_adaptive_dist_method_threshold = 0
_optimizer_batch_table_access_by_rowid = true
optimizer_adaptive_reporting_only = false
_optimizer_ads_max_table_count = 0
_optimizer_ads_time_limit = 0
_optimizer_ads_use_result_cache = true
_px_wif_dfo_declumping = choose
_px_wif_extend_distribution_keys = true
_px_join_skew_handling = true
_px_join_skew_ratio = 10
_px_join_skew_minfreq = 30
CLI_internal_cursor = 0
_parallel_fault_tolerance_enabled = false
_parallel_fault_tolerance_threshold = 3
_px_partial_rollup_pushdown = adaptive
_px_single_server_enabled = true
_optimizer_dsdir_usage_control = 0
_px_cpu_autodop_enabled = true
_px_cpu_process_bandwidth = 200
_sql_hvshare_threshold = 0
_px_tq_rowhvs = true
_optimizer_use_gtt_session_stats = true
_optimizer_proc_rate_level = basic
_px_hybrid_TSM_HWMB_load = true
_optimizer_use_histograms = true
PMO_altidx_rebuild = 0
_cell_offload_expressions = true
_cell_materialize_virtual_columns = true
_cell_materialize_all_expressions = false
_rowsets_enabled = true
_rowsets_target_maxsize = 524288
_rowsets_max_rows = 256
_use_hidden_partitions = 0
_px_monitor_load = false
_px_load_monitor_threshold = 10000
_px_numa_support_enabled = false
total_processor_group_count = 1
_adaptive_window_consolidator_enabled = true
_optimizer_strans_adaptive_pruning = true
_bloom_rm_filter = false
_optimizer_null_accepting_semijoin = true
_long_varchar_allow_IOT = 0
_parallel_ctas_enabled = true
_cell_offload_complex_processing = true
_optimizer_performance_feedback = off
_optimizer_proc_rate_source = DEFAULT
_hashops_prefetch_size = 4
_cell_offload_sys_context = true
_multi_commit_global_index_maint = 0
_stat_aggs_one_pass_algorithm = false
_dbg_scan = 2048
_oltp_comp_dbg_scan = 0
_arch_comp_dbg_scan = 0
_optimizer_gather_feedback = true
_upddel_dba_hash_mask_bits = 0
_px_pwmr_enabled = true
_px_cdb_view_enabled = true
_bloom_sm_enabled = true
_optimizer_cluster_by_rowid = true
_optimizer_cluster_by_rowid_control = 129
_partition_cdb_view_enabled = true
_common_data_view_enabled = true
_pred_push_cdb_view_enabled = true
_rowsets_cdb_view_enabled = true
_distinct_agg_optimization_gsets = choose
_array_cdb_view_enabled = true
_optimizer_adaptive_plan_control = 0
_optimizer_adaptive_random_seed = 0
_optimizer_cbqt_or_expansion = on
_inmemory_dbg_scan = 0
_gby_vector_aggregation_enabled = true
_optimizer_vector_transformation = true
_optimizer_vector_fact_dim_ratio = 10
_key_vector_max_size = 0
_key_vector_predicate_enabled = true
_key_vector_predicate_threshold = 0
_key_vector_caching = false
_vector_operations_control = 0
_optimizer_vector_min_fact_rows = 10000000
parallel_dblink = 0
_px_scalable_invdist = true
_key_vector_offload = predicate
_optimizer_aggr_groupby_elim = true
_optimizer_reduce_groupby_key = true
_vector_serialize_temp_threshold = 1000
_always_vector_transformation = false
_optimizer_cluster_by_rowid_batched = true
_object_link_fixed_enabled = true
optimizer_inmemory_aware = true
_optimizer_inmemory_table_expansion = true
_optimizer_inmemory_gen_pushable_preds = true
_optimizer_inmemory_autodop = true
_optimizer_inmemory_access_path = true
_optimizer_inmemory_bloom_filter = true
_parallel_inmemory_min_time_threshold = 1
_parallel_inmemory_time_unit = 1
_rc_sys_obj_enabled = true
_optimizer_nlj_hj_adaptive_join = true
_indexable_con_id = true
_bloom_serial_filter = on
inmemory_force = default
inmemory_query = enable
_inmemory_query_scan = true
_inmemory_query_fetch_by_rowid = false
_inmemory_pruning = on
_px_autodop_pq_overhead = true
_px_external_table_default_stats = true
_optimizer_key_vector_aggr_factor = 75
_optimizer_vector_cost_adj = 100
_cdb_cross_container = 65535
_cdb_view_parallel_degree = 65535
_optimizer_hll_entry = 4096
_px_cdb_view_join_enabled = true
inmemory_size = 0
_external_table_smart_scan = hadoop_only
_optimizer_inmemory_minmax_pruning = true
_approx_cnt_distinct_gby_pushdown = choose
_approx_cnt_distinct_optimization = 0
_optimizer_ads_use_partial_results = true
_query_execution_time_limit = 0
_optimizer_inmemory_cluster_aware_dop = true
_optimizer_db_blocks_buffers = 0 KB
_query_rewrite_use_on_query_computation = true
_px_scalable_invdist_mcol = true
_optimizer_bushy_join = off
_optimizer_bushy_fact_dim_ratio = 20
_optimizer_bushy_fact_min_size = 100000
_optimizer_bushy_cost_factor = 100
_rmt_for_table_redef_enabled = true
_optimizer_eliminate_subquery = true
_sqlexec_cache_aware_hash_join_enabled = true
_zonemap_usage_tracking = true
_sqlexec_hash_based_distagg_enabled = false
_sqlexec_disable_hash_based_distagg_tiv = false
_sqlexec_hash_based_distagg_ssf_enabled = true
_sqlexec_distagg_optimization_settings = 0
approx_for_aggregation = false
approx_for_count_distinct = false
_optimizer_union_all_gsets = true
_rowsets_use_encoding = true
_rowsets_max_enc_rows = 64
_optimizer_enhanced_join_elimination = true
_optimizer_multicol_join_elimination = true
_key_vector_create_pushdown_threshold = 20000
_optimizer_enable_plsql_stats = true
_recursive_with_parallel = true
_recursive_with_branch_iterations = 7
_px_dist_agg_partial_rollup_pushdown = adaptive
_px_adaptive_dist_bypass_enabled = true
_enable_view_pdb = true
_optimizer_key_vector_pruning_enabled = true
_pwise_distinct_enabled = true
_recursive_with_using_temp_table = false
_partition_read_only = true
_sql_alias_scope = true
_cdb_view_no_skip_migrate = false
_approx_perc_sampling_err_rate = 2
_sqlexec_encoding_aware_hj_enabled = true
rim_node_exist = 0
_enable_containers_subquery = false
_force_containers_subquery = false
_cell_offload_vector_groupby = true
_vector_encoding_mode = manual
_ds_xt_split_count = 1
_ds_sampling_method = PROGRESSIVE
_optimizer_ads_use_spd_cache = true
_optimizer_use_table_scanrate = HADOOP_ONLY
_optimizer_use_xt_rowid = true
_xt_sampling_scan_granules = on
_recursive_with_control = 0
_sqlexec_use_rwo_aware_expr_analysis = true
_optimizer_band_join_aware = true
_optimizer_vector_base_dim_fact_factor = 200
approx_for_percentile = none
_approx_percentile_optimization = 0
_projection_pushdown = true
_px_object_sampling = 200
_px_reuse_server_group = true
_optimizer_adaptive_plans_continuous = false
_optimizer_adaptive_plans_iterative = false
_ds_enable_view_sampling = true
_optimizer_generate_ptf_implied_preds = true
_optimizer_inmemory_use_stored_stats = AUTO
_cdb_special_old_xplan = false
uniaud_internal_cursor = 0
_kd_dbg_control = 0
_mv_access_compute_fresh_data = on
_bloom_filter_ratio = 35
_optimizer_control_shard_qry_processing = 65534
containers_parallel_degree = 65535
sql_from_coordinator = 0
_xt_sampling_scan_granules_min_granules = 1
_in_memory_cdt = LIMITED
_in_memory_cdt_maxpx = 4
_px_partition_load_dist_threshold = 64
_px_adaptive_dist_bypass_optimization = 1
_optimizer_interleave_or_expansion = true
_bloom_use_crchash = BASIC
optimizer_adaptive_plans = true
optimizer_adaptive_statistics = false
_optimizer_use_feedback_for_join = false
_optimizer_ads_for_pq = false
_px_join_skewed_values_count = 0
Bug Fix Control Environment
 fix 3834770 = 1 
 fix 3746511 = enabled
 fix 4519016 = enabled
 fix 3118776 = enabled
 fix 4488689 = enabled
 fix 2194204 = disabled
 fix 2660592 = enabled
 fix 2320291 = enabled
 fix 2324795 = enabled
 fix 4308414 = enabled
 fix 3499674 = disabled
 fix 4569940 = enabled
 fix 4631959 = enabled
 fix 4519340 = enabled
 fix 4550003 = enabled
 fix 1403283 = enabled
 fix 4554846 = enabled
 fix 4602374 = enabled
 fix 4584065 = enabled
 fix 4545833 = enabled
 fix 4611850 = enabled
 fix 4663698 = enabled
 fix 4663804 = enabled
 fix 4666174 = enabled
 fix 4567767 = enabled
 fix 4556762 = 15 
 fix 4728348 = enabled
 fix 4708389 = enabled
 fix 4175830 = enabled
 fix 4752814 = enabled
 fix 4583239 = enabled
 fix 4386734 = enabled
 fix 4887636 = enabled
 fix 4483240 = enabled
 fix 4872602 = disabled
 fix 4711525 = enabled
 fix 4545802 = enabled
 fix 4605810 = enabled
 fix 4704779 = enabled
 fix 4900129 = enabled
 fix 4924149 = enabled
 fix 4663702 = enabled
 fix 4878299 = enabled
 fix 4658342 = enabled
 fix 4881533 = enabled
 fix 4676955 = enabled
 fix 4273361 = enabled
 fix 4967068 = enabled
 fix 4969880 = disabled
 fix 5005866 = enabled
 fix 5015557 = enabled
 fix 4705343 = enabled
 fix 4904838 = enabled
 fix 4716096 = enabled
 fix 4483286 = disabled
 fix 4722900 = enabled
 fix 4615392 = enabled
 fix 5096560 = enabled
 fix 5029464 = enabled
 fix 4134994 = enabled
 fix 4904890 = enabled
 fix 5104624 = enabled
 fix 5014836 = enabled
 fix 4768040 = enabled
 fix 4600710 = enabled
 fix 5129233 = enabled
 fix 4595987 = enabled
 fix 4908162 = enabled
 fix 5139520 = enabled
 fix 5084239 = enabled
 fix 5143477 = disabled
 fix 2663857 = enabled
 fix 4717546 = enabled
 fix 5240264 = disabled
 fix 5099909 = enabled
 fix 5240607 = enabled
 fix 5195882 = enabled
 fix 5220356 = enabled
 fix 5263572 = enabled
 fix 5385629 = enabled
 fix 5302124 = enabled
 fix 5391942 = enabled
 fix 5384335 = enabled
 fix 5482831 = enabled
 fix 4158812 = enabled
 fix 5387148 = enabled
 fix 5383891 = enabled
 fix 5466973 = enabled
 fix 5396162 = enabled
 fix 5394888 = enabled
 fix 5395291 = enabled
 fix 5236908 = enabled
 fix 5509293 = enabled
 fix 5449488 = enabled
 fix 5567933 = enabled
 fix 5570494 = enabled
 fix 5288623 = enabled
 fix 5505995 = enabled
 fix 5505157 = enabled
 fix 5112460 = enabled
 fix 5554865 = enabled
 fix 5112260 = enabled
 fix 5112352 = enabled
 fix 5547058 = enabled
 fix 5618040 = enabled
 fix 5585313 = enabled
 fix 5547895 = enabled
 fix 5634346 = enabled
 fix 5620485 = enabled
 fix 5483301 = enabled
 fix 5657044 = enabled
 fix 5694984 = enabled
 fix 5868490 = enabled
 fix 5650477 = enabled
 fix 5611962 = enabled
 fix 4279274 = enabled
 fix 5741121 = enabled
 fix 5714944 = enabled
 fix 5391505 = enabled
 fix 5762598 = enabled
 fix 5578791 = enabled
 fix 5259048 = enabled
 fix 5882954 = enabled
 fix 2492766 = enabled
 fix 5707608 = enabled
 fix 5891471 = enabled
 fix 5884780 = enabled
 fix 5680702 = enabled
 fix 5371452 = enabled
 fix 5838613 = enabled
 fix 5949981 = enabled
 fix 5624216 = enabled
 fix 5741044 = enabled
 fix 5976822 = enabled
 fix 6006457 = enabled
 fix 5872956 = enabled
 fix 5923644 = enabled
 fix 5943234 = enabled
 fix 5844495 = enabled
 fix 4168080 = enabled
 fix 6020579 = enabled
 fix 5842686 = disabled
 fix 5996801 = enabled
 fix 5593639 = enabled
 fix 6133948 = enabled
 fix 3151991 = enabled
 fix 6146906 = enabled
 fix 6239909 = enabled
 fix 6267621 = enabled
 fix 5909305 = enabled
 fix 6279918 = enabled
 fix 6141818 = enabled
 fix 6151963 = enabled
 fix 6251917 = enabled
 fix 6282093 = enabled
 fix 6119510 = enabled
 fix 6119382 = enabled
 fix 3801750 = enabled
 fix 5705630 = disabled
 fix 5944076 = enabled
 fix 5406763 = enabled
 fix 6070954 = enabled
 fix 6282944 = enabled
 fix 6138746 = enabled
 fix 6082745 = enabled
 fix 3426050 = enabled
 fix 599680 = enabled
 fix 6062266 = enabled
 fix 6087237 = enabled
 fix 6122894 = enabled
 fix 6377505 = enabled
 fix 5893768 = enabled
 fix 6163564 = enabled
 fix 6073325 = enabled
 fix 6188881 = enabled
 fix 6007259 = enabled
 fix 6239971 = enabled
 fix 5284200 = disabled
 fix 6042205 = enabled
 fix 6051211 = enabled
 fix 6434668 = enabled
 fix 6438752 = enabled
 fix 5936366 = enabled
 fix 6439032 = enabled
 fix 6438892 = enabled
 fix 6006300 = enabled
 fix 5947231 = enabled
 fix 5416118 = 1 
 fix 6365442 = 1 
 fix 6239039 = enabled
 fix 6502845 = enabled
 fix 6913094 = enabled
 fix 6029469 = enabled
 fix 5919513 = enabled
 fix 6057611 = enabled
 fix 6469667 = enabled
 fix 6608941 = disabled
 fix 6368066 = enabled
 fix 6329318 = enabled
 fix 6656356 = enabled
 fix 4507997 = enabled
 fix 6671155 = enabled
 fix 6694548 = enabled
 fix 6688200 = enabled
 fix 6612471 = enabled
 fix 6708183 = disabled
 fix 6326934 = enabled
 fix 6520717 = disabled
 fix 6714199 = enabled
 fix 6681545 = enabled
 fix 6748058 = enabled
 fix 6167716 = enabled
 fix 6674254 = enabled
 fix 6468287 = enabled
 fix 6503543 = enabled
 fix 6808773 = disabled
 fix 6766962 = enabled
 fix 6120483 = enabled
 fix 6670551 = enabled
 fix 6771838 = enabled
 fix 6626018 = disabled
 fix 6530596 = enabled
 fix 6778642 = enabled
 fix 6699059 = enabled
 fix 6376551 = enabled
 fix 6429113 = enabled
 fix 6782437 = enabled
 fix 6776808 = enabled
 fix 6765823 = enabled
 fix 6768660 = enabled
 fix 6782665 = enabled
 fix 6610822 = enabled
 fix 6514189 = enabled
 fix 6818410 = enabled
 fix 6827696 = enabled
 fix 6773613 = enabled
 fix 5902962 = enabled
 fix 6956212 = enabled
 fix 3056297 = enabled
 fix 6440977 = disabled
 fix 6972291 = disabled
 fix 6904146 = enabled
 fix 6221403 = enabled
 fix 5475051 = enabled
 fix 6845871 = enabled
 fix 5468809 = enabled
 fix 6917633 = enabled
 fix 4444536 = disabled
 fix 6955210 = enabled
 fix 6994194 = enabled
 fix 6399597 = disabled
 fix 6951776 = enabled
 fix 5648287 = 3 
 fix 6987082 = disabled
 fix 7132036 = enabled
 fix 6980350 = enabled
 fix 5199213 = enabled
 fix 7138405 = enabled
 fix 7148689 = enabled
 fix 6820988 = enabled
 fix 7032684 = enabled
 fix 6617866 = enabled
 fix 7155968 = enabled
 fix 7127980 = enabled
 fix 6982954 = enabled
 fix 7241819 = enabled
 fix 6897034 = enabled
 fix 7236148 = enabled
 fix 7298570 = enabled
 fix 7249095 = enabled
 fix 7314499 = enabled
 fix 7324224 = enabled
 fix 7289023 = enabled
 fix 7237571 = enabled
 fix 7116357 = enabled
 fix 7345484 = enabled
 fix 7375179 = enabled
 fix 6430500 = disabled
 fix 5897486 = enabled
 fix 6774209 = enabled
 fix 7306637 = enabled
 fix 6451322 = enabled
 fix 7208131 = enabled
 fix 7388652 = enabled
 fix 7127530 = enabled
 fix 6751206 = enabled
 fix 6669103 = enabled
 fix 7430474 = enabled
 fix 6990305 = enabled
 fix 7043307 = enabled
 fix 3120429 = enabled
 fix 7452823 = disabled
 fix 6838105 = enabled
 fix 6769711 = enabled
 fix 7170213 = enabled
 fix 6528872 = enabled
 fix 7295298 = enabled
 fix 5922070 = enabled
 fix 7259468 = enabled
 fix 6418552 = enabled
 fix 4619997 = enabled
 fix 7524366 = enabled
 fix 6942476 = enabled
 fix 6418771 = enabled
 fix 7375077 = enabled
 fix 5400639 = enabled
 fix 4570921 = enabled
 fix 7426911 = enabled
 fix 5099019 = disabled
 fix 7528216 = enabled
 fix 7521266 = enabled
 fix 7385140 = enabled
 fix 7576516 = enabled
 fix 7573526 = enabled
 fix 7576476 = enabled
 fix 7165898 = enabled
 fix 7263214 = enabled
 fix 3320140 = enabled
 fix 7555510 = enabled
 fix 7613118 = enabled
 fix 7597059 = enabled
 fix 7558911 = enabled
 fix 5520732 = enabled
 fix 7679490 = disabled
 fix 7449971 = enabled
 fix 3628118 = enabled
 fix 4370840 = enabled
 fix 7281191 = enabled
 fix 7519687 = enabled
 fix 5029592 = 3 
 fix 6012093 = 1 
 fix 6053861 = disabled
 fix 6941515 = disabled
 fix 7696414 = enabled
 fix 7272039 = enabled
 fix 7834811 = enabled
 fix 7640597 = enabled
 fix 7341616 = enabled
 fix 7168184 = enabled
 fix 399198 = enabled
 fix 7831070 = enabled
 fix 7676897 = disabled
 fix 7414637 = enabled
 fix 7585456 = enabled
 fix 8202421 = enabled
 fix 7658097 = disabled
 fix 8251486 = enabled
 fix 7132684 = enabled
 fix 7512227 = enabled
 fix 6972987 = enabled
 fix 7199035 = enabled
 fix 8243446 = enabled
 fix 7650462 = enabled
 fix 6720701 = enabled
 fix 7592673 = enabled
 fix 7718694 = enabled
 fix 7534027 = enabled
 fix 7708267 = enabled
 fix 5716785 = enabled
 fix 7356191 = enabled
 fix 7679161 = enabled
 fix 7597159 = enabled
 fix 7499258 = enabled
 fix 8328363 = enabled
 fix 7452863 = enabled
 fix 8284930 = enabled
 fix 7298626 = enabled
 fix 7657126 = enabled
 fix 8371884 = enabled
 fix 8318020 = enabled
 fix 8255423 = enabled
 fix 7135745 = enabled
 fix 8356253 = enabled
 fix 7534257 = enabled
 fix 8323407 = enabled
 fix 7539815 = enabled
 fix 8289316 = enabled
 fix 8447850 = enabled
 fix 7675944 = enabled
 fix 8355120 = enabled
 fix 7176746 = enabled
 fix 8442891 = enabled
 fix 8373261 = enabled
 fix 7679164 = enabled
 fix 7670533 = enabled
 fix 8408665 = enabled
 fix 8491399 = enabled
 fix 8348392 = enabled
 fix 8348585 = enabled
 fix 8335178 = enabled
 fix 8247017 = enabled
 fix 7325597 = enabled
 fix 8531490 = enabled
 fix 6163600 = enabled
 fix 8589278 = disabled
 fix 8557992 = enabled
 fix 7556098 = enabled
 fix 8580883 = enabled
 fix 5892599 = disabled
 fix 8609714 = enabled
 fix 8619631 = disabled
 fix 8672915 = enabled
 fix 8514561 = enabled
 fix 8213977 = enabled
 fix 8560951 = disabled
 fix 8578587 = enabled
 fix 8287870 = enabled
 fix 8467123 = enabled
 fix 8602185 = enabled
 fix 8519457 = enabled
 fix 3335182 = enabled
 fix 8602840 = enabled
 fix 8725296 = enabled
 fix 8628970 = enabled
 fix 6754080 = enabled
 fix 8767442 = enabled
 fix 8760135 = enabled
 fix 8644935 = enabled
 fix 8352378 = enabled
 fix 8685327 = enabled
 fix 8763472 = enabled
 fix 8773324 = enabled
 fix 8813674 = enabled
 fix 8532236 = enabled
 fix 8629716 = enabled
 fix 7277732 = enabled
 fix 8692170 = enabled
 fix 8900973 = enabled
 fix 8919133 = enabled
 fix 8927050 = enabled
 fix 8551880 = enabled
 fix 8901237 = enabled
 fix 8812372 = enabled
 fix 6236862 = enabled
 fix 8528517 = enabled
 fix 7215982 = enabled
 fix 8214022 = enabled
 fix 8595392 = enabled
 fix 8890233 = enabled
 fix 8999317 = enabled
 fix 9004800 = enabled
 fix 8986163 = enabled
 fix 8855396 = enabled
 fix 8800514 = 20 
 fix 9007859 = enabled
 fix 8198783 = disabled
 fix 9053879 = enabled
 fix 6086930 = enabled
 fix 7641601 = enabled
 fix 9052506 = enabled
 fix 9103775 = enabled
 fix 9047975 = enabled
 fix 8893626 = enabled
 fix 9111170 = enabled
 fix 8971829 = enabled
 fix 7628358 = enabled
 fix 9125151 = enabled
 fix 9039715 = enabled
 fix 9106224 = enabled
 fix 9185228 = enabled
 fix 9206747 = enabled
 fix 9088510 = enabled
 fix 9143856 = enabled
 fix 8833381 = enabled
 fix 8949971 = enabled
 fix 8951812 = enabled
 fix 9148171 = enabled
 fix 8706652 = enabled
 fix 9245114 = enabled
 fix 8802198 = enabled
 fix 9011016 = enabled
 fix 9265681 = enabled
 fix 7284269 = enabled
 fix 9272549 = enabled
 fix 8917507 = 7 
 fix 8531463 = enabled
 fix 9263333 = enabled
 fix 8675087 = enabled
 fix 8896955 = enabled
 fix 9041934 = enabled
 fix 9344709 = enabled
 fix 9024933 = enabled
 fix 9033718 = enabled
 fix 9240455 = enabled
 fix 9081848 = enabled
 fix 5982893 = enabled
 fix 9287401 = enabled
 fix 8590021 = enabled
 fix 9340120 = enabled
 fix 9355794 = enabled
 fix 9356656 = enabled
 fix 9385634 = enabled
 fix 9069046 = enabled
 fix 9239337 = enabled
 fix 9300228 = enabled
 fix 9298010 = enabled
 fix 9384170 = enabled
 fix 9407929 = enabled
 fix 8836806 = enabled
 fix 9344055 = enabled
 fix 9274675 = enabled
 fix 9203723 = enabled
 fix 9443476 = enabled
 fix 9195582 = enabled
 fix 8226666 = enabled
 fix 9433490 = enabled
 fix 9065494 = enabled
 fix 9303766 = enabled
 fix 9437283 = enabled
 fix 9116214 = enabled
 fix 9456688 = enabled
 fix 9456746 = disabled
 fix 9342979 = enabled
 fix 9465425 = enabled
 fix 9092442 = enabled
 fix 4926618 = enabled
 fix 8792846 = enabled
 fix 9474259 = enabled
 fix 9495669 = disabled
 fix 6472966 = enabled
 fix 6408301 = enabled
 fix 9380298 = disabled
 fix 8500130 = enabled
 fix 9584723 = enabled
 fix 9270951 = enabled
 fix 9508254 = enabled
 fix 9593680 = enabled
 fix 9196440 = disabled
 fix 9309281 = enabled
 fix 8693158 = enabled
 fix 9381638 = enabled
 fix 9383967 = enabled
 fix 7711900 = enabled
 fix 9218587 = enabled
 fix 9728438 = enabled
 fix 9038395 = enabled
 fix 9577300 = enabled
 fix 9171113 = enabled
 fix 8973745 = enabled
 fix 9732434 = enabled
 fix 8937971 = disabled
 fix 9102474 = enabled
 fix 9243499 = enabled
 fix 9791810 = enabled
 fix 9785632 = enabled
 fix 9898249 = enabled
 fix 9153459 = enabled
 fix 9680430 = enabled
 fix 9841679 = enabled
 fix 9912503 = enabled
 fix 9850461 = enabled
 fix 9762592 = 3 
 fix 9716877 = enabled
 fix 9814067 = enabled
 fix 9776736 = enabled
 fix 8349119 = enabled
 fix 9958518 = enabled
 fix 10041074 = enabled
 fix 10004943 = enabled
 fix 9980661 = enabled
 fix 9554026 = enabled
 fix 9593547 = enabled
 fix 9833381 = enabled
 fix 10043801 = enabled
 fix 9940732 = enabled
 fix 9702850 = enabled
 fix 9659125 = 0 
 fix 9668086 = enabled
 fix 9476520 = enabled
 fix 10158107 = enabled
 fix 10148457 = enabled
 fix 10106423 = enabled
 fix 9721439 = disabled
 fix 10162430 = enabled
 fix 10134677 = enabled
 fix 10182051 = 3 
 fix 10175079 = enabled
 fix 10026972 = enabled
 fix 10192889 = enabled
 fix 3566843 = enabled
 fix 9550277 = disabled
 fix 10236566 = enabled
 fix 10227392 = enabled
 fix 8961143 = enabled
 fix 9721228 = enabled
 fix 10080014 = enabled
 fix 10101489 = enabled
 fix 9929609 = enabled
 fix 10015652 = enabled
 fix 9918661 = enabled
 fix 10333395 = enabled
 fix 10336499 = disabled
 fix 10182672 = enabled
 fix 9578670 = enabled
 fix 10232225 = enabled
 fix 10330090 = enabled
 fix 10232623 = enabled
 fix 9630092 = disabled
 fix 10271790 = enabled
 fix 9227576 = enabled
 fix 10197666 = enabled
 fix 10376744 = enabled
 fix 8274946 = enabled
 fix 10046368 = enabled
 fix 9569678 = enabled
 fix 9002661 = enabled
 fix 10038373 = enabled
 fix 9477688 = enabled
 fix 10013899 = enabled
 fix 9832338 = enabled
 fix 10623119 = enabled
 fix 9898066 = enabled
 fix 11699884 = enabled
 fix 10640430 = enabled
 fix 10428450 = enabled
 fix 10117760 = enabled
 fix 11720178 = enabled
 fix 9881812 = enabled
 fix 10428278 = enabled
 fix 11741436 = enabled
 fix 11668189 = enabled
 fix 10359631 = enabled
 fix 9829887 = enabled
 fix 8275054 = enabled
 fix 11814428 = enabled
 fix 11676888 = disabled
 fix 10348427 = enabled
 fix 11843512 = enabled
 fix 11657468 = enabled
 fix 11877160 = enabled
 fix 11738631 = enabled
 fix 11744086 = enabled
 fix 11830663 = enabled
 fix 11853331 = enabled
 fix 9748015 = enabled
 fix 11834739 = enabled
 fix 6055658 = enabled
 fix 11740670 = enabled
 fix 11940126 = enabled
 fix 12315002 = enabled
 fix 8275023 = enabled
 fix 12352373 = enabled
 fix 12390139 = enabled
 fix 11935589 = enabled
 fix 10226906 = enabled
 fix 12327548 = enabled
 fix 12388221 = enabled
 fix 11892888 = enabled
 fix 11814265 = enabled
 fix 10230017 = enabled
 fix 12341619 = enabled
 fix 11744016 = enabled
 fix 10216738 = enabled
 fix 10298302 = enabled
 fix 12563419 = enabled
 fix 12399886 = enabled
 fix 12584007 = enabled
 fix 11881047 = enabled
 fix 12534597 = enabled
 fix 8683604 = enabled
 fix 12410972 = enabled
 fix 7147087 = enabled
 fix 11846314 = enabled
 fix 12535474 = enabled
 fix 12561635 = enabled
 fix 12432426 = enabled
 fix 9913117 = enabled
 fix 12432089 = enabled
 fix 12587690 = enabled
 fix 11858963 = enabled
 fix 12569245 = enabled
 fix 12569300 = enabled
 fix 7308975 = disabled
 fix 12569316 = enabled
 fix 12569321 = enabled
 fix 12335617 = enabled
 fix 9002958 = enabled
 fix 12591120 = enabled
 fix 11876260 = enabled
 fix 12313574 = enabled
 fix 12569713 = enabled
 fix 12348584 = enabled
 fix 10420220 = enabled
 fix 12559453 = enabled
 fix 12727549 = enabled
 fix 12728203 = enabled
 fix 12828479 = enabled
 fix 10181153 = enabled
 fix 9971371 = disabled
 fix 12864791 = enabled
 fix 12810427 = enabled
 fix 12605402 = enabled
 fix 12861609 = enabled
 fix 12915337 = enabled
 fix 12942119 = enabled
 fix 12622441 = enabled
 fix 11072246 = enabled
 fix 12739252 = enabled
 fix 12953765 = enabled
 fix 12905116 = enabled
 fix 12978495 = enabled
 fix 9633142 = disabled
 fix 3639130 = enabled
 fix 12827166 = enabled
 fix 12944193 = enabled
 fix 13020272 = enabled
 fix 12673320 = enabled
 fix 12975771 = enabled
 fix 12882092 = enabled
 fix 12379334 = enabled
 fix 12723414 = enabled
 fix 9488694 = disabled
 fix 13255388 = 10 
 fix 11727871 = enabled
 fix 13110511 = enabled
 fix 13075297 = enabled
 fix 13345888 = enabled
 fix 11657903 = disabled
 fix 13396096 = enabled
 fix 12591379 = enabled
 fix 13398214 = enabled
 fix 13382280 = enabled
 fix 12869367 = enabled
 fix 12999577 = enabled
 fix 12433153 = enabled
 fix 9094254 = enabled
 fix 13104618 = enabled
 fix 13524237 = enabled
 fix 11813257 = enabled
 fix 13489017 = enabled
 fix 12954320 = enabled
 fix 13555551 = enabled
 fix 13499154 = enabled
 fix 13036910 = enabled
 fix 13545925 = enabled
 fix 13545956 = enabled
 fix 13545989 = enabled
 fix 12839247 = enabled
 fix 9858777 = enabled
 fix 13568366 = enabled
 fix 13393357 = enabled
 fix 13040171 = enabled
 fix 13406619 = enabled
 fix 13594757 = enabled
 fix 13543207 = enabled
 fix 13594712 = enabled
 fix 12648629 = enabled
 fix 13549808 = enabled
 fix 13634700 = enabled
 fix 8792821 = enabled
 fix 13454409 = enabled
 fix 13146487 = enabled
 fix 13592248 = enabled
 fix 11689541 = enabled
 fix 13527374 = enabled
 fix 13430622 = enabled
 fix 13704562 = enabled
 fix 9547706 = enabled
 fix 13497184 = enabled
 fix 13704977 = enabled
 fix 13734456 = enabled
 fix 13070532 = enabled
 fix 6520878 = enabled
 fix 2273284 = enabled
 fix 13786127 = enabled
 fix 13065064 = enabled
 fix 13972896 = enabled
 fix 11843466 = enabled
 fix 13777823 = enabled
 fix 13616573 = enabled
 fix 13831671 = enabled
 fix 13652216 = enabled
 fix 13912192 = enabled
 fix 13909909 = enabled
 fix 13849486 = enabled
 fix 13321547 = enabled
 fix 13886606 = disabled
 fix 14013502 = enabled
 fix 13850256 = enabled
 fix 13929275 = enabled
 fix 11732303 = enabled
 fix 13906168 = enabled
 fix 14055128 = enabled
 fix 12856200 = enabled
 fix 14008590 = enabled
 fix 13627489 = disabled
 fix 13961105 = enabled
 fix 13583722 = enabled
 fix 13076238 = enabled
 fix 13936229 = enabled
 fix 9852856 = enabled
 fix 3904125 = enabled
 fix 5910187 = enabled
 fix 10068316 = enabled
 fix 14029891 = enabled
 fix 4215125 = enabled
 fix 13711083 = enabled
 fix 13973691 = enabled
 fix 13486825 = enabled
 fix 13682550 = enabled
 fix 13826669 = enabled
 fix 14033181 = enabled
 fix 13836796 = enabled
 fix 12555499 = enabled
 fix 13568506 = enabled
 fix 9891396 = enabled
 fix 13699643 = enabled
 fix 13835788 = enabled
 fix 7271518 = enabled
 fix 14127824 = enabled
 fix 12557401 = enabled
 fix 13350470 = enabled
 fix 14095362 = enabled
 fix 13000118 = enabled
 fix 14254795 = enabled
 fix 14012261 = enabled
 fix 14241953 = enabled
 fix 14221012 = enabled
 fix 13329748 = enabled
 fix 13843964 = enabled
 fix 14254052 = enabled
 fix 13814866 = enabled
 fix 14255600 = disabled
 fix 13735304 = enabled
 fix 14142884 = disabled
 fix 12909121 = enabled
 fix 14464068 = enabled
 fix 14295250 = 45000 
 fix 6873091 = enabled
 fix 13448445 = enabled
 fix 14155722 = enabled
 fix 14098180 = enabled
 fix 11905801 = enabled
 fix 14467202 = enabled
 fix 14541122 = enabled
 fix 13905599 = disabled
 fix 14320077 = enabled
 fix 14243782 = enabled
 fix 9114915 = enabled
 fix 14516175 = enabled
 fix 12812697 = enabled
 fix 13109345 = enabled
 fix 14456124 = enabled
 fix 14605040 = enabled
 fix 14595273 = disabled
 fix 14176247 = enabled
 fix 11894476 = enabled
 fix 14256885 = enabled
 fix 14545269 = disabled
 fix 14668404 = disabled
 fix 14144611 = enabled
 fix 14346182 = enabled
 fix 13083139 = enabled
 fix 14726188 = enabled
 fix 14707009 = enabled
 fix 14703133 = enabled
 fix 14618560 = enabled
 fix 14170552 = enabled
 fix 13263174 = enabled
 fix 14669785 = enabled
 fix 14633570 = enabled
 fix 14755138 = enabled
 fix 14682092 = enabled
 fix 14712222 = enabled
 fix 14570575 = enabled
 fix 14707748 = disabled
 fix 14684079 = enabled
 fix 13245379 = enabled
 fix 13853916 = enabled
 fix 13699007 = enabled
 fix 14843189 = enabled
 fix 14147762 = enabled
 fix 14795969 = enabled
 fix 14746036 = 1 
 fix 14750501 = enabled
 fix 13891981 = enabled
 fix 15996520 = enabled
 fix 16026776 = enabled
 fix 13573073 = enabled
 fix 13263455 = enabled
 fix 16053273 = enabled
 fix 16029607 = enabled
 fix 14242833 = enabled
 fix 13362020 = enabled
 fix 13799389 = enabled
 fix 12693573 = enabled
 fix 15998585 = enabled
 fix 16166364 = enabled
 fix 14723910 = enabled
 fix 15873008 = enabled
 fix 14133928 = enabled
 fix 16085999 = enabled
 fix 14176203 = enabled
 fix 16226575 = enabled
 fix 16015637 = enabled
 fix 15968693 = disabled
 fix 16220895 = enabled
 fix 16178821 = enabled
 fix 11865196 = enabled
 fix 16237969 = enabled
 fix 16058481 = enabled
 fix 13361493 = enabled
 fix 16264537 = enabled
 fix 14401107 = enabled
 fix 13943459 = enabled
 fix 13994546 = enabled
 fix 7174435 = enabled
 fix 14750443 = enabled
 fix 14469756 = enabled
 fix 14552075 = enabled
 fix 16324844 = enabled
 fix 13583529 = enabled
 fix 14565911 = enabled
 fix 13526551 = enabled
 fix 16368002 = enabled
 fix 16077770 = enabled
 fix 16419357 = enabled
 fix 15889476 = disabled
 fix 16273483 = enabled
 fix 16496848 = disabled
 fix 14107333 = enabled
 fix 11814337 = enabled
 fix 15882436 = enabled
 fix 14764840 = enabled
 fix 16226660 = enabled
 fix 16555865 = enabled
 fix 16625151 = enabled
 fix 16092378 = enabled
 fix 16487030 = enabled
 fix 9552303 = enabled
 fix 16609749 = enabled
 fix 16751246 = enabled
 fix 13253977 = enabled
 fix 14058291 = disabled
 fix 16749025 = enabled
 fix 16750067 = enabled
 fix 16726844 = enabled
 fix 15899648 = enabled
 fix 16690013 = enabled
 fix 15996156 = enabled
 fix 16544878 = enabled
 fix 9413591 = disabled
 fix 16792882 = 0 
 fix 16725982 = enabled
 fix 14648222 = enabled
 fix 16799181 = enabled
 fix 16516883 = enabled
 fix 16507317 = enabled
 fix 16837274 = enabled
 fix 14085520 = enabled
 fix 16713081 = enabled
 fix 14703295 = enabled
 fix 16908409 = enabled
 fix 16212250 = enabled
 fix 13692395 = disabled
 fix 17087729 = enabled
 fix 17088819 = enabled
 fix 13848786 = enabled
 fix 13522189 = enabled
 fix 16400122 = enabled
 fix 16796185 = enabled
 fix 15950252 = enabled
 fix 17070464 = enabled
 fix 16976121 = enabled
 fix 14580303 = enabled
 fix 16554552 = enabled
 fix 16582322 = enabled
 fix 16712213 = enabled
 fix 17382690 = enabled
 fix 14846352 = enabled
 fix 16516751 = enabled
 fix 3174223 = enabled
 fix 8611462 = enabled
 fix 14851437 = 3 
 fix 17348895 = enabled
 fix 16515789 = enabled
 fix 5451645 = disabled
 fix 14062749 = enabled
 fix 16346018 = enabled
 fix 12977599 = enabled
 fix 14191778 = enabled
 fix 15939321 = enabled
 fix 16874299 = enabled
 fix 16470836 = enabled
 fix 16805362 = disabled
 fix 17442009 = disabled
 fix 16825679 = enabled
 fix 17543180 = enabled
 fix 17301564 = enabled
 fix 12373708 = enabled
 fix 17397506 = enabled
 fix 14558315 = enabled
 fix 16615686 = enabled
 fix 16622801 = enabled
 fix 10038517 = enabled
 fix 16954950 = enabled
 fix 17728161 = enabled
 fix 17760375 = enabled
 fix 14311185 = enabled
 fix 13077335 = disabled
 fix 13458979 = disabled
 fix 17485514 = enabled
 fix 17599514 = enabled
 fix 17640863 = enabled
 fix 17716301 = enabled
 fix 17368047 = disabled
 fix 17597748 = enabled
 fix 17303359 = enabled
 fix 17376322 = disabled
 fix 16391176 = disabled
 fix 16673868 = enabled
 fix 17800514 = enabled
 fix 14826303 = enabled
 fix 17663076 = enabled
 fix 17760755 = enabled
 fix 17793460 = enabled
 fix 17997159 = enabled
 fix 17938754 = enabled
 fix 14733442 = enabled
 fix 17727676 = enabled
 fix 17781659 = enabled
 fix 17526569 = enabled
 fix 17950612 = enabled
 fix 17760686 = enabled
 fix 17696414 = enabled
 fix 17799716 = enabled
 fix 18116777 = enabled
 fix 18159664 = disabled
 fix 16052625 = enabled
 fix 18091750 = enabled
 fix 17572606 = enabled
 fix 17971955 = enabled
 fix 17946915 = enabled
 fix 18196576 = enabled
 fix 10145667 = enabled
 fix 17736165 = enabled
 fix 16434021 = enabled
 fix 18035463 = enabled
 fix 18011820 = enabled
 fix 16405740 = enabled
 fix 14612201 = enabled
 fix 17491018 = enabled
 fix 18365267 = enabled
 fix 17986549 = enabled
 fix 18115594 = enabled
 fix 18182018 = enabled
 fix 18302923 = enabled
 fix 18377553 = enabled
 fix 5677419 = enabled
 fix 17896018 = disabled
 fix 13097308 = enabled
 fix 17863980 = enabled
 fix 17567154 = enabled
 fix 18398980 = enabled
 fix 17023040 = enabled
 fix 17991403 = 1 
 fix 16033838 = enabled
 fix 17908541 = enabled
 fix 18134680 = enabled
 fix 18405517 = 0 
 fix 18304693 = enabled
 fix 18456944 = enabled
 fix 18467455 = enabled
 fix 18425876 = enabled
 fix 18508675 = enabled
 fix 17473046 = disabled
 fix 18636079 = enabled
 fix 18388128 = enabled
 fix 18415557 = enabled
 fix 18385778 = enabled
 fix 18308329 = enabled
 fix 18461984 = enabled
 fix 17973658 = enabled
 fix 18558952 = enabled
 fix 9912950 = enabled
 fix 18751128 = enabled
 fix 16809786 = enabled
 fix 18795224 = enabled
 fix 14776289 = enabled
 fix 18823135 = enabled
 fix 18874242 = enabled
 fix 18770199 = disabled
 fix 4185270 = disabled
 fix 18765574 = enabled
 fix 18754357 = disabled
 fix 18959892 = enabled
 fix 17324379 = disabled
 fix 18952882 = enabled
 fix 18924221 = enabled
 fix 18422714 = enabled
 fix 18798414 = enabled
 fix 18969167 = enabled
 fix 16191689 = enabled
 fix 18907562 = enabled
 fix 19055664 = enabled
 fix 18898582 = enabled
 fix 18960760 = enabled
 fix 19070454 = enabled
 fix 19230097 = enabled
 fix 19063497 = enabled
 fix 19046459 = enabled
 fix 19269482 = enabled
 fix 18876528 = enabled
 fix 19227996 = enabled
 fix 18864613 = enabled
 fix 19239478 = enabled
 fix 19451895 = enabled
 fix 19450139 = enabled
 fix 18907390 = enabled
 fix 19025959 = enabled
 fix 19309574 = enabled
 fix 16774698 = enabled
 fix 16923858 = 6 
 fix 19546825 = enabled
 fix 19475484 = enabled
 fix 19498595 = enabled
 fix 16934526 = enabled
 fix 19287919 = enabled
 fix 19386746 = enabled
 fix 19774486 = enabled
 fix 19803410 = enabled
 fix 18671960 = enabled
 fix 19484911 = enabled
 fix 19731940 = enabled
 fix 19604408 = enabled
 fix 14402409 = enabled
 fix 16486095 = enabled
 fix 19563657 = enabled
 fix 19632232 = enabled
 fix 19889960 = enabled
 fix 17208933 = enabled
 fix 19710102 = enabled
 fix 18697515 = enabled
 fix 18318631 = enabled
 fix 19377983 = enabled
 fix 20078639 = enabled
 fix 19503668 = enabled
 fix 20124288 = enabled
 fix 19847091 = enabled
 fix 12989345 = enabled
 fix 12618642 = enabled
 fix 19779920 = enabled
 fix 20186282 = enabled
 fix 20186295 = enabled
 fix 19563433 = enabled
 fix 19848804 = enabled
 fix 20046257 = enabled
 fix 20265690 = enabled
 fix 16047938 = enabled
 fix 19507904 = enabled
 fix 18915345 = enabled
 fix 20173686 = disabled
 fix 20329321 = enabled
 fix 20225191 = enabled
 fix 18776755 = enabled
 fix 19882842 = enabled
 fix 20010996 = enabled
 fix 20445764 = disabled
 fix 19728543 = disabled
 fix 20379571 = enabled
 fix 20129763 = enabled
 fix 19899588 = enabled
 fix 10098852 = enabled
 fix 19663421 = enabled
 fix 20355502 = 0 
 fix 20526705 = enabled
 fix 20465582 = enabled
 fix 20581886 = disabled
 fix 16732417 = enabled
 fix 20732410 = enabled
 fix 20289688 = enabled
 fix 20543684 = enabled
 fix 20636003 = enabled
 fix 20506136 = enabled
 fix 20458598 = disabled
 fix 20830312 = enabled
 fix 19768896 = enabled
 fix 20321661 = enabled
 fix 19814541 = enabled
 fix 20933264 = enabled
 fix 17443547 = enabled
 fix 20602794 = enabled
 fix 19123152 = enabled
 fix 19899833 = enabled
 fix 20754928 = enabled
 fix 20808265 = enabled
 fix 20808192 = enabled
 fix 20340595 = enabled
 fix 14474264 = disabled
 fix 20508819 = enabled
 fix 21098866 = disabled
 fix 18949550 = enabled
 fix 14775297 = enabled
 fix 19568958 = disabled
 fix 20923950 = enabled
 fix 21283159 = enabled
 fix 17497847 = enabled
 fix 21211629 = enabled
 fix 20819668 = disabled
 fix 20232513 = enabled
 fix 20906782 = enabled
 fix 20587527 = enabled
 fix 20914534 = disabled
 fix 20830544 = enabled
 fix 16851194 = enabled
 fix 19186783 = enabled
 fix 19653920 = enabled
 fix 21211786 = enabled
 fix 21057343 = enabled
 fix 21503478 = enabled
 fix 19808939 = disabled
 fix 21476032 = enabled
 fix 20859246 = enabled
 fix 20838633 = 2 
 fix 21639419 = enabled
 fix 20951803 = enabled
 fix 21683982 = enabled
 fix 20216500 = enabled
 fix 21614112 = enabled
 fix 20906162 = enabled
 fix 20854798 = enabled
 fix 21509656 = enabled
 fix 21833220 = enabled
 fix 21802552 = enabled
 fix 21452843 = enabled
 fix 21553593 = enabled
 fix 21093805 = enabled
 fix 16220085 = disabled
 fix 21800590 = enabled
 fix 21273039 = enabled
 fix 16750133 = enabled
 fix 22013607 = enabled
 fix 22152372 = enabled
 fix 22077191 = enabled
 fix 22123025 = enabled
 fix 16913734 = enabled
 fix 8357294 = enabled
 fix 12670904 = enabled
 fix 21979983 = enabled
 fix 22158526 = enabled
 fix 21971099 = enabled
 fix 22090662 = enabled
 fix 22149010 = disabled
 fix 21300129 = enabled
 fix 21339278 = enabled
 fix 20270511 = enabled
 fix 21424812 = enabled
 fix 22114090 = enabled
 fix 22310074 = disabled
 fix 22159570 = enabled
 fix 22272439 = enabled
 fix 22372694 = enabled
 fix 22514195 = enabled
 fix 20413540 = enabled
 fix 22520315 = enabled
 fix 22649054 = enabled
 fix 8617254 = enabled
 fix 22020067 = enabled
 fix 22864730 = enabled
 fix 21099502 = enabled
 fix 22904304 = enabled
 fix 22967807 = enabled
 fix 22879002 = enabled
 fix 23019286 = enabled
 fix 22760704 = enabled
 fix 20853506 = enabled
 fix 22540411 = disabled
 fix 22513493 = enabled
 fix 22518491 = enabled
 fix 23103096 = enabled
 fix 22143411 = enabled
 fix 23180670 = enabled
 fix 23002609 = enabled
 fix 22928015 = 1 
 fix 23210039 = enabled
 fix 23102649 = enabled
 fix 23071621 = enabled
 fix 22822245 = enabled
 fix 23136865 = enabled
 fix 22463839 = disabled
 fix 23176721 = enabled
 fix 23308385 = enabled
 fix 23223113 = enabled
 fix 22301868 = disabled
 fix 22258300 = enabled
 fix 22205301 = enabled
 fix 23514473 = 1 
 fix 23556483 = enabled
 fix 21305617 = enabled
 fix 22533539 = enabled
 fix 23596611 = enabled
 fix 23853877 = disabled
 fix 20347374 = disabled
 fix 22937293 = enabled
 fix 20228468 = disabled
 fix 23565188 = enabled
 fix 22393169 = enabled
 fix 24654471 = enabled
 fix 24845754 = enabled
 fix 25058954 = enabled
 fix 23146876 = disabled




Query Block Registry:
SEL$1 0x6bfd6f68 (PARSER) [FINAL]

:
 call(in-use=17440, alloc=65760), compile(in-use=125208, alloc=187496), execution(in-use=10112, alloc=12144)

End of Optimizer State Dump
Dumping Hints
=============
====================== END SQL Statement Dump ======================

*** TRACE CONTINUES IN FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_GBY.trc ***

 

db12201_ora_20607_STATUS.trc

Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATUS.trc
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
Build label: RDBMS_12.2.0.1.0_LINUX.X64_170125
ORACLE_HOME: /u01/app/oracle/product/12.2.0/dbhome_1
System name: Linux
Node name: stormking
Release: 2.6.39-400.247.1.el6uek.x86_64
Version: #1 SMP Thu Feb 5 16:06:15 PST 2015
Machine: x86_64
Instance name: db12201
Redo thread mounted by this instance: 1
Oracle process number: 40
Unix process pid: 20607, image: oracle@stormking (TNS V1-V3)




*** 2018-02-11T14:25:26.553076-05:00
*** SESSION ID:(84.15782) 2018-02-11T14:25:26.553076-05:00
*** CLIENT ID:() 2018-02-11T14:25:26.553076-05:00
*** SERVICE NAME:(SYS$USERS) 2018-02-11T14:25:26.553076-05:00
*** MODULE NAME:(SQL*Plus) 2018-02-11T14:25:26.553076-05:00
*** ACTION NAME:() 2018-02-11T14:25:26.553076-05:00
*** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:25:26.553076-05:00


*** TRACE CONTINUED FROM FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATS.trc ***

Registered qb: SEL$1 0x6bfd6f68 (PARSER)
---------------------
QUERY BLOCK SIGNATURE
---------------------
 signature (): qb_name=SEL$1 nbfros=1 flg=0
 fro(0): flg=4 objn=93045 hint_alias="ORDS"@"SEL$1"

SPM: statement not found in SMB
SPM: capture of plan baseline is OFF

**************************
Automatic degree of parallelism (AUTODOP)
**************************
Automatic degree of parallelism is disabled: Parameter.
kkopqSetForceParallelProperties: Hint:no
Query: compute:yes forced:no forceDop:0
Global Manual Dop: 1 - Rounded?: no

PM: Considering predicate move-around in query block SEL$1 (#0)
**************************
Predicate Move-Around (PM)
**************************
OPTIMIZER INFORMATION

******************************************
----- Current SQL Statement for this session (sql_id=03y2yj25g7d27) -----
select ordid from ords
where status = 'PENDING'
*******************************************
Legend
The following abbreviations are used by optimizer trace.
CBQT - cost-based query transformation
JPPD - join predicate push-down
OJPPD - old-style (non-cost-based) JPPD
FPD - filter push-down
PM - predicate move-around
CVM - complex view merging
SPJ - select-project-join
SJC - set join conversion
SU - subquery unnesting
OBYE - order by elimination
OST - old style star transformation
ST - new (cbqt) star transformation
CNT - count(col) to count(*) transformation
JE - Join Elimination
JF - join factorization
CBY - connect by
SLP - select list pruning
DP - distinct placement
VT - vector transformation
AAT - Approximate Aggregate Transformation
ORE - CBQT OR-Expansion
LORE - Legacy OR-Expansion
qb - query block
LB - leaf blocks
DK - distinct keys
LB/K - average number of leaf blocks per key
DB/K - average number of data blocks per key
CLUF - clustering factor
NDV - number of distinct values
Resp - response cost
Card - cardinality
Resc - resource cost
NL - nested loops (join)
SM - sort merge (join)
HA - hash (join)
CPUSPEED - CPU Speed 
IOTFRSPEED - I/O transfer speed
IOSEEKTIM - I/O seek time
SREADTIM - average single block read time
MREADTIM - average multiblock read time
MBRC - average multiblock read count
MAXTHR - maximum I/O system throughput
SLAVETHR - average slave I/O throughput
dmeth - distribution method
 1: no partitioning required
 2: value partitioned
 4: right is random (round-robin)
 128: left is random (round-robin)
 8: broadcast right and partition left
 16: broadcast left and partition right
 32: partition left using partitioning of right
 64: partition right using partitioning of left
 256: run the join in serial
 0: invalid distribution method
sel - selectivity
ptn - partition
AP - adaptive plans
***************************************
PARAMETERS USED BY THE OPTIMIZER
********************************
 *************************************
 PARAMETERS WITH ALTERED VALUES
 ******************************
Compilation Environment Dump
_pga_max_size = 328280 KB
Bug Fix Control Environment




*************************************
 PARAMETERS WITH DEFAULT VALUES
 ******************************
Compilation Environment Dump
optimizer_mode_hinted = false
optimizer_features_hinted = 0.0.0
parallel_execution_enabled = true
parallel_query_forced_dop = 0
parallel_dml_forced_dop = 0
parallel_ddl_forced_degree = 0
parallel_ddl_forced_instances = 0
_query_rewrite_fudge = 90
optimizer_features_enable = 12.2.0.1
_optimizer_search_limit = 5
cpu_count = 1
active_instance_count = 1
parallel_threads_per_cpu = 2
hash_area_size = 131072
bitmap_merge_area_size = 1048576
sort_area_size = 65536
sort_area_retained_size = 0
_sort_elimination_cost_ratio = 0
_optimizer_block_size = 8192
_sort_multiblock_read_count = 2
_hash_multiblock_io_count = 0
_db_file_optimizer_read_count = 8
_optimizer_max_permutations = 2000
pga_aggregate_target = 1641472 KB
_query_rewrite_maxdisjunct = 257
_smm_auto_min_io_size = 56 KB
_smm_auto_max_io_size = 248 KB
_smm_min_size = 1024 KB
_smm_max_size_static = 164140 KB
_smm_px_max_size_static = 820736 KB
_cpu_to_io = 0
_optimizer_undo_cost_change = 12.2.0.1
parallel_query_mode = enabled
parallel_dml_mode = disabled
parallel_ddl_mode = enabled
optimizer_mode = all_rows
sqlstat_enabled = false
_optimizer_percent_parallel = 101
_always_anti_join = choose
_always_semi_join = choose
_optimizer_mode_force = true
_partition_view_enabled = true
_always_star_transformation = false
_query_rewrite_or_error = false
_hash_join_enabled = true
cursor_sharing = exact
_b_tree_bitmap_plans = true
star_transformation_enabled = false
_optimizer_cost_model = choose
_new_sort_cost_estimate = true
_complex_view_merging = true
_unnest_subquery = true
_eliminate_common_subexpr = true
_pred_move_around = true
_convert_set_to_join = false
_push_join_predicate = true
_push_join_union_view = true
_fast_full_scan_enabled = true
_optim_enhance_nnull_detection = true
_parallel_broadcast_enabled = true
_px_broadcast_fudge_factor = 100
_ordered_nested_loop = true
_no_or_expansion = false
optimizer_index_cost_adj = 100
optimizer_index_caching = 0
_system_index_caching = 0
_disable_datalayer_sampling = false
query_rewrite_enabled = true
query_rewrite_integrity = enforced
_query_cost_rewrite = true
_query_rewrite_2 = true
_query_rewrite_1 = true
_query_rewrite_expression = true
_query_rewrite_jgmigrate = true
_query_rewrite_fpc = true
_query_rewrite_drj = false
_full_pwise_join_enabled = true
_partial_pwise_join_enabled = true
_left_nested_loops_random = true
_improved_row_length_enabled = true
_index_join_enabled = true
_enable_type_dep_selectivity = true
_improved_outerjoin_card = true
_optimizer_adjust_for_nulls = true
_optimizer_degree = 0
_use_column_stats_for_function = true
_subquery_pruning_enabled = true
_subquery_pruning_mv_enabled = false
_or_expand_nvl_predicate = true
_like_with_bind_as_equality = false
_table_scan_cost_plus_one = true
_cost_equality_semi_join = true
_default_non_equality_sel_check = true
_new_initial_join_orders = true
_oneside_colstat_for_equijoins = true
_optim_peek_user_binds = true
_minimal_stats_aggregation = true
_force_temptables_for_gsets = false
workarea_size_policy = auto
_smm_auto_cost_enabled = true
_gs_anti_semi_join_allowed = true
_optim_new_default_join_sel = true
optimizer_dynamic_sampling = 2
_pre_rewrite_push_pred = true
_optimizer_new_join_card_computation = true
_union_rewrite_for_gs = yes_gset_mvs
_generalized_pruning_enabled = true
_optim_adjust_for_part_skews = true
_force_datefold_trunc = false
statistics_level = typical
_optimizer_system_stats_usage = true
skip_unusable_indexes = true
_remove_aggr_subquery = true
_optimizer_push_down_distinct = 0
_dml_monitoring_enabled = true
_optimizer_undo_changes = false
_predicate_elimination_enabled = true
_nested_loop_fudge = 100
_project_view_columns = true
_local_communication_costing_enabled = true
_local_communication_ratio = 50
_query_rewrite_vop_cleanup = true
_slave_mapping_enabled = true
_optimizer_cost_based_transformation = linear
_optimizer_mjc_enabled = true
_right_outer_hash_enable = true
_spr_push_pred_refspr = true
_optimizer_cache_stats = false
_optimizer_cbqt_factor = 50
_optimizer_squ_bottomup = true
_fic_area_size = 131072
_optimizer_skip_scan_enabled = true
_optimizer_cost_filter_pred = false
_optimizer_sortmerge_join_enabled = true
_optimizer_join_sel_sanity_check = true
_mmv_query_rewrite_enabled = true
_bt_mmv_query_rewrite_enabled = true
_add_stale_mv_to_dependency_list = true
_distinct_view_unnesting = false
_optimizer_dim_subq_join_sel = true
_optimizer_disable_strans_sanity_checks = 0
_optimizer_compute_index_stats = true
_push_join_union_view2 = true
_optimizer_ignore_hints = false
_optimizer_random_plan = 0
_query_rewrite_setopgrw_enable = true
_optimizer_correct_sq_selectivity = true
_disable_function_based_index = false
_optimizer_join_order_control = 3
_optimizer_cartesian_enabled = true
_optimizer_starplan_enabled = true
_extended_pruning_enabled = true
_optimizer_push_pred_cost_based = true
_optimizer_null_aware_antijoin = true
_optimizer_extend_jppd_view_types = true
_sql_model_unfold_forloops = run_time
_enable_dml_lock_escalation = false
_bloom_filter_enabled = true
_update_bji_ipdml_enabled = 0
_optimizer_extended_cursor_sharing = udo
_dm_max_shared_pool_pct = 1
_optimizer_cost_hjsmj_multimatch = true
_optimizer_transitivity_retain = true
_px_pwg_enabled = true
optimizer_secure_view_merging = true
_optimizer_join_elimination_enabled = true
flashback_table_rpi = non_fbt
_optimizer_cbqt_no_size_restriction = true
_optimizer_enhanced_filter_push = true
_optimizer_filter_pred_pullup = true
_rowsrc_trace_level = 0
_simple_view_merging = true
_optimizer_rownum_pred_based_fkr = true
_optimizer_better_inlist_costing = all
_optimizer_self_induced_cache_cost = false
_optimizer_min_cache_blocks = 10
_optimizer_or_expansion = depth
_optimizer_order_by_elimination_enabled = true
_optimizer_outer_to_anti_enabled = true
_selfjoin_mv_duplicates = true
_dimension_skip_null = true
_force_rewrite_enable = false
_optimizer_star_tran_in_with_clause = true
_optimizer_complex_pred_selectivity = true
_optimizer_connect_by_cost_based = true
_gby_hash_aggregation_enabled = true
_globalindex_pnum_filter_enabled = true
_px_minus_intersect = true
_fix_control_key = 0
_force_slave_mapping_intra_part_loads = false
_force_tmp_segment_loads = false
_query_mmvrewrite_maxpreds = 10
_query_mmvrewrite_maxintervals = 5
_query_mmvrewrite_maxinlists = 5
_query_mmvrewrite_maxdmaps = 10
_query_mmvrewrite_maxcmaps = 20
_query_mmvrewrite_maxregperm = 512
_query_mmvrewrite_maxqryinlistvals = 500
_disable_parallel_conventional_load = false
_trace_virtual_columns = false
_replace_virtual_columns = true
_virtual_column_overload_allowed = true
_kdt_buffering = true
_first_k_rows_dynamic_proration = true
_optimizer_sortmerge_join_inequality = true
_optimizer_aw_stats_enabled = true
_bloom_pruning_enabled = true
result_cache_mode = MANUAL
_px_ual_serial_input = true
_optimizer_skip_scan_guess = false
_enable_row_shipping = true
_row_shipping_threshold = 100
_row_shipping_explain = false
transaction_isolation_level = read_commited
_optimizer_distinct_elimination = true
_optimizer_multi_level_push_pred = true
_optimizer_group_by_placement = true
_optimizer_rownum_bind_default = 10
_enable_query_rewrite_on_remote_objs = true
_optimizer_extended_cursor_sharing_rel = simple
_optimizer_adaptive_cursor_sharing = true
_direct_path_insert_features = 0
_optimizer_improve_selectivity = true
optimizer_use_pending_statistics = false
_optimizer_enable_density_improvements = true
_optimizer_aw_join_push_enabled = true
_optimizer_connect_by_combine_sw = true
_enable_pmo_ctas = 0
_optimizer_native_full_outer_join = force
_bloom_predicate_enabled = true
_optimizer_enable_extended_stats = true
_is_lock_table_for_ddl_wait_lock = 0
_pivot_implementation_method = choose
optimizer_capture_sql_plan_baselines = false
optimizer_use_sql_plan_baselines = true
_optimizer_star_trans_min_cost = 0
_optimizer_star_trans_min_ratio = 0
_with_subquery = OPTIMIZER
_optimizer_fkr_index_cost_bias = 10
_optimizer_use_subheap = true
parallel_degree_policy = manual
parallel_degree = 0
parallel_min_time_threshold = 10
_parallel_time_unit = 10
_optimizer_or_expansion_subheap = true
_optimizer_free_transformation_heap = true
_optimizer_reuse_cost_annotations = true
_result_cache_auto_size_threshold = 100
_result_cache_auto_time_threshold = 1000
_optimizer_nested_rollup_for_gset = 100
_nlj_batching_enabled = 1
parallel_query_default_dop = 0
is_recur_flags = 0
optimizer_use_invisible_indexes = false
flashback_data_archive_internal_cursor = 0
_optimizer_extended_stats_usage_control = 192
_parallel_syspls_obey_force = true
cell_offload_processing = true
_rdbms_internal_fplib_enabled = false
db_file_multiblock_read_count = 128
_bloom_folding_enabled = true
_mv_generalized_oj_refresh_opt = true
cell_offload_compaction = ADAPTIVE
cell_offload_plan_display = AUTO
_bloom_predicate_offload = true
_bloom_filter_size = 0
_bloom_pushing_max = 512
parallel_degree_limit = 65535
parallel_force_local = false
parallel_max_degree = 2
total_cpu_count = 1
_optimizer_coalesce_subqueries = true
_optimizer_fast_pred_transitivity = true
_optimizer_fast_access_pred_analysis = true
_optimizer_unnest_disjunctive_subq = true
_optimizer_unnest_corr_set_subq = true
_optimizer_distinct_agg_transform = true
_aggregation_optimization_settings = 0
_optimizer_connect_by_elim_dups = true
_optimizer_eliminate_filtering_join = true
_connect_by_use_union_all = true
dst_upgrade_insert_conv = true
advanced_queuing_internal_cursor = 0
_optimizer_unnest_all_subqueries = true
parallel_autodop = 0
parallel_ddldml = 0
_parallel_cluster_cache_policy = adaptive
_parallel_scalability = 50
iot_internal_cursor = 0
_optimizer_instance_count = 0
_optimizer_connect_by_cb_whr_only = false
_suppress_scn_chk_for_cqn = nosuppress_1466
_optimizer_join_factorization = true
_optimizer_use_cbqt_star_transformation = true
_optimizer_table_expansion = true
_and_pruning_enabled = true
_deferred_constant_folding_mode = DEFAULT
_optimizer_distinct_placement = true
partition_pruning_internal_cursor = 0
parallel_hinted = none
_sql_compatibility = 0
_optimizer_use_feedback = true
_optimizer_try_st_before_jppd = true
_dml_frequency_tracking = false
_optimizer_interleave_jppd = true
kkb_drop_empty_segments = 0
_px_partition_scan_enabled = true
_px_partition_scan_threshold = 64
_optimizer_false_filter_pred_pullup = true
_bloom_minmax_enabled = true
only_move_row = 0
_optimizer_enable_table_lookup_by_nl = true
parallel_execution_message_size = 16384
_px_loc_msg_cost = 1000
_px_net_msg_cost = 10000
_optimizer_generate_transitive_pred = true
_optimizer_cube_join_enabled = true
_optimizer_filter_pushdown = true
deferred_segment_creation = true
_optimizer_outer_join_to_inner = true
_allow_level_without_connect_by = false
_max_rwgs_groupings = 8192
_optimizer_hybrid_fpwj_enabled = true
_px_replication_enabled = true
ilm_filter = 0
_optimizer_partial_join_eval = true
_px_concurrent = true
_px_object_sampling_enabled = true
_px_back_to_parallel = OFF
_optimizer_unnest_scalar_sq = true
_optimizer_full_outer_join_to_outer = true
_px_filter_parallelized = true
_px_filter_skew_handling = true
_zonemap_use_enabled = true
_zonemap_control = 0
_optimizer_multi_table_outerjoin = true
_px_groupby_pushdown = force
_partition_advisor_srs_active = true
_optimizer_ansi_join_lateral_enhance = true
_px_parallelize_expression = true
_fast_index_maintenance = true
_optimizer_ansi_rearchitecture = true
_optimizer_gather_stats_on_load = true
ilm_access_tracking = 0
ilm_dml_timestamp = 0
_px_adaptive_dist_method = choose
_px_adaptive_dist_method_threshold = 0
_optimizer_batch_table_access_by_rowid = true
optimizer_adaptive_reporting_only = false
_optimizer_ads_max_table_count = 0
_optimizer_ads_time_limit = 0
_optimizer_ads_use_result_cache = true
_px_wif_dfo_declumping = choose
_px_wif_extend_distribution_keys = true
_px_join_skew_handling = true
_px_join_skew_ratio = 10
_px_join_skew_minfreq = 30
CLI_internal_cursor = 0
_parallel_fault_tolerance_enabled = false
_parallel_fault_tolerance_threshold = 3
_px_partial_rollup_pushdown = adaptive
_px_single_server_enabled = true
_optimizer_dsdir_usage_control = 0
_px_cpu_autodop_enabled = true
_px_cpu_process_bandwidth = 200
_sql_hvshare_threshold = 0
_px_tq_rowhvs = true
_optimizer_use_gtt_session_stats = true
_optimizer_proc_rate_level = basic
_px_hybrid_TSM_HWMB_load = true
_optimizer_use_histograms = true
PMO_altidx_rebuild = 0
_cell_offload_expressions = true
_cell_materialize_virtual_columns = true
_cell_materialize_all_expressions = false
_rowsets_enabled = true
_rowsets_target_maxsize = 524288
_rowsets_max_rows = 256
_use_hidden_partitions = 0
_px_monitor_load = false
_px_load_monitor_threshold = 10000
_px_numa_support_enabled = false
total_processor_group_count = 1
_adaptive_window_consolidator_enabled = true
_optimizer_strans_adaptive_pruning = true
_bloom_rm_filter = false
_optimizer_null_accepting_semijoin = true
_long_varchar_allow_IOT = 0
_parallel_ctas_enabled = true
_cell_offload_complex_processing = true
_optimizer_performance_feedback = off
_optimizer_proc_rate_source = DEFAULT
_hashops_prefetch_size = 4
_cell_offload_sys_context = true
_multi_commit_global_index_maint = 0
_stat_aggs_one_pass_algorithm = false
_dbg_scan = 2048
_oltp_comp_dbg_scan = 0
_arch_comp_dbg_scan = 0
_optimizer_gather_feedback = true
_upddel_dba_hash_mask_bits = 0
_px_pwmr_enabled = true
_px_cdb_view_enabled = true
_bloom_sm_enabled = true
_optimizer_cluster_by_rowid = true
_optimizer_cluster_by_rowid_control = 129
_partition_cdb_view_enabled = true
_common_data_view_enabled = true
_pred_push_cdb_view_enabled = true
_rowsets_cdb_view_enabled = true
_distinct_agg_optimization_gsets = choose
_array_cdb_view_enabled = true
_optimizer_adaptive_plan_control = 0
_optimizer_adaptive_random_seed = 0
_optimizer_cbqt_or_expansion = on
_inmemory_dbg_scan = 0
_gby_vector_aggregation_enabled = true
_optimizer_vector_transformation = true
_optimizer_vector_fact_dim_ratio = 10
_key_vector_max_size = 0
_key_vector_predicate_enabled = true
_key_vector_predicate_threshold = 0
_key_vector_caching = false
_vector_operations_control = 0
_optimizer_vector_min_fact_rows = 10000000
parallel_dblink = 0
_px_scalable_invdist = true
_key_vector_offload = predicate
_optimizer_aggr_groupby_elim = true
_optimizer_reduce_groupby_key = true
_vector_serialize_temp_threshold = 1000
_always_vector_transformation = false
_optimizer_cluster_by_rowid_batched = true
_object_link_fixed_enabled = true
optimizer_inmemory_aware = true
_optimizer_inmemory_table_expansion = true
_optimizer_inmemory_gen_pushable_preds = true
_optimizer_inmemory_autodop = true
_optimizer_inmemory_access_path = true
_optimizer_inmemory_bloom_filter = true
_parallel_inmemory_min_time_threshold = 1
_parallel_inmemory_time_unit = 1
_rc_sys_obj_enabled = true
_optimizer_nlj_hj_adaptive_join = true
_indexable_con_id = true
_bloom_serial_filter = on
inmemory_force = default
inmemory_query = enable
_inmemory_query_scan = true
_inmemory_query_fetch_by_rowid = false
_inmemory_pruning = on
_px_autodop_pq_overhead = true
_px_external_table_default_stats = true
_optimizer_key_vector_aggr_factor = 75
_optimizer_vector_cost_adj = 100
_cdb_cross_container = 65535
_cdb_view_parallel_degree = 65535
_optimizer_hll_entry = 4096
_px_cdb_view_join_enabled = true
inmemory_size = 0
_external_table_smart_scan = hadoop_only
_optimizer_inmemory_minmax_pruning = true
_approx_cnt_distinct_gby_pushdown = choose
_approx_cnt_distinct_optimization = 0
_optimizer_ads_use_partial_results = true
_query_execution_time_limit = 0
_optimizer_inmemory_cluster_aware_dop = true
_optimizer_db_blocks_buffers = 0 KB
_query_rewrite_use_on_query_computation = true
_px_scalable_invdist_mcol = true
_optimizer_bushy_join = off
_optimizer_bushy_fact_dim_ratio = 20
_optimizer_bushy_fact_min_size = 100000
_optimizer_bushy_cost_factor = 100
_rmt_for_table_redef_enabled = true
_optimizer_eliminate_subquery = true
_sqlexec_cache_aware_hash_join_enabled = true
_zonemap_usage_tracking = true
_sqlexec_hash_based_distagg_enabled = false
_sqlexec_disable_hash_based_distagg_tiv = false
_sqlexec_hash_based_distagg_ssf_enabled = true
_sqlexec_distagg_optimization_settings = 0
approx_for_aggregation = false
approx_for_count_distinct = false
_optimizer_union_all_gsets = true
_rowsets_use_encoding = true
_rowsets_max_enc_rows = 64
_optimizer_enhanced_join_elimination = true
_optimizer_multicol_join_elimination = true
_key_vector_create_pushdown_threshold = 20000
_optimizer_enable_plsql_stats = true
_recursive_with_parallel = true
_recursive_with_branch_iterations = 7
_px_dist_agg_partial_rollup_pushdown = adaptive
_px_adaptive_dist_bypass_enabled = true
_enable_view_pdb = true
_optimizer_key_vector_pruning_enabled = true
_pwise_distinct_enabled = true
_recursive_with_using_temp_table = false
_partition_read_only = true
_sql_alias_scope = true
_cdb_view_no_skip_migrate = false
_approx_perc_sampling_err_rate = 2
_sqlexec_encoding_aware_hj_enabled = true
rim_node_exist = 0
_enable_containers_subquery = false
_force_containers_subquery = false
_cell_offload_vector_groupby = true
_vector_encoding_mode = manual
_ds_xt_split_count = 1
_ds_sampling_method = PROGRESSIVE
_optimizer_ads_use_spd_cache = true
_optimizer_use_table_scanrate = HADOOP_ONLY
_optimizer_use_xt_rowid = true
_xt_sampling_scan_granules = on
_recursive_with_control = 0
_sqlexec_use_rwo_aware_expr_analysis = true
_optimizer_band_join_aware = true
_optimizer_vector_base_dim_fact_factor = 200
approx_for_percentile = none
_approx_percentile_optimization = 0
_projection_pushdown = true
_px_object_sampling = 200
_px_reuse_server_group = true
_optimizer_adaptive_plans_continuous = false
_optimizer_adaptive_plans_iterative = false
_ds_enable_view_sampling = true
_optimizer_generate_ptf_implied_preds = true
_optimizer_inmemory_use_stored_stats = AUTO
_cdb_special_old_xplan = false
uniaud_internal_cursor = 0
_kd_dbg_control = 0
_mv_access_compute_fresh_data = on
_bloom_filter_ratio = 35
_optimizer_control_shard_qry_processing = 65534
containers_parallel_degree = 65535
sql_from_coordinator = 0
_xt_sampling_scan_granules_min_granules = 1
_in_memory_cdt = LIMITED
_in_memory_cdt_maxpx = 4
_px_partition_load_dist_threshold = 64
_px_adaptive_dist_bypass_optimization = 1
_optimizer_interleave_or_expansion = true
_bloom_use_crchash = BASIC
optimizer_adaptive_plans = true
optimizer_adaptive_statistics = false
_optimizer_use_feedback_for_join = false
_optimizer_ads_for_pq = false
_px_join_skewed_values_count = 0

***************************************
 PARAMETERS IN OPT_PARAM HINT
 ****************************
***************************************
Column Usage Monitoring is ON: tracking level = 21
***************************************

Considering Query Transformations on query block SEL$1 (#0)
**************************
Query transformations (QT)
**************************
JF: Checking validity of join factorization for query block SEL$1 (#0)
JF: Bypassed: not a UNION or UNION-ALL query block.
ST: not valid since star transformation parameter is FALSE
TE: Checking validity of table expansion for query block SEL$1 (#0)
TE: Bypassed: No partitioned table in query block.
ORE: Checking validity of OR Expansion for query block SEL$1 (#0)
ORE: Predicate chain before QB validity check - SEL$1
"ORDS"."STATUS"='PENDING'
ORE: Predicate chain after QB validity check - SEL$1
"ORDS"."STATUS"='PENDING'
ORE: bypassed - No valid predicate for OR expansion.
VT: Initial VT validity check for query block SEL$1 (#0)
VT: Bypassed: inmemory is disabled.
BJ: Checking validity for bushy join for query block SEL$1 (#0)
invalid because Not enabled by hint/parameter
BJ: Bypassed: Not enabled by hint/parameter.
CBQT bypassed for query block SEL$1 (#0): no complex view, sub-queries or UNION (ALL) queries.
CBQT: Validity checks failed for 03y2yj25g7d27.
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
OBYE: Considering Order-by Elimination from view SEL$1 (#0)
***************************
Order-by elimination (OBYE)
***************************
OBYE: OBYE bypassed: no order by to eliminate.
CVM: Considering view merge in query block SEL$1 (#0)
OJE: Begin: find best directive for query block SEL$1 (#0)
OJE: End: finding best directive for query block SEL$1 (#0)
query block SEL$1 (#0) unchanged
Considering Query Transformations on query block SEL$1 (#0)
**************************
Query transformations (QT)
**************************
JF: Checking validity of join factorization for query block SEL$1 (#0)
JF: Bypassed: not a UNION or UNION-ALL query block.
ST: not valid since star transformation parameter is FALSE
TE: Checking validity of table expansion for query block SEL$1 (#0)
TE: Bypassed: No partitioned table in query block.
ORE: Checking validity of OR Expansion for query block SEL$1 (#0)
ORE: Predicate chain before QB validity check - SEL$1
"ORDS"."STATUS"='PENDING'
ORE: Predicate chain after QB validity check - SEL$1
"ORDS"."STATUS"='PENDING'
ORE: bypassed - No valid predicate for OR expansion.
VT: Initial VT validity check for query block SEL$1 (#0)
VT: Bypassed: inmemory is disabled.
BJ: Checking validity for bushy join for query block SEL$1 (#0)
invalid because Not enabled by hint/parameter
BJ: Bypassed: Not enabled by hint/parameter.
CBQT bypassed for query block SEL$1 (#0): no complex view, sub-queries or UNION (ALL) queries.
CBQT: Validity checks failed for 03y2yj25g7d27.
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
AAT: Considering Approximate Aggregate Transformation on query block SEL$1 (#0) 
*******************************************
Approximate Aggregate Transformation (AAT) 
*******************************************
AAT: no exact aggregates transformed
SQE: Trying SQ elimination.
SU: Considering subquery unnesting in query block SEL$1 (#0)
********************
Subquery Unnest (SU)
********************
SJC: Considering set-join conversion in query block SEL$1 (#0)
*************************
Set-Join Conversion (SJC)
*************************
SJC: not performed
DCL: Checking validity of group-by elimination SEL$1 (#0)
DCL: Result of group-by elimination: Invalid
PM: Considering predicate move-around in query block SEL$1 (#0)
**************************
Predicate Move-Around (PM)
**************************
PM: PM bypassed: Outer query contains no views.
PM: PM bypassed: Outer query contains no views.
isReduceGrByValid: Group By Validation (Failed).
isReduceGrByValid: Group By Validation (Failed).
query block SEL$1 (#0) unchanged
FPD: Considering simple filter push in query block SEL$1 (#0)
"ORDS"."STATUS"='PENDING'
try to generate transitive predicate from check constraints for query block SEL$1 (#0)
finally: "ORDS"."STATUS"='PENDING'

apadrv-start sqlid=141967328801961031
CSE: Considering common sub-expression elimination in query block SEL$1 (#0)
*************************
Common Subexpression elimination (CSE)
*************************
CSE: CSE not performed on query block SEL$1 (#0).
 :
 call(in-use=1304, alloc=16344), compile(in-use=68160, alloc=68272), execution(in-use=2936, alloc=4032)

*******************************************
Peeked values of the binds in SQL statement
*******************************************




=====================================
SPD: BEGIN context at statement level
=====================================
Stmt: ******* UNPARSED QUERY IS *******
SELECT "ORDS"."ORDID" "ORDID" FROM "U"."ORDS" "ORDS" WHERE "ORDS"."STATUS"='PENDING'
Objects referenced in the statement
 ORDS[ORDS] 93045, type = 1
Objects in the hash table
 Hash table Object 93045, type = 1, ownerid = 7329457324875310191:
 No Dynamic Sampling Directives for the object
Return code in qosdInitDirCtx: ENBLD
===================================
SPD: END context at statement level
===================================
Final query after transformations:******* UNPARSED QUERY IS *******
SELECT "ORDS"."ORDID" "ORDID" FROM "U"."ORDS" "ORDS" WHERE "ORDS"."STATUS"='PENDING'
kkoqbc: optimizing query block SEL$1 (#0)
 
 :
 call(in-use=1416, alloc=16344), compile(in-use=78000, alloc=80752), execution(in-use=2936, alloc=4032)

kkoqbc-subheap (create addr=0x7f286bfd1810)
****************
QUERY BLOCK TEXT
****************
select ordid from ords
where status = 'PENDING'

---------------------
QUERY BLOCK SIGNATURE
---------------------
signature (optimizer): qb_name=SEL$1 nbfros=1 flg=0
 fro(0): flg=0 objn=93045 hint_alias="ORDS"@"SEL$1"

-----------------------------
SYSTEM STATISTICS INFORMATION
-----------------------------
Using dictionary system stats.
 Using NOWORKLOAD Stats
 CPUSPEEDNW: 3138 millions instructions/sec (default is 100)
 IOTFRSPEED: 4096 bytes per millisecond (default is 4096)
 IOSEEKTIM: 10 milliseconds (default is 10)
 MBRC: NO VALUE blocks (default is 8)

***************************************
BASE STATISTICAL INFORMATION
***********************
Table Stats::
 Table: ORDS Alias: ORDS
 #Rows: 10000 SSZ: 0 LGR: 0 #Blks: 35 AvgRowLen: 17.00 NEB: 0 ChainCnt: 0.00 ScanRate: 0.00 SPC: 0 RFL: 0 RNF: 0 CBK: 0 CHR: 0 KQDFLG: 1
 #IMCUs: 0 IMCRowCnt: 0 IMCJournalRowCnt: 0 #IMCBlocks: 0 IMCQuotient: 0.000000
Index Stats::
 Index: CATEGORY_IDX Col#: 2
 LVLS: 1 #LB: 21 #DK: 1000 LB/K: 1.00 DB/K: 10.00 CLUF: 10000.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
 Index: ORDS Col#: 1
 LVLS: 1 #LB: 20 #DK: 10000 LB/K: 1.00 DB/K: 1.00 CLUF: 31.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
 Index: STATUS_IDX Col#: 3
 LVLS: 1 #LB: 28 #DK: 2 LB/K: 14.00 DB/K: 16.00 CLUF: 32.00 NRW: 10000.00 SSZ: 0.00 LGR: 0.00 CBK: 0.00 GQL: 0.00 CHR: 0.00 KQDFLG: 8192 BSZ: 1
 KKEISFLG: 1 
try to generate single-table filter predicates from ORs for query block SEL$1 (#0)
finally: "ORDS"."STATUS"='PENDING'

=======================================
SPD: BEGIN context at query block level
=======================================
Query Block SEL$1 (#0)
Return code in qosdSetupDirCtx4QB: NOCTX
=====================================
SPD: END context at query block level
=====================================
Access path analysis for ORDS
***************************************
SINGLE TABLE ACCESS PATH 
 Single Table Cardinality Estimation for ORDS[ORDS] 
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = TABLE

kkecdn: Single Table Predicate:"ORDS"."STATUS"='PENDING'
 Column (#3): 
 NewDensity:0.000050, OldDensity:0.000050 BktCnt:10000.000000, PopBktCnt:9999.000000, PopValCnt:1, NDV:2
 Column (#3): STATUS(VARCHAR2)
 AvgLen: 9 NDV: 2 Nulls: 0 Density: 0.000050
 Histogram: Freq #Bkts: 2 UncompBkts: 10000 EndPtVals: 2 ActualVal: no 
 Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3 
 Table: ORDS Alias: ORDS
 Card: Original: 10000.000000 Rounded: 1 Computed: 1.000000 Non Adjusted: 1.000000
 Scan IO Cost (Disk) = 11.000000
 Scan CPU Cost (Disk) = 2149250.400000
 Cost of predicates:
 io = NOCOST, cpu = 50.000000, sel = 0.000100 flag = 2048 ("ORDS"."STATUS"='PENDING')
 Total Scan IO Cost = 11.000000 (scan (Disk))
 + 0.000000 (io filter eval) (= 0.000000 (per row) * 10000.000000 (#rows))
 = 11.000000
 Total Scan CPU Cost = 2149250.400000 (scan (Disk))
 + 500000.000000 (cpu filter eval) (= 50.000000 (per row) * 10000.000000 (#rows))
 = 2649250.400000
 Access Path: TableScan
 Cost: 11.070360 Resp: 11.070360 Degree: 0
 Cost_io: 11.000000 Cost_cpu: 2649250
 Resp_io: 11.000000 Resp_cpu: 2649250
 ****** Costing Index STATUS_IDX
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_SCAN
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_FILTER
 Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3 
 Access Path: index (AllEqRange)
 Index: STATUS_IDX
 resc_io: 2.000000 resc_cpu: 15483
 ix_sel: 1.0000e-04 ix_sel_with_filters: 1.0000e-04 
 Cost: 2.000411 Resp: 2.000411 Degree: 1
******** Begin index join costing ********
 ****** trying bitmap/domain indexes ******
 Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3 
 ****** Costing Index STATUS_IDX
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_SCAN
 SPD: Return code in qosdDSDirSetup: NOCTX, estType = INDEX_FILTER
 Estimated selectivity: 1.0000e-04 , endpoint value predicate, col: #3 
 Access Path: index (AllEqRange)
 Index: STATUS_IDX
 resc_io: 1.000000 resc_cpu: 8171
 ix_sel: 1.0000e-04 ix_sel_with_filters: 1.0000e-04 
 Cost: 1.000217 Resp: 1.000217 Degree: 0
 Bitmap nodes:
 Used STATUS_IDX
 Cost = 1.000221, sel = 1.0000e-04
 ****** finished trying bitmap/domain indexes ******
 ****** Costing Index ORDS
 Access Path: index (FullScan)
 Index: ORDS
 resc_io: 21.000000 resc_cpu: 2149550
 ix_sel: 1.000000 ix_sel_with_filters: 1.000000 
 Cost: 21.057089 Resp: 21.057089 Degree: 0

******** Cost index join ********

Index join: Joining index STATUS_IDX
Index join: Joining index ORDS
Ix HA Join
 Outer table: ORDS Alias: ORDS
 resc: 1.000217 card 1.000000 bytes: deg: 1 resp: 1.000217
 Inner table: <unnamed> Alias: 
 resc: 21.057089 card: 10000.000000 bytes: deg: 1 resp: 21.057089
 using dmeth: 2 #groups: 1
 Cost per ptn: 0.042498 #ptns: 1
 hash_area: 256 (max=41035) buildfrag: 1 probefrag: 32 ppasses: 1
 Hash join: Resc: 22.099804 Resp: 22.099804 [multiMatchCost=0.000000]

******** Index join cost ********

Cost: 22.099804 
******** End index join costing ********
 Best:: AccessPath: IndexRange
 Index: STATUS_IDX
 Cost: 2.000411 Degree: 1 Resp: 2.000411 Card: 1.000000 Bytes: 0.000000

***************************************




OPTIMIZER STATISTICS AND COMPUTATIONS
PJE: Bypassed; QB has a single table SEL$1 (#0)
***************************************
GENERAL PLANS
***************************************
Considering cardinality-based initial join order.
Permutations for Starting Table :0
Join order[1]: ORDS[ORDS]#0
***********************
Best so far: Table#: 0 cost: 2.000411 card: 1.000000 bytes: 13.000000
***********************
(newjo-stop-1) k:0, spcnt:0, perm:1, maxperm:2000

*********************************
Number of join permutations tried: 1
*********************************
Enumerating distribution method (advanced)

LORE: Trying or-Expansion on query block SEL$1 (#0)
Transfer Optimizer annotations for query block SEL$1 (#0)
AP: Checking validity for query block SEL$1, sqlid=03y2yj25g7d27
AutoDOP: Consider caching for ORDS[ORDS](obj#-1) 
cost:2.000411 blkSize:8192 objSize:35.00 marObjSize:33.25 bufSize:469047.00 affPercent:80 smallTab:YES affinitized:NO
kkecComputeAPDop: IO Dop: 0.000000 - CPU Dop: 0.000000
Replication not feasible for first input in join order
id=0 frofkks[i] (index start key) predicate="ORDS"."STATUS"='PENDING'
id=0 frofkke[i] (index stop key) predicate="ORDS"."STATUS"='PENDING'
Transfer optimizer annotations for ORDS[ORDS]
Final cost for query block SEL$1 (#0) - All Rows Plan:
 Best join order: 1
 Cost: 2.000411 Degree: 1 Card: 1.000000 Bytes: 13.000000
 Resc: 2.000411 Resc_io: 2.000000 Resc_cpu: 15483
 Resp: 2.000411 Resp_io: 2.000000 Resc_cpu: 15483
kkoqbc-subheap (delete addr=0x7f286bfd1810, in-use=41112, alloc=49272)
kkoqbc-end:
 :
 call(in-use=8888, alloc=65760), compile(in-use=88344, alloc=89040), execution(in-use=2936, alloc=4032)

kkoqbc: finish optimizing query block SEL$1 (#0)
CBRID: ORDS @ SEL$1 - no blocking operation found
apadrv-end
 :
 call(in-use=8888, alloc=65760), compile(in-use=89352, alloc=93184), execution(in-use=2936, alloc=4032)




CBRID: ORDS @ SEL$1 TableLookup allocation - Failure - bug-fix control
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
kkeCostToTime: using io calibrate stats maxpmbps=200(MB/s) 
 block_size=8192 mb_io_count=1 mb_io_size=8192 (bytes) 
 tot_io_size=0(MB) time=0(ms)
Starting SQL statement dump

user_id=114 user_name=U module=SQL*Plus action=
sql_id=03y2yj25g7d27 plan_hash_value=1807741764 problem_type=3
----- Current SQL Statement for this session (sql_id=03y2yj25g7d27) -----
select ordid from ords
where status = 'PENDING'
sql_text_length=49
sql=select ordid from ords
where status = 'PENDING'

----- Explain Plan Dump -----
----- Plan Table -----
 
============
Plan Table
============
---------------------------------------------------------+-----------------------------------+
| Id | Operation | Name | Rows | Bytes | Cost | Time |
---------------------------------------------------------+-----------------------------------+
| 0 | SELECT STATEMENT | | | | 2 | |
| 1 | TABLE ACCESS BY INDEX ROWID BATCHED | ORDS | 1 | 13 | 2 | 00:00:01 |
| 2 | INDEX RANGE SCAN | STATUS_IDX| 1 | | 1 | 00:00:01 |
---------------------------------------------------------+-----------------------------------+
Query Block Name / Object Alias(identified by operation id):
------------------------------------------------------------
 1 - SEL$1 / ORDS@SEL$1
 2 - SEL$1 / ORDS@SEL$1
------------------------------------------------------------
Predicate Information:
----------------------
2 - access("STATUS"='PENDING')
 
Content of other_xml column
===========================
 db_version : 12.2.0.1
 parse_schema : U
 plan_hash_full : 2670720227
 plan_hash : 1807741764
 plan_hash_2 : 2670720227
 Outline Data:
 /*+
 BEGIN_OUTLINE_DATA
 IGNORE_OPTIM_EMBEDDED_HINTS
 OPTIMIZER_FEATURES_ENABLE('12.2.0.1')
 DB_VERSION('12.2.0.1')
 ALL_ROWS
 OUTLINE_LEAF(@"SEL$1")
 INDEX_RS_ASC(@"SEL$1" "ORDS"@"SEL$1" ("ORDS"."STATUS"))
 BATCH_TABLE_ACCESS_BY_ROWID(@"SEL$1" "ORDS"@"SEL$1")
 END_OUTLINE_DATA
 */
 
Optimizer state dump:
Compilation Environment Dump
optimizer_mode_hinted = false
optimizer_features_hinted = 0.0.0
parallel_execution_enabled = true
parallel_query_forced_dop = 0
parallel_dml_forced_dop = 0
parallel_ddl_forced_degree = 0
parallel_ddl_forced_instances = 0
_query_rewrite_fudge = 90
optimizer_features_enable = 12.2.0.1
_optimizer_search_limit = 5
cpu_count = 1
active_instance_count = 1
parallel_threads_per_cpu = 2
hash_area_size = 131072
bitmap_merge_area_size = 1048576
sort_area_size = 65536
sort_area_retained_size = 0
_sort_elimination_cost_ratio = 0
_optimizer_block_size = 8192
_sort_multiblock_read_count = 2
_hash_multiblock_io_count = 0
_db_file_optimizer_read_count = 8
_optimizer_max_permutations = 2000
pga_aggregate_target = 1641472 KB
_pga_max_size = 328280 KB
_query_rewrite_maxdisjunct = 257
_smm_auto_min_io_size = 56 KB
_smm_auto_max_io_size = 248 KB
_smm_min_size = 1024 KB
_smm_max_size_static = 164140 KB
_smm_px_max_size_static = 820736 KB
_cpu_to_io = 0
_optimizer_undo_cost_change = 12.2.0.1
parallel_query_mode = enabled
parallel_dml_mode = disabled
parallel_ddl_mode = enabled
optimizer_mode = all_rows
sqlstat_enabled = false
_optimizer_percent_parallel = 101
_always_anti_join = choose
_always_semi_join = choose
_optimizer_mode_force = true
_partition_view_enabled = true
_always_star_transformation = false
_query_rewrite_or_error = false
_hash_join_enabled = true
cursor_sharing = exact
_b_tree_bitmap_plans = true
star_transformation_enabled = false
_optimizer_cost_model = choose
_new_sort_cost_estimate = true
_complex_view_merging = true
_unnest_subquery = true
_eliminate_common_subexpr = true
_pred_move_around = true
_convert_set_to_join = false
_push_join_predicate = true
_push_join_union_view = true
_fast_full_scan_enabled = true
_optim_enhance_nnull_detection = true
_parallel_broadcast_enabled = true
_px_broadcast_fudge_factor = 100
_ordered_nested_loop = true
_no_or_expansion = false
optimizer_index_cost_adj = 100
optimizer_index_caching = 0
_system_index_caching = 0
_disable_datalayer_sampling = false
query_rewrite_enabled = true
query_rewrite_integrity = enforced
_query_cost_rewrite = true
_query_rewrite_2 = true
_query_rewrite_1 = true
_query_rewrite_expression = true
_query_rewrite_jgmigrate = true
_query_rewrite_fpc = true
_query_rewrite_drj = false
_full_pwise_join_enabled = true
_partial_pwise_join_enabled = true
_left_nested_loops_random = true
_improved_row_length_enabled = true
_index_join_enabled = true
_enable_type_dep_selectivity = true
_improved_outerjoin_card = true
_optimizer_adjust_for_nulls = true
_optimizer_degree = 0
_use_column_stats_for_function = true
_subquery_pruning_enabled = true
_subquery_pruning_mv_enabled = false
_or_expand_nvl_predicate = true
_like_with_bind_as_equality = false
_table_scan_cost_plus_one = true
_cost_equality_semi_join = true
_default_non_equality_sel_check = true
_new_initial_join_orders = true
_oneside_colstat_for_equijoins = true
_optim_peek_user_binds = true
_minimal_stats_aggregation = true
_force_temptables_for_gsets = false
workarea_size_policy = auto
_smm_auto_cost_enabled = true
_gs_anti_semi_join_allowed = true
_optim_new_default_join_sel = true
optimizer_dynamic_sampling = 2
_pre_rewrite_push_pred = true
_optimizer_new_join_card_computation = true
_union_rewrite_for_gs = yes_gset_mvs
_generalized_pruning_enabled = true
_optim_adjust_for_part_skews = true
_force_datefold_trunc = false
statistics_level = typical
_optimizer_system_stats_usage = true
skip_unusable_indexes = true
_remove_aggr_subquery = true
_optimizer_push_down_distinct = 0
_dml_monitoring_enabled = true
_optimizer_undo_changes = false
_predicate_elimination_enabled = true
_nested_loop_fudge = 100
_project_view_columns = true
_local_communication_costing_enabled = true
_local_communication_ratio = 50
_query_rewrite_vop_cleanup = true
_slave_mapping_enabled = true
_optimizer_cost_based_transformation = linear
_optimizer_mjc_enabled = true
_right_outer_hash_enable = true
_spr_push_pred_refspr = true
_optimizer_cache_stats = false
_optimizer_cbqt_factor = 50
_optimizer_squ_bottomup = true
_fic_area_size = 131072
_optimizer_skip_scan_enabled = true
_optimizer_cost_filter_pred = false
_optimizer_sortmerge_join_enabled = true
_optimizer_join_sel_sanity_check = true
_mmv_query_rewrite_enabled = true
_bt_mmv_query_rewrite_enabled = true
_add_stale_mv_to_dependency_list = true
_distinct_view_unnesting = false
_optimizer_dim_subq_join_sel = true
_optimizer_disable_strans_sanity_checks = 0
_optimizer_compute_index_stats = true
_push_join_union_view2 = true
_optimizer_ignore_hints = false
_optimizer_random_plan = 0
_query_rewrite_setopgrw_enable = true
_optimizer_correct_sq_selectivity = true
_disable_function_based_index = false
_optimizer_join_order_control = 3
_optimizer_cartesian_enabled = true
_optimizer_starplan_enabled = true
_extended_pruning_enabled = true
_optimizer_push_pred_cost_based = true
_optimizer_null_aware_antijoin = true
_optimizer_extend_jppd_view_types = true
_sql_model_unfold_forloops = run_time
_enable_dml_lock_escalation = false
_bloom_filter_enabled = true
_update_bji_ipdml_enabled = 0
_optimizer_extended_cursor_sharing = udo
_dm_max_shared_pool_pct = 1
_optimizer_cost_hjsmj_multimatch = true
_optimizer_transitivity_retain = true
_px_pwg_enabled = true
optimizer_secure_view_merging = true
_optimizer_join_elimination_enabled = true
flashback_table_rpi = non_fbt
_optimizer_cbqt_no_size_restriction = true
_optimizer_enhanced_filter_push = true
_optimizer_filter_pred_pullup = true
_rowsrc_trace_level = 0
_simple_view_merging = true
_optimizer_rownum_pred_based_fkr = true
_optimizer_better_inlist_costing = all
_optimizer_self_induced_cache_cost = false
_optimizer_min_cache_blocks = 10
_optimizer_or_expansion = depth
_optimizer_order_by_elimination_enabled = true
_optimizer_outer_to_anti_enabled = true
_selfjoin_mv_duplicates = true
_dimension_skip_null = true
_force_rewrite_enable = false
_optimizer_star_tran_in_with_clause = true
_optimizer_complex_pred_selectivity = true
_optimizer_connect_by_cost_based = true
_gby_hash_aggregation_enabled = true
_globalindex_pnum_filter_enabled = true
_px_minus_intersect = true
_fix_control_key = 0
_force_slave_mapping_intra_part_loads = false
_force_tmp_segment_loads = false
_query_mmvrewrite_maxpreds = 10
_query_mmvrewrite_maxintervals = 5
_query_mmvrewrite_maxinlists = 5
_query_mmvrewrite_maxdmaps = 10
_query_mmvrewrite_maxcmaps = 20
_query_mmvrewrite_maxregperm = 512
_query_mmvrewrite_maxqryinlistvals = 500
_disable_parallel_conventional_load = false
_trace_virtual_columns = false
_replace_virtual_columns = true
_virtual_column_overload_allowed = true
_kdt_buffering = true
_first_k_rows_dynamic_proration = true
_optimizer_sortmerge_join_inequality = true
_optimizer_aw_stats_enabled = true
_bloom_pruning_enabled = true
result_cache_mode = MANUAL
_px_ual_serial_input = true
_optimizer_skip_scan_guess = false
_enable_row_shipping = true
_row_shipping_threshold = 100
_row_shipping_explain = false
transaction_isolation_level = read_commited
_optimizer_distinct_elimination = true
_optimizer_multi_level_push_pred = true
_optimizer_group_by_placement = true
_optimizer_rownum_bind_default = 10
_enable_query_rewrite_on_remote_objs = true
_optimizer_extended_cursor_sharing_rel = simple
_optimizer_adaptive_cursor_sharing = true
_direct_path_insert_features = 0
_optimizer_improve_selectivity = true
optimizer_use_pending_statistics = false
_optimizer_enable_density_improvements = true
_optimizer_aw_join_push_enabled = true
_optimizer_connect_by_combine_sw = true
_enable_pmo_ctas = 0
_optimizer_native_full_outer_join = force
_bloom_predicate_enabled = true
_optimizer_enable_extended_stats = true
_is_lock_table_for_ddl_wait_lock = 0
_pivot_implementation_method = choose
optimizer_capture_sql_plan_baselines = false
optimizer_use_sql_plan_baselines = true
_optimizer_star_trans_min_cost = 0
_optimizer_star_trans_min_ratio = 0
_with_subquery = OPTIMIZER
_optimizer_fkr_index_cost_bias = 10
_optimizer_use_subheap = true
parallel_degree_policy = manual
parallel_degree = 0
parallel_min_time_threshold = 10
_parallel_time_unit = 10
_optimizer_or_expansion_subheap = true
_optimizer_free_transformation_heap = true
_optimizer_reuse_cost_annotations = true
_result_cache_auto_size_threshold = 100
_result_cache_auto_time_threshold = 1000
_optimizer_nested_rollup_for_gset = 100
_nlj_batching_enabled = 1
parallel_query_default_dop = 0
is_recur_flags = 0
optimizer_use_invisible_indexes = false
flashback_data_archive_internal_cursor = 0
_optimizer_extended_stats_usage_control = 192
_parallel_syspls_obey_force = true
cell_offload_processing = true
_rdbms_internal_fplib_enabled = false
db_file_multiblock_read_count = 128
_bloom_folding_enabled = true
_mv_generalized_oj_refresh_opt = true
cell_offload_compaction = ADAPTIVE
cell_offload_plan_display = AUTO
_bloom_predicate_offload = true
_bloom_filter_size = 0
_bloom_pushing_max = 512
parallel_degree_limit = 65535
parallel_force_local = false
parallel_max_degree = 2
total_cpu_count = 1
_optimizer_coalesce_subqueries = true
_optimizer_fast_pred_transitivity = true
_optimizer_fast_access_pred_analysis = true
_optimizer_unnest_disjunctive_subq = true
_optimizer_unnest_corr_set_subq = true
_optimizer_distinct_agg_transform = true
_aggregation_optimization_settings = 0
_optimizer_connect_by_elim_dups = true
_optimizer_eliminate_filtering_join = true
_connect_by_use_union_all = true
dst_upgrade_insert_conv = true
advanced_queuing_internal_cursor = 0
_optimizer_unnest_all_subqueries = true
parallel_autodop = 0
parallel_ddldml = 0
_parallel_cluster_cache_policy = adaptive
_parallel_scalability = 50
iot_internal_cursor = 0
_optimizer_instance_count = 0
_optimizer_connect_by_cb_whr_only = false
_suppress_scn_chk_for_cqn = nosuppress_1466
_optimizer_join_factorization = true
_optimizer_use_cbqt_star_transformation = true
_optimizer_table_expansion = true
_and_pruning_enabled = true
_deferred_constant_folding_mode = DEFAULT
_optimizer_distinct_placement = true
partition_pruning_internal_cursor = 0
parallel_hinted = none
_sql_compatibility = 0
_optimizer_use_feedback = true
_optimizer_try_st_before_jppd = true
_dml_frequency_tracking = false
_optimizer_interleave_jppd = true
kkb_drop_empty_segments = 0
_px_partition_scan_enabled = true
_px_partition_scan_threshold = 64
_optimizer_false_filter_pred_pullup = true
_bloom_minmax_enabled = true
only_move_row = 0
_optimizer_enable_table_lookup_by_nl = true
parallel_execution_message_size = 16384
_px_loc_msg_cost = 1000
_px_net_msg_cost = 10000
_optimizer_generate_transitive_pred = true
_optimizer_cube_join_enabled = true
_optimizer_filter_pushdown = true
deferred_segment_creation = true
_optimizer_outer_join_to_inner = true
_allow_level_without_connect_by = false
_max_rwgs_groupings = 8192
_optimizer_hybrid_fpwj_enabled = true
_px_replication_enabled = true
ilm_filter = 0
_optimizer_partial_join_eval = true
_px_concurrent = true
_px_object_sampling_enabled = true
_px_back_to_parallel = OFF
_optimizer_unnest_scalar_sq = true
_optimizer_full_outer_join_to_outer = true
_px_filter_parallelized = true
_px_filter_skew_handling = true
_zonemap_use_enabled = true
_zonemap_control = 0
_optimizer_multi_table_outerjoin = true
_px_groupby_pushdown = force
_partition_advisor_srs_active = true
_optimizer_ansi_join_lateral_enhance = true
_px_parallelize_expression = true
_fast_index_maintenance = true
_optimizer_ansi_rearchitecture = true
_optimizer_gather_stats_on_load = true
ilm_access_tracking = 0
ilm_dml_timestamp = 0
_px_adaptive_dist_method = choose
_px_adaptive_dist_method_threshold = 0
_optimizer_batch_table_access_by_rowid = true
optimizer_adaptive_reporting_only = false
_optimizer_ads_max_table_count = 0
_optimizer_ads_time_limit = 0
_optimizer_ads_use_result_cache = true
_px_wif_dfo_declumping = choose
_px_wif_extend_distribution_keys = true
_px_join_skew_handling = true
_px_join_skew_ratio = 10
_px_join_skew_minfreq = 30
CLI_internal_cursor = 0
_parallel_fault_tolerance_enabled = false
_parallel_fault_tolerance_threshold = 3
_px_partial_rollup_pushdown = adaptive
_px_single_server_enabled = true
_optimizer_dsdir_usage_control = 0
_px_cpu_autodop_enabled = true
_px_cpu_process_bandwidth = 200
_sql_hvshare_threshold = 0
_px_tq_rowhvs = true
_optimizer_use_gtt_session_stats = true
_optimizer_proc_rate_level = basic
_px_hybrid_TSM_HWMB_load = true
_optimizer_use_histograms = true
PMO_altidx_rebuild = 0
_cell_offload_expressions = true
_cell_materialize_virtual_columns = true
_cell_materialize_all_expressions = false
_rowsets_enabled = true
_rowsets_target_maxsize = 524288
_rowsets_max_rows = 256
_use_hidden_partitions = 0
_px_monitor_load = false
_px_load_monitor_threshold = 10000
_px_numa_support_enabled = false
total_processor_group_count = 1
_adaptive_window_consolidator_enabled = true
_optimizer_strans_adaptive_pruning = true
_bloom_rm_filter = false
_optimizer_null_accepting_semijoin = true
_long_varchar_allow_IOT = 0
_parallel_ctas_enabled = true
_cell_offload_complex_processing = true
_optimizer_performance_feedback = off
_optimizer_proc_rate_source = DEFAULT
_hashops_prefetch_size = 4
_cell_offload_sys_context = true
_multi_commit_global_index_maint = 0
_stat_aggs_one_pass_algorithm = false
_dbg_scan = 2048
_oltp_comp_dbg_scan = 0
_arch_comp_dbg_scan = 0
_optimizer_gather_feedback = true
_upddel_dba_hash_mask_bits = 0
_px_pwmr_enabled = true
_px_cdb_view_enabled = true
_bloom_sm_enabled = true
_optimizer_cluster_by_rowid = true
_optimizer_cluster_by_rowid_control = 129
_partition_cdb_view_enabled = true
_common_data_view_enabled = true
_pred_push_cdb_view_enabled = true
_rowsets_cdb_view_enabled = true
_distinct_agg_optimization_gsets = choose
_array_cdb_view_enabled = true
_optimizer_adaptive_plan_control = 0
_optimizer_adaptive_random_seed = 0
_optimizer_cbqt_or_expansion = on
_inmemory_dbg_scan = 0
_gby_vector_aggregation_enabled = true
_optimizer_vector_transformation = true
_optimizer_vector_fact_dim_ratio = 10
_key_vector_max_size = 0
_key_vector_predicate_enabled = true
_key_vector_predicate_threshold = 0
_key_vector_caching = false
_vector_operations_control = 0
_optimizer_vector_min_fact_rows = 10000000
parallel_dblink = 0
_px_scalable_invdist = true
_key_vector_offload = predicate
_optimizer_aggr_groupby_elim = true
_optimizer_reduce_groupby_key = true
_vector_serialize_temp_threshold = 1000
_always_vector_transformation = false
_optimizer_cluster_by_rowid_batched = true
_object_link_fixed_enabled = true
optimizer_inmemory_aware = true
_optimizer_inmemory_table_expansion = true
_optimizer_inmemory_gen_pushable_preds = true
_optimizer_inmemory_autodop = true
_optimizer_inmemory_access_path = true
_optimizer_inmemory_bloom_filter = true
_parallel_inmemory_min_time_threshold = 1
_parallel_inmemory_time_unit = 1
_rc_sys_obj_enabled = true
_optimizer_nlj_hj_adaptive_join = true
_indexable_con_id = true
_bloom_serial_filter = on
inmemory_force = default
inmemory_query = enable
_inmemory_query_scan = true
_inmemory_query_fetch_by_rowid = false
_inmemory_pruning = on
_px_autodop_pq_overhead = true
_px_external_table_default_stats = true
_optimizer_key_vector_aggr_factor = 75
_optimizer_vector_cost_adj = 100
_cdb_cross_container = 65535
_cdb_view_parallel_degree = 65535
_optimizer_hll_entry = 4096
_px_cdb_view_join_enabled = true
inmemory_size = 0
_external_table_smart_scan = hadoop_only
_optimizer_inmemory_minmax_pruning = true
_approx_cnt_distinct_gby_pushdown = choose
_approx_cnt_distinct_optimization = 0
_optimizer_ads_use_partial_results = true
_query_execution_time_limit = 0
_optimizer_inmemory_cluster_aware_dop = true
_optimizer_db_blocks_buffers = 0 KB
_query_rewrite_use_on_query_computation = true
_px_scalable_invdist_mcol = true
_optimizer_bushy_join = off
_optimizer_bushy_fact_dim_ratio = 20
_optimizer_bushy_fact_min_size = 100000
_optimizer_bushy_cost_factor = 100
_rmt_for_table_redef_enabled = true
_optimizer_eliminate_subquery = true
_sqlexec_cache_aware_hash_join_enabled = true
_zonemap_usage_tracking = true
_sqlexec_hash_based_distagg_enabled = false
_sqlexec_disable_hash_based_distagg_tiv = false
_sqlexec_hash_based_distagg_ssf_enabled = true
_sqlexec_distagg_optimization_settings = 0
approx_for_aggregation = false
approx_for_count_distinct = false
_optimizer_union_all_gsets = true
_rowsets_use_encoding = true
_rowsets_max_enc_rows = 64
_optimizer_enhanced_join_elimination = true
_optimizer_multicol_join_elimination = true
_key_vector_create_pushdown_threshold = 20000
_optimizer_enable_plsql_stats = true
_recursive_with_parallel = true
_recursive_with_branch_iterations = 7
_px_dist_agg_partial_rollup_pushdown = adaptive
_px_adaptive_dist_bypass_enabled = true
_enable_view_pdb = true
_optimizer_key_vector_pruning_enabled = true
_pwise_distinct_enabled = true
_recursive_with_using_temp_table = false
_partition_read_only = true
_sql_alias_scope = true
_cdb_view_no_skip_migrate = false
_approx_perc_sampling_err_rate = 2
_sqlexec_encoding_aware_hj_enabled = true
rim_node_exist = 0
_enable_containers_subquery = false
_force_containers_subquery = false
_cell_offload_vector_groupby = true
_vector_encoding_mode = manual
_ds_xt_split_count = 1
_ds_sampling_method = PROGRESSIVE
_optimizer_ads_use_spd_cache = true
_optimizer_use_table_scanrate = HADOOP_ONLY
_optimizer_use_xt_rowid = true
_xt_sampling_scan_granules = on
_recursive_with_control = 0
_sqlexec_use_rwo_aware_expr_analysis = true
_optimizer_band_join_aware = true
_optimizer_vector_base_dim_fact_factor = 200
approx_for_percentile = none
_approx_percentile_optimization = 0
_projection_pushdown = true
_px_object_sampling = 200
_px_reuse_server_group = true
_optimizer_adaptive_plans_continuous = false
_optimizer_adaptive_plans_iterative = false
_ds_enable_view_sampling = true
_optimizer_generate_ptf_implied_preds = true
_optimizer_inmemory_use_stored_stats = AUTO
_cdb_special_old_xplan = false
uniaud_internal_cursor = 0
_kd_dbg_control = 0
_mv_access_compute_fresh_data = on
_bloom_filter_ratio = 35
_optimizer_control_shard_qry_processing = 65534
containers_parallel_degree = 65535
sql_from_coordinator = 0
_xt_sampling_scan_granules_min_granules = 1
_in_memory_cdt = LIMITED
_in_memory_cdt_maxpx = 4
_px_partition_load_dist_threshold = 64
_px_adaptive_dist_bypass_optimization = 1
_optimizer_interleave_or_expansion = true
_bloom_use_crchash = BASIC
optimizer_adaptive_plans = true
optimizer_adaptive_statistics = false
_optimizer_use_feedback_for_join = false
_optimizer_ads_for_pq = false
_px_join_skewed_values_count = 0
Bug Fix Control Environment
 fix 3834770 = 1 
 fix 3746511 = enabled
 fix 4519016 = enabled
 fix 3118776 = enabled
 fix 4488689 = enabled
 fix 2194204 = disabled
 fix 2660592 = enabled
 fix 2320291 = enabled
 fix 2324795 = enabled
 fix 4308414 = enabled
 fix 3499674 = disabled
 fix 4569940 = enabled
 fix 4631959 = enabled
 fix 4519340 = enabled
 fix 4550003 = enabled
 fix 1403283 = enabled
 fix 4554846 = enabled
 fix 4602374 = enabled
 fix 4584065 = enabled
 fix 4545833 = enabled
 fix 4611850 = enabled
 fix 4663698 = enabled
 fix 4663804 = enabled
 fix 4666174 = enabled
 fix 4567767 = enabled
 fix 4556762 = 15 
 fix 4728348 = enabled
 fix 4708389 = enabled
 fix 4175830 = enabled
 fix 4752814 = enabled
 fix 4583239 = enabled
 fix 4386734 = enabled
 fix 4887636 = enabled
 fix 4483240 = enabled
 fix 4872602 = disabled
 fix 4711525 = enabled
 fix 4545802 = enabled
 fix 4605810 = enabled
 fix 4704779 = enabled
 fix 4900129 = enabled
 fix 4924149 = enabled
 fix 4663702 = enabled
 fix 4878299 = enabled
 fix 4658342 = enabled
 fix 4881533 = enabled
 fix 4676955 = enabled
 fix 4273361 = enabled
 fix 4967068 = enabled
 fix 4969880 = disabled
 fix 5005866 = enabled
 fix 5015557 = enabled
 fix 4705343 = enabled
 fix 4904838 = enabled
 fix 4716096 = enabled
 fix 4483286 = disabled
 fix 4722900 = enabled
 fix 4615392 = enabled
 fix 5096560 = enabled
 fix 5029464 = enabled
 fix 4134994 = enabled
 fix 4904890 = enabled
 fix 5104624 = enabled
 fix 5014836 = enabled
 fix 4768040 = enabled
 fix 4600710 = enabled
 fix 5129233 = enabled
 fix 4595987 = enabled
 fix 4908162 = enabled
 fix 5139520 = enabled
 fix 5084239 = enabled
 fix 5143477 = disabled
 fix 2663857 = enabled
 fix 4717546 = enabled
 fix 5240264 = disabled
 fix 5099909 = enabled
 fix 5240607 = enabled
 fix 5195882 = enabled
 fix 5220356 = enabled
 fix 5263572 = enabled
 fix 5385629 = enabled
 fix 5302124 = enabled
 fix 5391942 = enabled
 fix 5384335 = enabled
 fix 5482831 = enabled
 fix 4158812 = enabled
 fix 5387148 = enabled
 fix 5383891 = enabled
 fix 5466973 = enabled
 fix 5396162 = enabled
 fix 5394888 = enabled
 fix 5395291 = enabled
 fix 5236908 = enabled
 fix 5509293 = enabled
 fix 5449488 = enabled
 fix 5567933 = enabled
 fix 5570494 = enabled
 fix 5288623 = enabled
 fix 5505995 = enabled
 fix 5505157 = enabled
 fix 5112460 = enabled
 fix 5554865 = enabled
 fix 5112260 = enabled
 fix 5112352 = enabled
 fix 5547058 = enabled
 fix 5618040 = enabled
 fix 5585313 = enabled
 fix 5547895 = enabled
 fix 5634346 = enabled
 fix 5620485 = enabled
 fix 5483301 = enabled
 fix 5657044 = enabled
 fix 5694984 = enabled
 fix 5868490 = enabled
 fix 5650477 = enabled
 fix 5611962 = enabled
 fix 4279274 = enabled
 fix 5741121 = enabled
 fix 5714944 = enabled
 fix 5391505 = enabled
 fix 5762598 = enabled
 fix 5578791 = enabled
 fix 5259048 = enabled
 fix 5882954 = enabled
 fix 2492766 = enabled
 fix 5707608 = enabled
 fix 5891471 = enabled
 fix 5884780 = enabled
 fix 5680702 = enabled
 fix 5371452 = enabled
 fix 5838613 = enabled
 fix 5949981 = enabled
 fix 5624216 = enabled
 fix 5741044 = enabled
 fix 5976822 = enabled
 fix 6006457 = enabled
 fix 5872956 = enabled
 fix 5923644 = enabled
 fix 5943234 = enabled
 fix 5844495 = enabled
 fix 4168080 = enabled
 fix 6020579 = enabled
 fix 5842686 = disabled
 fix 5996801 = enabled
 fix 5593639 = enabled
 fix 6133948 = enabled
 fix 3151991 = enabled
 fix 6146906 = enabled
 fix 6239909 = enabled
 fix 6267621 = enabled
 fix 5909305 = enabled
 fix 6279918 = enabled
 fix 6141818 = enabled
 fix 6151963 = enabled
 fix 6251917 = enabled
 fix 6282093 = enabled
 fix 6119510 = enabled
 fix 6119382 = enabled
 fix 3801750 = enabled
 fix 5705630 = disabled
 fix 5944076 = enabled
 fix 5406763 = enabled
 fix 6070954 = enabled
 fix 6282944 = enabled
 fix 6138746 = enabled
 fix 6082745 = enabled
 fix 3426050 = enabled
 fix 599680 = enabled
 fix 6062266 = enabled
 fix 6087237 = enabled
 fix 6122894 = enabled
 fix 6377505 = enabled
 fix 5893768 = enabled
 fix 6163564 = enabled
 fix 6073325 = enabled
 fix 6188881 = enabled
 fix 6007259 = enabled
 fix 6239971 = enabled
 fix 5284200 = disabled
 fix 6042205 = enabled
 fix 6051211 = enabled
 fix 6434668 = enabled
 fix 6438752 = enabled
 fix 5936366 = enabled
 fix 6439032 = enabled
 fix 6438892 = enabled
 fix 6006300 = enabled
 fix 5947231 = enabled
 fix 5416118 = 1 
 fix 6365442 = 1 
 fix 6239039 = enabled
 fix 6502845 = enabled
 fix 6913094 = enabled
 fix 6029469 = enabled
 fix 5919513 = enabled
 fix 6057611 = enabled
 fix 6469667 = enabled
 fix 6608941 = disabled
 fix 6368066 = enabled
 fix 6329318 = enabled
 fix 6656356 = enabled
 fix 4507997 = enabled
 fix 6671155 = enabled
 fix 6694548 = enabled
 fix 6688200 = enabled
 fix 6612471 = enabled
 fix 6708183 = disabled
 fix 6326934 = enabled
 fix 6520717 = disabled
 fix 6714199 = enabled
 fix 6681545 = enabled
 fix 6748058 = enabled
 fix 6167716 = enabled
 fix 6674254 = enabled
 fix 6468287 = enabled
 fix 6503543 = enabled
 fix 6808773 = disabled
 fix 6766962 = enabled
 fix 6120483 = enabled
 fix 6670551 = enabled
 fix 6771838 = enabled
 fix 6626018 = disabled
 fix 6530596 = enabled
 fix 6778642 = enabled
 fix 6699059 = enabled
 fix 6376551 = enabled
 fix 6429113 = enabled
 fix 6782437 = enabled
 fix 6776808 = enabled
 fix 6765823 = enabled
 fix 6768660 = enabled
 fix 6782665 = enabled
 fix 6610822 = enabled
 fix 6514189 = enabled
 fix 6818410 = enabled
 fix 6827696 = enabled
 fix 6773613 = enabled
 fix 5902962 = enabled
 fix 6956212 = enabled
 fix 3056297 = enabled
 fix 6440977 = disabled
 fix 6972291 = disabled
 fix 6904146 = enabled
 fix 6221403 = enabled
 fix 5475051 = enabled
 fix 6845871 = enabled
 fix 5468809 = enabled
 fix 6917633 = enabled
 fix 4444536 = disabled
 fix 6955210 = enabled
 fix 6994194 = enabled
 fix 6399597 = disabled
 fix 6951776 = enabled
 fix 5648287 = 3 
 fix 6987082 = disabled
 fix 7132036 = enabled
 fix 6980350 = enabled
 fix 5199213 = enabled
 fix 7138405 = enabled
 fix 7148689 = enabled
 fix 6820988 = enabled
 fix 7032684 = enabled
 fix 6617866 = enabled
 fix 7155968 = enabled
 fix 7127980 = enabled
 fix 6982954 = enabled
 fix 7241819 = enabled
 fix 6897034 = enabled
 fix 7236148 = enabled
 fix 7298570 = enabled
 fix 7249095 = enabled
 fix 7314499 = enabled
 fix 7324224 = enabled
 fix 7289023 = enabled
 fix 7237571 = enabled
 fix 7116357 = enabled
 fix 7345484 = enabled
 fix 7375179 = enabled
 fix 6430500 = disabled
 fix 5897486 = enabled
 fix 6774209 = enabled
 fix 7306637 = enabled
 fix 6451322 = enabled
 fix 7208131 = enabled
 fix 7388652 = enabled
 fix 7127530 = enabled
 fix 6751206 = enabled
 fix 6669103 = enabled
 fix 7430474 = enabled
 fix 6990305 = enabled
 fix 7043307 = enabled
 fix 3120429 = enabled
 fix 7452823 = disabled
 fix 6838105 = enabled
 fix 6769711 = enabled
 fix 7170213 = enabled
 fix 6528872 = enabled
 fix 7295298 = enabled
 fix 5922070 = enabled
 fix 7259468 = enabled
 fix 6418552 = enabled
 fix 4619997 = enabled
 fix 7524366 = enabled
 fix 6942476 = enabled
 fix 6418771 = enabled
 fix 7375077 = enabled
 fix 5400639 = enabled
 fix 4570921 = enabled
 fix 7426911 = enabled
 fix 5099019 = disabled
 fix 7528216 = enabled
 fix 7521266 = enabled
 fix 7385140 = enabled
 fix 7576516 = enabled
 fix 7573526 = enabled
 fix 7576476 = enabled
 fix 7165898 = enabled
 fix 7263214 = enabled
 fix 3320140 = enabled
 fix 7555510 = enabled
 fix 7613118 = enabled
 fix 7597059 = enabled
 fix 7558911 = enabled
 fix 5520732 = enabled
 fix 7679490 = disabled
 fix 7449971 = enabled
 fix 3628118 = enabled
 fix 4370840 = enabled
 fix 7281191 = enabled
 fix 7519687 = enabled
 fix 5029592 = 3 
 fix 6012093 = 1 
 fix 6053861 = disabled
 fix 6941515 = disabled
 fix 7696414 = enabled
 fix 7272039 = enabled
 fix 7834811 = enabled
 fix 7640597 = enabled
 fix 7341616 = enabled
 fix 7168184 = enabled
 fix 399198 = enabled
 fix 7831070 = enabled
 fix 7676897 = disabled
 fix 7414637 = enabled
 fix 7585456 = enabled
 fix 8202421 = enabled
 fix 7658097 = disabled
 fix 8251486 = enabled
 fix 7132684 = enabled
 fix 7512227 = enabled
 fix 6972987 = enabled
 fix 7199035 = enabled
 fix 8243446 = enabled
 fix 7650462 = enabled
 fix 6720701 = enabled
 fix 7592673 = enabled
 fix 7718694 = enabled
 fix 7534027 = enabled
 fix 7708267 = enabled
 fix 5716785 = enabled
 fix 7356191 = enabled
 fix 7679161 = enabled
 fix 7597159 = enabled
 fix 7499258 = enabled
 fix 8328363 = enabled
 fix 7452863 = enabled
 fix 8284930 = enabled
 fix 7298626 = enabled
 fix 7657126 = enabled
 fix 8371884 = enabled
 fix 8318020 = enabled
 fix 8255423 = enabled
 fix 7135745 = enabled
 fix 8356253 = enabled
 fix 7534257 = enabled
 fix 8323407 = enabled
 fix 7539815 = enabled
 fix 8289316 = enabled
 fix 8447850 = enabled
 fix 7675944 = enabled
 fix 8355120 = enabled
 fix 7176746 = enabled
 fix 8442891 = enabled
 fix 8373261 = enabled
 fix 7679164 = enabled
 fix 7670533 = enabled
 fix 8408665 = enabled
 fix 8491399 = enabled
 fix 8348392 = enabled
 fix 8348585 = enabled
 fix 8335178 = enabled
 fix 8247017 = enabled
 fix 7325597 = enabled
 fix 8531490 = enabled
 fix 6163600 = enabled
 fix 8589278 = disabled
 fix 8557992 = enabled
 fix 7556098 = enabled
 fix 8580883 = enabled
 fix 5892599 = disabled
 fix 8609714 = enabled
 fix 8619631 = disabled
 fix 8672915 = enabled
 fix 8514561 = enabled
 fix 8213977 = enabled
 fix 8560951 = disabled
 fix 8578587 = enabled
 fix 8287870 = enabled
 fix 8467123 = enabled
 fix 8602185 = enabled
 fix 8519457 = enabled
 fix 3335182 = enabled
 fix 8602840 = enabled
 fix 8725296 = enabled
 fix 8628970 = enabled
 fix 6754080 = enabled
 fix 8767442 = enabled
 fix 8760135 = enabled
 fix 8644935 = enabled
 fix 8352378 = enabled
 fix 8685327 = enabled
 fix 8763472 = enabled
 fix 8773324 = enabled
 fix 8813674 = enabled
 fix 8532236 = enabled
 fix 8629716 = enabled
 fix 7277732 = enabled
 fix 8692170 = enabled
 fix 8900973 = enabled
 fix 8919133 = enabled
 fix 8927050 = enabled
 fix 8551880 = enabled
 fix 8901237 = enabled
 fix 8812372 = enabled
 fix 6236862 = enabled
 fix 8528517 = enabled
 fix 7215982 = enabled
 fix 8214022 = enabled
 fix 8595392 = enabled
 fix 8890233 = enabled
 fix 8999317 = enabled
 fix 9004800 = enabled
 fix 8986163 = enabled
 fix 8855396 = enabled
 fix 8800514 = 20 
 fix 9007859 = enabled
 fix 8198783 = disabled
 fix 9053879 = enabled
 fix 6086930 = enabled
 fix 7641601 = enabled
 fix 9052506 = enabled
 fix 9103775 = enabled
 fix 9047975 = enabled
 fix 8893626 = enabled
 fix 9111170 = enabled
 fix 8971829 = enabled
 fix 7628358 = enabled
 fix 9125151 = enabled
 fix 9039715 = enabled
 fix 9106224 = enabled
 fix 9185228 = enabled
 fix 9206747 = enabled
 fix 9088510 = enabled
 fix 9143856 = enabled
 fix 8833381 = enabled
 fix 8949971 = enabled
 fix 8951812 = enabled
 fix 9148171 = enabled
 fix 8706652 = enabled
 fix 9245114 = enabled
 fix 8802198 = enabled
 fix 9011016 = enabled
 fix 9265681 = enabled
 fix 7284269 = enabled
 fix 9272549 = enabled
 fix 8917507 = 7 
 fix 8531463 = enabled
 fix 9263333 = enabled
 fix 8675087 = enabled
 fix 8896955 = enabled
 fix 9041934 = enabled
 fix 9344709 = enabled
 fix 9024933 = enabled
 fix 9033718 = enabled
 fix 9240455 = enabled
 fix 9081848 = enabled
 fix 5982893 = enabled
 fix 9287401 = enabled
 fix 8590021 = enabled
 fix 9340120 = enabled
 fix 9355794 = enabled
 fix 9356656 = enabled
 fix 9385634 = enabled
 fix 9069046 = enabled
 fix 9239337 = enabled
 fix 9300228 = enabled
 fix 9298010 = enabled
 fix 9384170 = enabled
 fix 9407929 = enabled
 fix 8836806 = enabled
 fix 9344055 = enabled
 fix 9274675 = enabled
 fix 9203723 = enabled
 fix 9443476 = enabled
 fix 9195582 = enabled
 fix 8226666 = enabled
 fix 9433490 = enabled
 fix 9065494 = enabled
 fix 9303766 = enabled
 fix 9437283 = enabled
 fix 9116214 = enabled
 fix 9456688 = enabled
 fix 9456746 = disabled
 fix 9342979 = enabled
 fix 9465425 = enabled
 fix 9092442 = enabled
 fix 4926618 = enabled
 fix 8792846 = enabled
 fix 9474259 = enabled
 fix 9495669 = disabled
 fix 6472966 = enabled
 fix 6408301 = enabled
 fix 9380298 = disabled
 fix 8500130 = enabled
 fix 9584723 = enabled
 fix 9270951 = enabled
 fix 9508254 = enabled
 fix 9593680 = enabled
 fix 9196440 = disabled
 fix 9309281 = enabled
 fix 8693158 = enabled
 fix 9381638 = enabled
 fix 9383967 = enabled
 fix 7711900 = enabled
 fix 9218587 = enabled
 fix 9728438 = enabled
 fix 9038395 = enabled
 fix 9577300 = enabled
 fix 9171113 = enabled
 fix 8973745 = enabled
 fix 9732434 = enabled
 fix 8937971 = disabled
 fix 9102474 = enabled
 fix 9243499 = enabled
 fix 9791810 = enabled
 fix 9785632 = enabled
 fix 9898249 = enabled
 fix 9153459 = enabled
 fix 9680430 = enabled
 fix 9841679 = enabled
 fix 9912503 = enabled
 fix 9850461 = enabled
 fix 9762592 = 3 
 fix 9716877 = enabled
 fix 9814067 = enabled
 fix 9776736 = enabled
 fix 8349119 = enabled
 fix 9958518 = enabled
 fix 10041074 = enabled
 fix 10004943 = enabled
 fix 9980661 = enabled
 fix 9554026 = enabled
 fix 9593547 = enabled
 fix 9833381 = enabled
 fix 10043801 = enabled
 fix 9940732 = enabled
 fix 9702850 = enabled
 fix 9659125 = 0 
 fix 9668086 = enabled
 fix 9476520 = enabled
 fix 10158107 = enabled
 fix 10148457 = enabled
 fix 10106423 = enabled
 fix 9721439 = disabled
 fix 10162430 = enabled
 fix 10134677 = enabled
 fix 10182051 = 3 
 fix 10175079 = enabled
 fix 10026972 = enabled
 fix 10192889 = enabled
 fix 3566843 = enabled
 fix 9550277 = disabled
 fix 10236566 = enabled
 fix 10227392 = enabled
 fix 8961143 = enabled
 fix 9721228 = enabled
 fix 10080014 = enabled
 fix 10101489 = enabled
 fix 9929609 = enabled
 fix 10015652 = enabled
 fix 9918661 = enabled
 fix 10333395 = enabled
 fix 10336499 = disabled
 fix 10182672 = enabled
 fix 9578670 = enabled
 fix 10232225 = enabled
 fix 10330090 = enabled
 fix 10232623 = enabled
 fix 9630092 = disabled
 fix 10271790 = enabled
 fix 9227576 = enabled
 fix 10197666 = enabled
 fix 10376744 = enabled
 fix 8274946 = enabled
 fix 10046368 = enabled
 fix 9569678 = enabled
 fix 9002661 = enabled
 fix 10038373 = enabled
 fix 9477688 = enabled
 fix 10013899 = enabled
 fix 9832338 = enabled
 fix 10623119 = enabled
 fix 9898066 = enabled
 fix 11699884 = enabled
 fix 10640430 = enabled
 fix 10428450 = enabled
 fix 10117760 = enabled
 fix 11720178 = enabled
 fix 9881812 = enabled
 fix 10428278 = enabled
 fix 11741436 = enabled
 fix 11668189 = enabled
 fix 10359631 = enabled
 fix 9829887 = enabled
 fix 8275054 = enabled
 fix 11814428 = enabled
 fix 11676888 = disabled
 fix 10348427 = enabled
 fix 11843512 = enabled
 fix 11657468 = enabled
 fix 11877160 = enabled
 fix 11738631 = enabled
 fix 11744086 = enabled
 fix 11830663 = enabled
 fix 11853331 = enabled
 fix 9748015 = enabled
 fix 11834739 = enabled
 fix 6055658 = enabled
 fix 11740670 = enabled
 fix 11940126 = enabled
 fix 12315002 = enabled
 fix 8275023 = enabled
 fix 12352373 = enabled
 fix 12390139 = enabled
 fix 11935589 = enabled
 fix 10226906 = enabled
 fix 12327548 = enabled
 fix 12388221 = enabled
 fix 11892888 = enabled
 fix 11814265 = enabled
 fix 10230017 = enabled
 fix 12341619 = enabled
 fix 11744016 = enabled
 fix 10216738 = enabled
 fix 10298302 = enabled
 fix 12563419 = enabled
 fix 12399886 = enabled
 fix 12584007 = enabled
 fix 11881047 = enabled
 fix 12534597 = enabled
 fix 8683604 = enabled
 fix 12410972 = enabled
 fix 7147087 = enabled
 fix 11846314 = enabled
 fix 12535474 = enabled
 fix 12561635 = enabled
 fix 12432426 = enabled
 fix 9913117 = enabled
 fix 12432089 = enabled
 fix 12587690 = enabled
 fix 11858963 = enabled
 fix 12569245 = enabled
 fix 12569300 = enabled
 fix 7308975 = disabled
 fix 12569316 = enabled
 fix 12569321 = enabled
 fix 12335617 = enabled
 fix 9002958 = enabled
 fix 12591120 = enabled
 fix 11876260 = enabled
 fix 12313574 = enabled
 fix 12569713 = enabled
 fix 12348584 = enabled
 fix 10420220 = enabled
 fix 12559453 = enabled
 fix 12727549 = enabled
 fix 12728203 = enabled
 fix 12828479 = enabled
 fix 10181153 = enabled
 fix 9971371 = disabled
 fix 12864791 = enabled
 fix 12810427 = enabled
 fix 12605402 = enabled
 fix 12861609 = enabled
 fix 12915337 = enabled
 fix 12942119 = enabled
 fix 12622441 = enabled
 fix 11072246 = enabled
 fix 12739252 = enabled
 fix 12953765 = enabled
 fix 12905116 = enabled
 fix 12978495 = enabled
 fix 9633142 = disabled
 fix 3639130 = enabled
 fix 12827166 = enabled
 fix 12944193 = enabled
 fix 13020272 = enabled
 fix 12673320 = enabled
 fix 12975771 = enabled
 fix 12882092 = enabled
 fix 12379334 = enabled
 fix 12723414 = enabled
 fix 9488694 = disabled
 fix 13255388 = 10 
 fix 11727871 = enabled
 fix 13110511 = enabled
 fix 13075297 = enabled
 fix 13345888 = enabled
 fix 11657903 = disabled
 fix 13396096 = enabled
 fix 12591379 = enabled
 fix 13398214 = enabled
 fix 13382280 = enabled
 fix 12869367 = enabled
 fix 12999577 = enabled
 fix 12433153 = enabled
 fix 9094254 = enabled
 fix 13104618 = enabled
 fix 13524237 = enabled
 fix 11813257 = enabled
 fix 13489017 = enabled
 fix 12954320 = enabled
 fix 13555551 = enabled
 fix 13499154 = enabled
 fix 13036910 = enabled
 fix 13545925 = enabled
 fix 13545956 = enabled
 fix 13545989 = enabled
 fix 12839247 = enabled
 fix 9858777 = enabled
 fix 13568366 = enabled
 fix 13393357 = enabled
 fix 13040171 = enabled
 fix 13406619 = enabled
 fix 13594757 = enabled
 fix 13543207 = enabled
 fix 13594712 = enabled
 fix 12648629 = enabled
 fix 13549808 = enabled
 fix 13634700 = enabled
 fix 8792821 = enabled
 fix 13454409 = enabled
 fix 13146487 = enabled
 fix 13592248 = enabled
 fix 11689541 = enabled
 fix 13527374 = enabled
 fix 13430622 = enabled
 fix 13704562 = enabled
 fix 9547706 = enabled
 fix 13497184 = enabled
 fix 13704977 = enabled
 fix 13734456 = enabled
 fix 13070532 = enabled
 fix 6520878 = enabled
 fix 2273284 = enabled
 fix 13786127 = enabled
 fix 13065064 = enabled
 fix 13972896 = enabled
 fix 11843466 = enabled
 fix 13777823 = enabled
 fix 13616573 = enabled
 fix 13831671 = enabled
 fix 13652216 = enabled
 fix 13912192 = enabled
 fix 13909909 = enabled
 fix 13849486 = enabled
 fix 13321547 = enabled
 fix 13886606 = disabled
 fix 14013502 = enabled
 fix 13850256 = enabled
 fix 13929275 = enabled
 fix 11732303 = enabled
 fix 13906168 = enabled
 fix 14055128 = enabled
 fix 12856200 = enabled
 fix 14008590 = enabled
 fix 13627489 = disabled
 fix 13961105 = enabled
 fix 13583722 = enabled
 fix 13076238 = enabled
 fix 13936229 = enabled
 fix 9852856 = enabled
 fix 3904125 = enabled
 fix 5910187 = enabled
 fix 10068316 = enabled
 fix 14029891 = enabled
 fix 4215125 = enabled
 fix 13711083 = enabled
 fix 13973691 = enabled
 fix 13486825 = enabled
 fix 13682550 = enabled
 fix 13826669 = enabled
 fix 14033181 = enabled
 fix 13836796 = enabled
 fix 12555499 = enabled
 fix 13568506 = enabled
 fix 9891396 = enabled
 fix 13699643 = enabled
 fix 13835788 = enabled
 fix 7271518 = enabled
 fix 14127824 = enabled
 fix 12557401 = enabled
 fix 13350470 = enabled
 fix 14095362 = enabled
 fix 13000118 = enabled
 fix 14254795 = enabled
 fix 14012261 = enabled
 fix 14241953 = enabled
 fix 14221012 = enabled
 fix 13329748 = enabled
 fix 13843964 = enabled
 fix 14254052 = enabled
 fix 13814866 = enabled
 fix 14255600 = disabled
 fix 13735304 = enabled
 fix 14142884 = disabled
 fix 12909121 = enabled
 fix 14464068 = enabled
 fix 14295250 = 45000 
 fix 6873091 = enabled
 fix 13448445 = enabled
 fix 14155722 = enabled
 fix 14098180 = enabled
 fix 11905801 = enabled
 fix 14467202 = enabled
 fix 14541122 = enabled
 fix 13905599 = disabled
 fix 14320077 = enabled
 fix 14243782 = enabled
 fix 9114915 = enabled
 fix 14516175 = enabled
 fix 12812697 = enabled
 fix 13109345 = enabled
 fix 14456124 = enabled
 fix 14605040 = enabled
 fix 14595273 = disabled
 fix 14176247 = enabled
 fix 11894476 = enabled
 fix 14256885 = enabled
 fix 14545269 = disabled
 fix 14668404 = disabled
 fix 14144611 = enabled
 fix 14346182 = enabled
 fix 13083139 = enabled
 fix 14726188 = enabled
 fix 14707009 = enabled
 fix 14703133 = enabled
 fix 14618560 = enabled
 fix 14170552 = enabled
 fix 13263174 = enabled
 fix 14669785 = enabled
 fix 14633570 = enabled
 fix 14755138 = enabled
 fix 14682092 = enabled
 fix 14712222 = enabled
 fix 14570575 = enabled
 fix 14707748 = disabled
 fix 14684079 = enabled
 fix 13245379 = enabled
 fix 13853916 = enabled
 fix 13699007 = enabled
 fix 14843189 = enabled
 fix 14147762 = enabled
 fix 14795969 = enabled
 fix 14746036 = 1 
 fix 14750501 = enabled
 fix 13891981 = enabled
 fix 15996520 = enabled
 fix 16026776 = enabled
 fix 13573073 = enabled
 fix 13263455 = enabled
 fix 16053273 = enabled
 fix 16029607 = enabled
 fix 14242833 = enabled
 fix 13362020 = enabled
 fix 13799389 = enabled
 fix 12693573 = enabled
 fix 15998585 = enabled
 fix 16166364 = enabled
 fix 14723910 = enabled
 fix 15873008 = enabled
 fix 14133928 = enabled
 fix 16085999 = enabled
 fix 14176203 = enabled
 fix 16226575 = enabled
 fix 16015637 = enabled
 fix 15968693 = disabled
 fix 16220895 = enabled
 fix 16178821 = enabled
 fix 11865196 = enabled
 fix 16237969 = enabled
 fix 16058481 = enabled
 fix 13361493 = enabled
 fix 16264537 = enabled
 fix 14401107 = enabled
 fix 13943459 = enabled
 fix 13994546 = enabled
 fix 7174435 = enabled
 fix 14750443 = enabled
 fix 14469756 = enabled
 fix 14552075 = enabled
 fix 16324844 = enabled
 fix 13583529 = enabled
 fix 14565911 = enabled
 fix 13526551 = enabled
 fix 16368002 = enabled
 fix 16077770 = enabled
 fix 16419357 = enabled
 fix 15889476 = disabled
 fix 16273483 = enabled
 fix 16496848 = disabled
 fix 14107333 = enabled
 fix 11814337 = enabled
 fix 15882436 = enabled
 fix 14764840 = enabled
 fix 16226660 = enabled
 fix 16555865 = enabled
 fix 16625151 = enabled
 fix 16092378 = enabled
 fix 16487030 = enabled
 fix 9552303 = enabled
 fix 16609749 = enabled
 fix 16751246 = enabled
 fix 13253977 = enabled
 fix 14058291 = disabled
 fix 16749025 = enabled
 fix 16750067 = enabled
 fix 16726844 = enabled
 fix 15899648 = enabled
 fix 16690013 = enabled
 fix 15996156 = enabled
 fix 16544878 = enabled
 fix 9413591 = disabled
 fix 16792882 = 0 
 fix 16725982 = enabled
 fix 14648222 = enabled
 fix 16799181 = enabled
 fix 16516883 = enabled
 fix 16507317 = enabled
 fix 16837274 = enabled
 fix 14085520 = enabled
 fix 16713081 = enabled
 fix 14703295 = enabled
 fix 16908409 = enabled
 fix 16212250 = enabled
 fix 13692395 = disabled
 fix 17087729 = enabled
 fix 17088819 = enabled
 fix 13848786 = enabled
 fix 13522189 = enabled
 fix 16400122 = enabled
 fix 16796185 = enabled
 fix 15950252 = enabled
 fix 17070464 = enabled
 fix 16976121 = enabled
 fix 14580303 = enabled
 fix 16554552 = enabled
 fix 16582322 = enabled
 fix 16712213 = enabled
 fix 17382690 = enabled
 fix 14846352 = enabled
 fix 16516751 = enabled
 fix 3174223 = enabled
 fix 8611462 = enabled
 fix 14851437 = 3 
 fix 17348895 = enabled
 fix 16515789 = enabled
 fix 5451645 = disabled
 fix 14062749 = enabled
 fix 16346018 = enabled
 fix 12977599 = enabled
 fix 14191778 = enabled
 fix 15939321 = enabled
 fix 16874299 = enabled
 fix 16470836 = enabled
 fix 16805362 = disabled
 fix 17442009 = disabled
 fix 16825679 = enabled
 fix 17543180 = enabled
 fix 17301564 = enabled
 fix 12373708 = enabled
 fix 17397506 = enabled
 fix 14558315 = enabled
 fix 16615686 = enabled
 fix 16622801 = enabled
 fix 10038517 = enabled
 fix 16954950 = enabled
 fix 17728161 = enabled
 fix 17760375 = enabled
 fix 14311185 = enabled
 fix 13077335 = disabled
 fix 13458979 = disabled
 fix 17485514 = enabled
 fix 17599514 = enabled
 fix 17640863 = enabled
 fix 17716301 = enabled
 fix 17368047 = disabled
 fix 17597748 = enabled
 fix 17303359 = enabled
 fix 17376322 = disabled
 fix 16391176 = disabled
 fix 16673868 = enabled
 fix 17800514 = enabled
 fix 14826303 = enabled
 fix 17663076 = enabled
 fix 17760755 = enabled
 fix 17793460 = enabled
 fix 17997159 = enabled
 fix 17938754 = enabled
 fix 14733442 = enabled
 fix 17727676 = enabled
 fix 17781659 = enabled
 fix 17526569 = enabled
 fix 17950612 = enabled
 fix 17760686 = enabled
 fix 17696414 = enabled
 fix 17799716 = enabled
 fix 18116777 = enabled
 fix 18159664 = disabled
 fix 16052625 = enabled
 fix 18091750 = enabled
 fix 17572606 = enabled
 fix 17971955 = enabled
 fix 17946915 = enabled
 fix 18196576 = enabled
 fix 10145667 = enabled
 fix 17736165 = enabled
 fix 16434021 = enabled
 fix 18035463 = enabled
 fix 18011820 = enabled
 fix 16405740 = enabled
 fix 14612201 = enabled
 fix 17491018 = enabled
 fix 18365267 = enabled
 fix 17986549 = enabled
 fix 18115594 = enabled
 fix 18182018 = enabled
 fix 18302923 = enabled
 fix 18377553 = enabled
 fix 5677419 = enabled
 fix 17896018 = disabled
 fix 13097308 = enabled
 fix 17863980 = enabled
 fix 17567154 = enabled
 fix 18398980 = enabled
 fix 17023040 = enabled
 fix 17991403 = 1 
 fix 16033838 = enabled
 fix 17908541 = enabled
 fix 18134680 = enabled
 fix 18405517 = 0 
 fix 18304693 = enabled
 fix 18456944 = enabled
 fix 18467455 = enabled
 fix 18425876 = enabled
 fix 18508675 = enabled
 fix 17473046 = disabled
 fix 18636079 = enabled
 fix 18388128 = enabled
 fix 18415557 = enabled
 fix 18385778 = enabled
 fix 18308329 = enabled
 fix 18461984 = enabled
 fix 17973658 = enabled
 fix 18558952 = enabled
 fix 9912950 = enabled
 fix 18751128 = enabled
 fix 16809786 = enabled
 fix 18795224 = enabled
 fix 14776289 = enabled
 fix 18823135 = enabled
 fix 18874242 = enabled
 fix 18770199 = disabled
 fix 4185270 = disabled
 fix 18765574 = enabled
 fix 18754357 = disabled
 fix 18959892 = enabled
 fix 17324379 = disabled
 fix 18952882 = enabled
 fix 18924221 = enabled
 fix 18422714 = enabled
 fix 18798414 = enabled
 fix 18969167 = enabled
 fix 16191689 = enabled
 fix 18907562 = enabled
 fix 19055664 = enabled
 fix 18898582 = enabled
 fix 18960760 = enabled
 fix 19070454 = enabled
 fix 19230097 = enabled
 fix 19063497 = enabled
 fix 19046459 = enabled
 fix 19269482 = enabled
 fix 18876528 = enabled
 fix 19227996 = enabled
 fix 18864613 = enabled
 fix 19239478 = enabled
 fix 19451895 = enabled
 fix 19450139 = enabled
 fix 18907390 = enabled
 fix 19025959 = enabled
 fix 19309574 = enabled
 fix 16774698 = enabled
 fix 16923858 = 6 
 fix 19546825 = enabled
 fix 19475484 = enabled
 fix 19498595 = enabled
 fix 16934526 = enabled
 fix 19287919 = enabled
 fix 19386746 = enabled
 fix 19774486 = enabled
 fix 19803410 = enabled
 fix 18671960 = enabled
 fix 19484911 = enabled
 fix 19731940 = enabled
 fix 19604408 = enabled
 fix 14402409 = enabled
 fix 16486095 = enabled
 fix 19563657 = enabled
 fix 19632232 = enabled
 fix 19889960 = enabled
 fix 17208933 = enabled
 fix 19710102 = enabled
 fix 18697515 = enabled
 fix 18318631 = enabled
 fix 19377983 = enabled
 fix 20078639 = enabled
 fix 19503668 = enabled
 fix 20124288 = enabled
 fix 19847091 = enabled
 fix 12989345 = enabled
 fix 12618642 = enabled
 fix 19779920 = enabled
 fix 20186282 = enabled
 fix 20186295 = enabled
 fix 19563433 = enabled
 fix 19848804 = enabled
 fix 20046257 = enabled
 fix 20265690 = enabled
 fix 16047938 = enabled
 fix 19507904 = enabled
 fix 18915345 = enabled
 fix 20173686 = disabled
 fix 20329321 = enabled
 fix 20225191 = enabled
 fix 18776755 = enabled
 fix 19882842 = enabled
 fix 20010996 = enabled
 fix 20445764 = disabled
 fix 19728543 = disabled
 fix 20379571 = enabled
 fix 20129763 = enabled
 fix 19899588 = enabled
 fix 10098852 = enabled
 fix 19663421 = enabled
 fix 20355502 = 0 
 fix 20526705 = enabled
 fix 20465582 = enabled
 fix 20581886 = disabled
 fix 16732417 = enabled
 fix 20732410 = enabled
 fix 20289688 = enabled
 fix 20543684 = enabled
 fix 20636003 = enabled
 fix 20506136 = enabled
 fix 20458598 = disabled
 fix 20830312 = enabled
 fix 19768896 = enabled
 fix 20321661 = enabled
 fix 19814541 = enabled
 fix 20933264 = enabled
 fix 17443547 = enabled
 fix 20602794 = enabled
 fix 19123152 = enabled
 fix 19899833 = enabled
 fix 20754928 = enabled
 fix 20808265 = enabled
 fix 20808192 = enabled
 fix 20340595 = enabled
 fix 14474264 = disabled
 fix 20508819 = enabled
 fix 21098866 = disabled
 fix 18949550 = enabled
 fix 14775297 = enabled
 fix 19568958 = disabled
 fix 20923950 = enabled
 fix 21283159 = enabled
 fix 17497847 = enabled
 fix 21211629 = enabled
 fix 20819668 = disabled
 fix 20232513 = enabled
 fix 20906782 = enabled
 fix 20587527 = enabled
 fix 20914534 = disabled
 fix 20830544 = enabled
 fix 16851194 = enabled
 fix 19186783 = enabled
 fix 19653920 = enabled
 fix 21211786 = enabled
 fix 21057343 = enabled
 fix 21503478 = enabled
 fix 19808939 = disabled
 fix 21476032 = enabled
 fix 20859246 = enabled
 fix 20838633 = 2 
 fix 21639419 = enabled
 fix 20951803 = enabled
 fix 21683982 = enabled
 fix 20216500 = enabled
 fix 21614112 = enabled
 fix 20906162 = enabled
 fix 20854798 = enabled
 fix 21509656 = enabled
 fix 21833220 = enabled
 fix 21802552 = enabled
 fix 21452843 = enabled
 fix 21553593 = enabled
 fix 21093805 = enabled
 fix 16220085 = disabled
 fix 21800590 = enabled
 fix 21273039 = enabled
 fix 16750133 = enabled
 fix 22013607 = enabled
 fix 22152372 = enabled
 fix 22077191 = enabled
 fix 22123025 = enabled
 fix 16913734 = enabled
 fix 8357294 = enabled
 fix 12670904 = enabled
 fix 21979983 = enabled
 fix 22158526 = enabled
 fix 21971099 = enabled
 fix 22090662 = enabled
 fix 22149010 = disabled
 fix 21300129 = enabled
 fix 21339278 = enabled
 fix 20270511 = enabled
 fix 21424812 = enabled
 fix 22114090 = enabled
 fix 22310074 = disabled
 fix 22159570 = enabled
 fix 22272439 = enabled
 fix 22372694 = enabled
 fix 22514195 = enabled
 fix 20413540 = enabled
 fix 22520315 = enabled
 fix 22649054 = enabled
 fix 8617254 = enabled
 fix 22020067 = enabled
 fix 22864730 = enabled
 fix 21099502 = enabled
 fix 22904304 = enabled
 fix 22967807 = enabled
 fix 22879002 = enabled
 fix 23019286 = enabled
 fix 22760704 = enabled
 fix 20853506 = enabled
 fix 22540411 = disabled
 fix 22513493 = enabled
 fix 22518491 = enabled
 fix 23103096 = enabled
 fix 22143411 = enabled
 fix 23180670 = enabled
 fix 23002609 = enabled
 fix 22928015 = 1 
 fix 23210039 = enabled
 fix 23102649 = enabled
 fix 23071621 = enabled
 fix 22822245 = enabled
 fix 23136865 = enabled
 fix 22463839 = disabled
 fix 23176721 = enabled
 fix 23308385 = enabled
 fix 23223113 = enabled
 fix 22301868 = disabled
 fix 22258300 = enabled
 fix 22205301 = enabled
 fix 23514473 = 1 
 fix 23556483 = enabled
 fix 21305617 = enabled
 fix 22533539 = enabled
 fix 23596611 = enabled
 fix 23853877 = disabled
 fix 20347374 = disabled
 fix 22937293 = enabled
 fix 20228468 = disabled
 fix 23565188 = enabled
 fix 22393169 = enabled
 fix 24654471 = enabled
 fix 24845754 = enabled
 fix 25058954 = enabled
 fix 23146876 = disabled




Query Block Registry:
SEL$1 0x6bfd6f68 (PARSER) [FINAL]

:
 call(in-use=13888, alloc=65760), compile(in-use=113288, alloc=175064), execution(in-use=9136, alloc=12144)

End of Optimizer State Dump
Dumping Hints
=============
====================== END SQL Statement Dump ======================

*** 2018-02-11T14:25:26.880036-05:00

*** TRACE CONTINUES IN FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_CAT.trc ***

 

db12201_ora_20607_STATS.tkp

TKPROF: Release 12.2.0.1.0 - Development on Sun Feb 11 14:25:26 2018

Copyright (c) 1982, 2017, Oracle and/or its affiliates. All rights reserved.

Trace file: /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATS.trc
Sort options: default

********************************************************************************
count = number of times OCI procedure was executed
cpu = cpu time in seconds executing 
elapsed = elapsed time in seconds executing
disk = number of physical reads of buffers from disk
query = number of buffers gotten for consistent read
current = number of buffers gotten in current mode (usually for update)
rows = number of rows processed by the fetch or execute call
********************************************************************************

begin
 dbms_stats.gather_table_stats (
 ownname => 'U',
 tabname => 'ORDS',
 no_invalidate => false
 );
end;

call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.15 0.15 0 37 29 1
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.15 0.15 0 37 29 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 114

Elapsed times include waiting on following events:
 Event waited on Times Max. Wait Total Waited
 ---------------------------------------- Waited ---------- ------------
 PGA memory operation 7 0.00 0.00
 SQL*Net message to client 1 0.00 0.00
 SQL*Net message from client 1 0.00 0.00
********************************************************************************

SQL ID: 9d8cr4qsr2h11 Plan Hash: 1805486652

SELECT VALUE 
FROM
 NLS_SESSION_PARAMETERS WHERE PARAMETER = 'NLS_SORT'




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 16 0.00 0.00 0 0 0 0
Fetch 16 0.00 0.00 0 0 0 16
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 33 0.00 0.00 0 0 0 16

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 114 (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 FIXED TABLE FULL X$NLS_PARAMETERS (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=31 card=1)

********************************************************************************

SQL ID: d45q8yjz3ah0u Plan Hash: 1805486652

SELECT VALUE 
FROM
 NLS_SESSION_PARAMETERS WHERE PARAMETER = 'NLS_COMP'




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 16 0.00 0.00 0 0 0 0
Fetch 16 0.00 0.00 0 0 0 16
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 33 0.00 0.00 0 0 0 16

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 114 (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 FIXED TABLE FULL X$NLS_PARAMETERS (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=31 card=1)

********************************************************************************

SQL ID: 2s9bghg5agn03 Plan Hash: 4291532097

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ P.VALCHAR 
FROM
 SYS.OPTSTAT_USER_PREFS$ P, OBJ$ O, USER$ U WHERE P.OBJ#=O.OBJ# AND U.USER#=
 O.OWNER# AND U.NAME=:B3 AND O.NAME=:B2 AND O.NAMESPACE = 1 AND 
 O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND 
 O.TYPE# = 2 AND P.PNAME=:B1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 46 0.01 0.01 0 0 0 0
Fetch 46 0.00 0.00 0 276 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 93 0.01 0.01 0 276 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 NESTED LOOPS (cr=6 pr=0 pw=0 time=0 us starts=1 cost=4 size=171 card=1)
 0 0 0 NESTED LOOPS (cr=6 pr=0 pw=0 time=0 us starts=1 cost=4 size=171 card=1)
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=111 card=1)(object id 37)
 0 0 0 INDEX UNIQUE SCAN I_USER_PREFS$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 681)
 0 0 0 TABLE ACCESS BY INDEX ROWID OPTSTAT_USER_PREFS$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=42 card=1)

********************************************************************************

SQL ID: b9nbhsbx8tqz5 Plan Hash: 1097271556

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ SPARE4 
FROM
 SYS.OPTSTAT_HIST_CONTROL$ WHERE SNAME = :B1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 56 0.00 0.00 0 0 0 0
Fetch 56 0.00 0.00 0 168 0 56
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 113 0.00 0.00 0 168 0 56

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 TABLE ACCESS FULL OPTSTAT_HIST_CONTROL$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=25 card=1)

********************************************************************************

SQL ID: 5uu6gr69xhk48 Plan Hash: 3095026863

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.PROPERTY 
FROM
 SYS.USER$ U, SYS.OBJ$ O, SYS.TAB$ T WHERE U.NAME = :B2 AND U.USER# = 
 O.OWNER# AND O.NAME = :B1 AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND 
 O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND O.TYPE# = 2 AND O.OBJ# = 
 T.OBJ#




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 16 0.00 0.00 0 0 0 0
Fetch 16 0.00 0.00 0 128 0 16
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 33 0.00 0.00 0 128 0 16

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 HASH JOIN (cr=8 pr=0 pw=0 time=1000 us starts=1 cost=4 size=141 card=1)
 1 1 1 NESTED LOOPS (cr=8 pr=0 pw=0 time=1000 us starts=1 cost=4 size=141 card=1)
 1 1 1 STATISTICS COLLECTOR (cr=5 pr=0 pw=0 time=0 us starts=1)
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=111 card=1)(object id 37)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=1000 us starts=1 cost=1 size=12 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS FULL TAB$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=12 card=1)




Elapsed times include waiting on following events:
 Event waited on Times Max. Wait Total Waited
 ---------------------------------------- Waited ---------- ------------
 PGA memory operation 1 0.00 0.00
********************************************************************************

SQL ID: 8ggw94h7mvxd7 Plan Hash: 0

COMMIT




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 11 0.00 0.00 0 0 0 0
Execute 13 0.00 0.00 0 0 5 0
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 24 0.00 0.00 0 0 5 0

Misses in library cache during parse: 0
Parsing user id: 114 (recursive depth: 1)
********************************************************************************

SQL ID: b4fqsa2zhnqm8 Plan Hash: 750105498

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ O.NAME 
FROM
 OBJ$ O, USER$ U WHERE O.OWNER# = U.USER# AND O.OBJ# = (SELECT 
 SYS_CONTEXT('USERENV', 'BG_JOB_ID') FROM DUAL)




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 2 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 5 0.00 0.00 0 0 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 HASH JOIN (cr=0 pr=0 pw=0 time=0 us starts=1 cost=4 size=47 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=1 cost=4 size=47 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=1 cost=3 size=43 card=1)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=1 cost=2 size=0 card=1)(object id 36)
 1 1 1 FAST DUAL (cr=0 pr=0 pw=0 time=0 us starts=1 cost=2 size=0 card=1)
 0 0 0 INDEX RANGE SCAN I_USER2 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=4 card=1)(object id 47)
 0 0 0 INDEX FULL SCAN I_USER2 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=4 card=1)(object id 47)

********************************************************************************

SQL ID: 5mgx3qrjw4kn1 Plan Hash: 2973543806

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ 
 ST_OPR_ID_SEQ.NEXTVAL 
FROM
 DUAL




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 1 0.00 0.00 0 0 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 0 0 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SEQUENCE ST_OPR_ID_SEQ (cr=0 pr=0 pw=0 time=0 us starts=1)
 1 1 1 FAST DUAL (cr=0 pr=0 pw=0 time=0 us starts=1 cost=2 size=0 card=1)

********************************************************************************

SQL ID: ddsukg4u01c36 Plan Hash: 0

insert /* QOSH:REC_STS */ into sys.wri$_optstat_opr (id, operation, target, 
 start_time, end_time, status, job_name, session_id, notes) 
values
 (:1,:2,:3,:4,:5,:6,:7,:8,:9)




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 1 8 1
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.00 0.00 0 1 8 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_OPR (cr=1 pr=0 pw=0 time=1000 us starts=1)

********************************************************************************

SQL ID: 3rju5whzbh017 Plan Hash: 3326593961

SELECT /*+ ordered index(u) index(o) index(po) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ MOD(PO.SPARE2, 256), 
 PO.PARTTYPE FROM SYS.USER$ U, SYS.OBJ$ O, SYS.PARTOBJ$ PO WHERE U.NAME = 
 :B3 AND O.NAME = :B2 AND O.NAMESPACE = :B1 AND U.USER# = O.OWNER# AND 
 O.OBJ# = PO.OBJ#




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 1 0.00 0.00 0 6 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 6 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 NESTED LOOPS (cr=6 pr=0 pw=0 time=0 us starts=1 cost=4 size=76 card=1)
 0 0 0 NESTED LOOPS (cr=6 pr=0 pw=0 time=0 us starts=1 cost=4 size=76 card=1)
 1 1 1 HASH JOIN (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=65 card=1)
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=65 card=1)
 1 1 1 STATISTICS COLLECTOR (cr=2 pr=0 pw=0 time=0 us starts=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=47 card=1)(object id 37)
 0 0 0 INDEX SKIP SCAN I_OBJ2 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=47 card=1)(object id 37)
 0 0 0 INDEX UNIQUE SCAN I_PARTOBJ$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 80)
 0 0 0 TABLE ACCESS BY INDEX ROWID PARTOBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=11 card=1)

********************************************************************************

SQL ID: 7gzcdxb9drpf8 Plan Hash: 3179548805

SELECT /*+ leading(u) use_nl_with_index(o) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ O.OBJ#, O.TYPE# FROM 
 SYS.USER$ U, SYS.OBJ$ O WHERE U.NAME = :B3 AND O.OWNER# = U.USER# AND 
 O.NAME = :B2 AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND O.LINKNAME 
 IS NULL AND (O.SUBNAME IS NULL AND :B1 IS NULL OR O.SUBNAME = :B1 ) AND 
 O.TYPE# IN (2,19,34)




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 15 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 15 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=111 card=1)(object id 37)

********************************************************************************

SQL ID: 8xp6fvkdf5878 Plan Hash: 2970138452

SELECT /*+ index(t) OPT_PARAM('_parallel_syspls_obey_force' 'false') */ 
 T.PROPERTY 
FROM
 SYS.TAB$ T WHERE T.OBJ# = :B1




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 1 0.00 0.00 0 3 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 3 0 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=12 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 3)

********************************************************************************

SQL ID: 2wd0su2xk5d3g Plan Hash: 220572989

SELECT /*+ first_rows(1) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ '"'||OI.NAME||'"' FROM 
 SYS.USER$ U, SYS.OBJ$ OT, SYS.IND$ I, SYS.OBJ$ OI WHERE U.NAME = :B2 AND 
 OT.OWNER# = U.USER# AND OT.NAME = :B1 AND I.BO# = OT.OBJ# AND I.TYPE# = 4 
 AND I.OBJ# = OI.OBJ#




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 1 0.00 0.00 0 10 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 10 0 0

Misses in library cache during parse: 0
Optimizer mode: FIRST_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 HASH JOIN (cr=10 pr=0 pw=0 time=0 us starts=1 cost=6 size=114 card=1)
 0 0 0 NESTED LOOPS (cr=10 pr=0 pw=0 time=0 us starts=1 cost=6 size=114 card=1)
 0 0 0 NESTED LOOPS (cr=10 pr=0 pw=0 time=0 us starts=1 cost=6 size=114 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=10 pr=0 pw=0 time=0 us starts=1)
 0 0 0 HASH JOIN (cr=10 pr=0 pw=0 time=0 us starts=1 cost=4 size=74 card=1)
 0 0 0 NESTED LOOPS (cr=10 pr=0 pw=0 time=0 us starts=1 cost=4 size=74 card=1)
 2 2 2 STATISTICS COLLECTOR (cr=5 pr=0 pw=0 time=0 us starts=1)
 2 2 2 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=61 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 2 2 2 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=43 card=1)(object id 37)
 0 0 0 TABLE ACCESS CLUSTER IND$ (cr=5 pr=0 pw=0 time=0 us starts=2 cost=1 size=13 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=4 pr=0 pw=0 time=0 us starts=2 cost=0 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED IND$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=13 card=1)
 0 0 0 INDEX FULL SCAN I_IND1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 41)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 36)
 0 0 0 TABLE ACCESS BY INDEX ROWID OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=40 card=1)
 0 0 0 INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=40 card=1)(object id 40)

********************************************************************************

SQL ID: 1fm07xd16u5nr Plan Hash: 0

insert /* QOSH:REC_STS */ into sys.wri$_optstat_opr_tasks (op_id, job_name, 
 status, start_time, end_time, target, target_type, target_size, 
 estimated_cost, batching_coeff, actions, priority, notes, flags, 
 target_objn) 
values
 (:1,:2,:3,:4,:5,:6,:7, :8,:9,
 :10,:11,:12,:13,:14,:15)




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 4 0.00 0.00 0 0 0 0
Execute 4 0.00 0.00 0 1 49 4
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 8 0.00 0.00 0 1 49 4

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_OPR_TASKS (cr=1 pr=0 pw=0 time=0 us starts=1)

********************************************************************************

SQL ID: d7bgf84kwj3s7 Plan Hash: 324713838

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ P.VALCHAR 
FROM
 SYS.OPTSTAT_USER_PREFS$ P WHERE P.OBJ#=:B2 AND P.PNAME=:B1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 6 0.00 0.00 0 0 0 0
Fetch 6 0.00 0.00 0 6 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 13 0.00 0.00 0 6 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 TABLE ACCESS BY INDEX ROWID OPTSTAT_USER_PREFS$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=1 size=42 card=1)
 0 0 0 INDEX UNIQUE SCAN I_USER_PREFS$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 681)

********************************************************************************

SQL ID: 5j3ram21g5s8r Plan Hash: 2507555410

SELECT /*+ ordered use_nl(o c cu h) index(u i_user1) index(o i_obj2)
 
 index(ci_obj#) index(cu i_col_usage$)
 index(h 
 i_hh_obj#_intcol#) 
 OPT_PARAM('_parallel_syspls_obey_force' 
 'false') */ C.NAME COL_NAME, C.TYPE# COL_TYPE, C.CHARSETFORM COL_CSF, CASE 
 WHEN C.DEFLENGTH <= 32767 THEN C.DEFAULT$ ELSE NULL END COL_DEF, C.NULL$ 
 COL_NULL, C.PROPERTY COL_PROP, C.COL# COL_UNUM, C.INTCOL# COL_INUM, C.OBJ# 
 COL_OBJ, C.SCALE COL_SCALE, CASE WHEN NVL(H.DISTCNT,0) = 0 OR H.ROW_CNT = 0 
 THEN -4 WHEN EXISTS(SELECT 1 FROM SYS.HISTGRM$ HG WHERE T.OBJ# = HG.OBJ# 
 AND H.INTCOL# = HG.INTCOL# AND HG.EP_REPEAT_COUNT > 0 AND ROWNUM < 2) THEN 
 H.ROW_CNT WHEN BITAND(H.SPARE2, 64) > 0 THEN H.ROW_CNT WHEN 
 (BITAND(H.SPARE2, 32) > 0 OR H.BUCKET_CNT > 2049 OR (H.BUCKET_CNT >= 
 H.DISTCNT AND H.DENSITY*H.BUCKET_CNT < 1)) THEN H.ROW_CNT ELSE H.BUCKET_CNT 
 END H_BCNT, (T.ROWCNT-H.NULL_CNT)/GREATEST(H.DISTCNT,1) H_PFREQ, C.LENGTH 
 COL_LEN, CU.TIMESTAMP CU_TIME, CU.EQUALITY_PREDS CU_EP, CU.EQUIJOIN_PREDS 
 CU_EJP, CU.RANGE_PREDS CU_RP, CU.LIKE_PREDS CU_LP, CU.NONEQUIJOIN_PREDS 
 CU_NEJP, CU.NULL_PREDS CU_NP FROM SYS.USER$ U, SYS.OBJ$ O, SYS.TAB$ T, 
 SYS.COL$ C, SYS.COL_USAGE$ CU, SYS.HIST_HEAD$ H WHERE :B3 = '0' AND U.NAME =
 :B2 AND O.OWNER# = U.USER# AND O.TYPE# = 2 AND O.NAME = :B1 AND O.OBJ# = 
 T.OBJ# AND O.OBJ# = C.OBJ# AND C.OBJ# = CU.OBJ#(+) AND C.INTCOL# = 
 CU.INTCOL#(+) AND C.OBJ# = H.OBJ#(+) AND C.INTCOL# = H.INTCOL#(+) UNION ALL 
 SELECT /*+ ordered use_nl(c) */ C.KQFCONAM COL_NAME, C.KQFCODTY COL_TYPE, 
 DECODE(C.KQFCODTY, 1, 1, 0) COL_CSF, NULL COL_DEF, 0 COL_NULL, 0 COL_PROP, 
 C.KQFCOCNO COL_UNUM, C.KQFCOCNO COL_INUM, O.KQFTAOBJ COL_OBJ, 
 DECODE(C.KQFCODTY, 2, -127, 0) COL_SCALE, H.BUCKET_CNT H_BCNT, 
 (ST.ROWCNT-NULL_CNT)/GREATEST(H.DISTCNT,1) H_PFREQ, DECODE(C.KQFCODTY, 2, 
 22, C.KQFCOSIZ) COL_LEN, CU.TIMESTAMP CU_TIME, CU.EQUALITY_PREDS CU_EP, 
 CU.EQUIJOIN_PREDS CU_EJP, CU.RANGE_PREDS CU_RP, CU.LIKE_PREDS CU_LP, 
 CU.NONEQUIJOIN_PREDS CU_NEJP, CU.NULL_PREDS CU_NP FROM SYS.X$KQFTA O, 
 SYS.TAB_STATS$ ST, SYS.X$KQFCO C, SYS.COL_USAGE$ CU, SYS.HIST_HEAD$ H WHERE 
 :B3 != '0' AND :B2 = 'SYS' AND O.KQFTANAM = :B1 AND O.KQFTAOBJ = ST.OBJ#(+) 
 AND O.KQFTAOBJ = C.KQFCOTOB AND C.KQFCOTOB = CU.OBJ#(+) AND C.KQFCOCNO = 
 CU.INTCOL#(+) AND C.KQFCOTOB = H.OBJ#(+) AND C.KQFCOCNO = H.INTCOL#(+)




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 2 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.00 0 48 0 6
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 5 0.00 0.00 0 48 0 6

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 3 3 3 UNION-ALL (cr=24 pr=0 pw=0 time=0 us starts=1)
 0 0 0 COUNT STOPKEY (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 TABLE ACCESS CLUSTER HISTGRM$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=11 card=1)
 0 0 0 INDEX UNIQUE SCAN I_OBJ#_INTCOL# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 65)
 3 3 3 FILTER (cr=24 pr=0 pw=0 time=0 us starts=1)
 3 3 3 NESTED LOOPS OUTER (cr=24 pr=0 pw=0 time=0 us starts=1 cost=8 size=184 card=1)
 3 3 3 NESTED LOOPS OUTER (cr=18 pr=0 pw=0 time=0 us starts=1 cost=6 size=154 card=1)
 3 3 3 NESTED LOOPS (cr=11 pr=0 pw=0 time=0 us starts=1 cost=5 size=121 card=1)
 1 1 1 HASH JOIN (cr=8 pr=0 pw=0 time=0 us starts=1 cost=4 size=73 card=1)
 1 1 1 NESTED LOOPS (cr=8 pr=0 pw=0 time=0 us starts=1 cost=4 size=73 card=1)
 1 1 1 STATISTICS COLLECTOR (cr=5 pr=0 pw=0 time=0 us starts=1)
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=65 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=47 card=1)(object id 37)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=1 size=8 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS FULL TAB$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=8 card=1)
 3 3 3 TABLE ACCESS CLUSTER COL$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=1 size=576 card=12)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 3)
 2 2 2 TABLE ACCESS BY INDEX ROWID COL_USAGE$ (cr=7 pr=0 pw=0 time=0 us starts=3 cost=1 size=33 card=1)
 2 2 2 INDEX UNIQUE SCAN I_COL_USAGE$ (cr=5 pr=0 pw=0 time=0 us starts=3 cost=0 size=0 card=1)(object id 655)
 3 3 3 TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=6 pr=0 pw=0 time=0 us starts=3 cost=2 size=30 card=1)
 3 3 3 INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=5 pr=0 pw=0 time=0 us starts=3 cost=1 size=0 card=1)(object id 70)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 HASH JOIN OUTER (cr=0 pr=0 pw=0 time=0 us starts=0 cost=40 size=1904 card=17)
 0 0 0 NESTED LOOPS OUTER (cr=0 pr=0 pw=0 time=0 us starts=0 cost=40 size=1904 card=17)
 0 0 0 STATISTICS COLLECTOR (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 HASH JOIN OUTER (cr=0 pr=0 pw=0 time=0 us starts=0 cost=6 size=1581 card=17)
 0 0 0 NESTED LOOPS OUTER (cr=0 pr=0 pw=0 time=0 us starts=0 cost=6 size=1581 card=17)
 0 0 0 STATISTICS COLLECTOR (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=3 size=1020 card=17)
 0 0 0 HASH JOIN OUTER (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=30 card=1)
 0 0 0 NESTED LOOPS OUTER (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=30 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 FIXED TABLE FULL X$KQFTA (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=20 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID TAB_STATS$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=10 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TAB_STATS$_OBJ# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 74)
 0 0 0 TABLE ACCESS FULL TAB_STATS$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=10 card=1)
 0 0 0 FIXED TABLE FULL X$KQFCO (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=510 card=17)
 0 0 0 TABLE ACCESS BY INDEX ROWID COL_USAGE$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=33 card=1)
 0 0 0 INDEX UNIQUE SCAN I_COL_USAGE$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 655)
 0 0 0 TABLE ACCESS FULL COL_USAGE$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=33 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=19 card=1)
 0 0 0 INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 70)
 0 0 0 TABLE ACCESS FULL HIST_HEAD$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=19 card=1)




Elapsed times include waiting on following events:
 Event waited on Times Max. Wait Total Waited
 ---------------------------------------- Waited ---------- ------------
 PGA memory operation 1 0.00 0.00
********************************************************************************

SQL ID: 7azxftvubufnj Plan Hash: 2456673777

SELECT COUNT(UNQ) UNQ, COUNT(PFX) PFX FROM (SELECT /*+ first_rows(1) 
 leading(cc) 
 OPT_PARAM('_parallel_syspls_obey_force' 
 'false') */ CD.TYPE# UNQ, NULL PFX FROM SYS.CCOL$ CC, SYS.CDEF$ CD WHERE 
 CC.OBJ# = :B2 AND CC.INTCOL# = :B1 AND CD.CON# = CC.CON# AND CD.OBJ# = 
 CC.OBJ# AND CD.ENABLED IS NOT NULL AND CD.INTCOLS = 1 AND CD.TYPE# IN (2,3) 
 AND BITAND(CD.DEFER, 2+4) = 4 AND ROWNUM < 2 UNION ALL SELECT /*+ 
 first_rows(1) leading(i) */ CASE WHEN I.INTCOLS = 1 AND BITAND(I.PROPERTY,1)
 = 1 THEN 3 ELSE NULL END UNQ, CASE WHEN IC.POS# = 1 THEN 1 ELSE NULL END 
 PFX FROM SYS.IND$ I, SYS.ICOL$ IC WHERE I.BO# = :B2 AND I.BO# = IC.BO# AND 
 IC.INTCOL# = :B1 AND I.OBJ# = IC.OBJ# AND BITAND(I.FLAGS,1025) = 0 AND 
 ROWNUM < 2 )




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 6 0.00 0.00 0 0 0 0
Fetch 6 0.00 0.00 0 70 0 6
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 13 0.00 0.00 0 70 0 6

Misses in library cache during parse: 0
Optimizer mode: FIRST_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT AGGREGATE (cr=13 pr=0 pw=0 time=1000 us starts=1)
 2 2 2 VIEW (cr=13 pr=0 pw=0 time=1000 us starts=1 cost=7 size=32 card=2)
 2 2 2 UNION-ALL (cr=13 pr=0 pw=0 time=1000 us starts=1)
 1 1 1 COUNT STOPKEY (cr=7 pr=0 pw=0 time=0 us starts=1)
 1 1 1 HASH JOIN (cr=7 pr=0 pw=0 time=0 us starts=1 cost=3 size=35 card=1)
 1 1 1 NESTED LOOPS (cr=7 pr=0 pw=0 time=0 us starts=1 cost=3 size=35 card=1)
 2 2 2 STATISTICS COLLECTOR (cr=3 pr=0 pw=0 time=0 us starts=1)
 2 2 2 TABLE ACCESS CLUSTER CCOL$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=13 card=1)
 1 1 1 INDEX UNIQUE SCAN I_COBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 30)
 1 1 1 TABLE ACCESS CLUSTER CDEF$ (cr=4 pr=0 pw=0 time=0 us starts=2 cost=1 size=22 card=1)
 0 0 0 TABLE ACCESS CLUSTER CDEF$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=22 card=1)
 0 0 0 INDEX UNIQUE SCAN I_COBJ# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 30)
 1 1 1 COUNT STOPKEY (cr=6 pr=0 pw=0 time=1000 us starts=1)
 1 1 1 HASH JOIN (cr=6 pr=0 pw=0 time=1000 us starts=1 cost=4 size=38 card=1)
 3 3 3 NESTED LOOPS (cr=3 pr=0 pw=0 time=0 us starts=1 cost=4 size=38 card=1)
 3 3 3 STATISTICS COLLECTOR (cr=3 pr=0 pw=0 time=0 us starts=1)
 3 3 3 TABLE ACCESS CLUSTER IND$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=63 card=3)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS CLUSTER ICOL$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=17 card=1)
 0 0 0 INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 3)
 1 1 1 TABLE ACCESS CLUSTER ICOL$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=17 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 3)




Elapsed times include waiting on following events:
 Event waited on Times Max. Wait Total Waited
 ---------------------------------------- Waited ---------- ------------
 PGA memory operation 11 0.00 0.00
********************************************************************************

SQL ID: 62yyzw3309d6a Plan Hash: 2667441017

SELECT VALUE 
FROM
 V$SESSION_FIX_CONTROL WHERE BUGNO = :B1 AND SESSION_ID = USERENV('SID')




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 27 0.00 0.00 0 0 0 0
Fetch 27 0.00 0.00 0 0 0 27
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 55 0.00 0.00 0 0 0 27

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 FIXED TABLE FIXED INDEX X$QKSBGSES (ind:1) (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=15 card=1)

********************************************************************************

SQL ID: cpktjtz97gsjn Plan Hash: 1978163079

select /* KSXM:FLUSH DML_MON */ type# 
from
 obj$ where obj# = :pobjn




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 1 0.00 0.00 0 2 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 2 0 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=9 card=1)(object id 36)

********************************************************************************

SQL ID: fc054jsw0dcmu Plan Hash: 1945975270

select /* KSXM:FLUSH DML_MON */ obj# 
from
 ( select obj#, 2 type from tab$ where obj# 
 = :pobjn and :type = 2 /*A*/ union all 
 select obj#, 19 type from tabpart$ 
 where obj# = :pobjn and :type = 19 /*B*/ union all 
 select bo#, 2 type from 
 tabpart$ where obj# = :pobjn and :type = 19 /*C*/ union all 
 select obj#, 19 
 type from tabpart$ where bo# = :pobjn and :type = 2 /*D*/ union all 
 select obj#,
 34 type from tabsubpart$ /*E*/ where 
 obj# = :pobjn and :type = 34 union 
 all 
 select pobj#, 19 type from tabsubpart$ 
 /*F*/ where obj# = :pobjn and :type = 34 
 union all 
 select /*+ leading(tsp) use_nl(tcp) index(tsp) index(tcp) */ 
 /*G*/ tcp.bo#, 2 type 
 from tabsubpart$ tsp, tabcompart$ tcp 
 where tsp.pobj# = tcp.obj# and tsp.obj# = :pobjn and 
 :type = 34 union all 
 select obj#, 19 type from tabcompart$ 
 /*H*/ where obj# = :pobjn and :type = 19 
 union all 
 select obj#, 34 type from tabsubpart$ 
 /*I*/ where pobj# = :pobjn and :type = 19 
 union all 
 select bo#, 2 type from tabcompart$ 
 where obj# = :pobjn and :type = 19 /*J*/ union all 
 select /*+ leading(tcp) 
 use_nl(tsp) index(tsp) index(tcp) */ /*K*/ tsp.obj#, 34 type 
 from tabsubpart$ 
 tsp, tabcompart$ tcp where tsp.pobj# 
 = tcp.obj# and tcp.bo# = :pobjn and :type = 2 union all 
 select obj#, 
 19 type from tabcompart$ where bo# = :pobjn and :type = 2 /*L*/ ) order by 
 type desc




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.00 0 9 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.00 0.00 0 9 0 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT ORDER BY (cr=9 pr=0 pw=0 time=0 us starts=1 cost=23 size=576 card=36)
 1 1 1 VIEW (cr=9 pr=0 pw=0 time=0 us starts=1 cost=22 size=576 card=36)
 1 1 1 UNION-ALL (cr=9 pr=0 pw=0 time=0 us starts=1)
 1 1 1 FILTER (cr=3 pr=0 pw=0 time=0 us starts=1)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=5 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 3)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=5 card=1)(object id 799)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=10 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 799)
 0 0 0 FILTER (cr=2 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED TABPART$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=5 size=50 card=5)
 0 0 0 INDEX RANGE SCAN I_TABPART_BOPART$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=0 card=5)(object id 798)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=5 card=1)(object id 811)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=10 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 811)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=20 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=10 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 811)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=10 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 821)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=5 card=1)(object id 821)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS FULL TABSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=110 card=11)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=10 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 821)
 0 0 0 FILTER (cr=1 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=1 pr=0 pw=0 time=0 us starts=1 cost=4 size=220 card=11)
 0 0 0 NESTED LOOPS (cr=1 pr=0 pw=0 time=0 us starts=1 cost=4 size=220 card=11)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED TABCOMPART$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=2 size=10 card=1)
 0 0 0 INDEX RANGE SCAN I_TABCOMPART_BOPART$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 820)
 0 0 0 INDEX RANGE SCAN I_TABSUBPART_POBJSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=11)(object id 810)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=110 card=11)
 0 0 0 FILTER (cr=3 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS FULL TABCOMPART$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=10 card=1)

********************************************************************************

SQL ID: 4p9b90fawtgjc Plan Hash: 3179548805

SELECT O.OBJ# 
FROM
 OBJ$ O, USER$ U WHERE O.OWNER# = U.USER# AND U.NAME = :B2 AND O.NAME = :B1 
 AND O.SUBNAME IS NULL AND O.TYPE# = 2




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 2 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.00 0 10 0 2
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 5 0.00 0.00 0 10 0 2

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=67 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=49 card=1)(object id 37)

********************************************************************************

SQL ID: cy0mgyw1a6bg0 Plan Hash: 2710014632

SELECT /*+ leading(u o) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ O.SUBNAME PART_NAME, 
 O.OBJ# OBJ_NUM FROM SYS.USER$ U, SYS.OBJ$ O, SYS.TABPART$ TP, 
 SYS.TABCOMPART$ TCP WHERE :B3 IS NULL AND U.NAME = :B2 AND O.OWNER# = 
 U.USER# AND O.NAME = :B1 AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND 
 O.LINKNAME IS NULL AND O.TYPE# = 19 AND O.OBJ# = TP.OBJ#(+) AND O.OBJ# = 
 TCP.OBJ#(+) UNION ALL SELECT * FROM ( SELECT /*+ leading(u o) */ O.SUBNAME 
 PART_NAME, O.OBJ# OBJ_NUM FROM SYS.USER$ U, SYS.OBJ$ O WHERE U.NAME = :B2 
 AND O.OWNER# = U.USER# AND O.NAME = :B1 AND O.NAMESPACE = 1 AND 
 O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME = :B3 AND 
 O.TYPE# = 19 UNION ALL SELECT /*+ leading(u osp tsp) */ OP.SUBNAME 
 PART_NAME, OP.OBJ# OBJ_NUM FROM SYS.USER$ U, SYS.OBJ$ OSP, SYS.TABSUBPART$ 
 TSP, SYS.OBJ$ OP WHERE U.NAME = :B2 AND OSP.OWNER# = U.USER# AND OSP.NAME = 
 :B1 AND OSP.NAMESPACE = 1 AND OSP.REMOTEOWNER IS NULL AND OSP.LINKNAME IS 
 NULL AND OSP.SUBNAME = :B3 AND OSP.TYPE# = 34 AND OSP.OBJ# = TSP.OBJ# AND 
 OP.OBJ# = TSP.POBJ# ) WHERE ROWNUM < 2 UNION ALL SELECT NULL PART_NAME, 
 NULL OBJ_NUM FROM SYS.USER$ U, SYS.OBJ$ O, SYS.TAB$ T WHERE :B4 = 'y' AND 
 U.NAME = :B2 AND O.OWNER# = U.USER# AND O.NAME = :B1 AND O.TYPE# = 2 AND 
 T.OBJ# = O.OBJ# AND BITAND(T.PROPERTY, 32) <> 32




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 1 0.00 0.00 0 9 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 9 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 UNION-ALL (cr=9 pr=0 pw=0 time=0 us starts=1)
 0 0 0 FILTER (cr=5 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=111 card=1)(object id 37)
 0 0 0 COUNT STOPKEY (cr=4 pr=0 pw=0 time=0 us starts=1)
 0 0 0 VIEW (cr=4 pr=0 pw=0 time=0 us starts=1 cost=7 size=158 card=2)
 0 0 0 UNION-ALL (cr=4 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 time=0 us starts=1 cost=1 size=111 card=1)(object id 37)
 0 0 0 HASH JOIN (cr=2 pr=0 pw=0 time=0 us starts=1 cost=5 size=146 card=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=5 size=146 card=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=5 size=146 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=2 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=3 size=139 card=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 time=0 us starts=1 cost=1 size=111 card=1)(object id 37)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=10 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 811)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 36)
 0 0 0 TABLE ACCESS BY INDEX ROWID OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=7 card=1)
 0 0 0 INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=7 card=1)(object id 40)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 HASH JOIN (cr=0 pr=0 pw=0 time=0 us starts=0 cost=4 size=77 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=4 size=77 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=3 size=65 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID USER$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=18 card=1)
 0 0 0 INDEX UNIQUE SCAN I_USER1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=47 card=1)(object id 37)
 0 0 0 TABLE ACCESS CLUSTER TAB$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=12 card=1)
 0 0 0 INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS FULL TAB$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=12 card=1)

********************************************************************************

SQL ID: g9xgz7a9xz7yv Plan Hash: 3095026863

SELECT /*+ use_nl(u,o,t) OPT_PARAM('_parallel_syspls_obey_force' 'false') */ 
 NVL(T.DEGREE,1) 
FROM
 USER$ U,OBJ$ O,TAB$ T WHERE U.NAME=:B2 AND O.NAME=:B1 AND O.OBJ#=T.OBJ# AND 
 U.USER#=O.OWNER#




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 1 0.00 0.00 0 10 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 10 0 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 NESTED LOOPS (cr=10 pr=0 pw=0 time=0 us starts=1 cost=4 size=68 card=1)
 2 2 2 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=61 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 2 2 2 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=43 card=1)(object id 37)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=5 pr=0 pw=0 time=0 us starts=2 cost=1 size=7 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=4 pr=0 pw=0 time=0 us starts=2 cost=0 size=0 card=1)(object id 3)

********************************************************************************

SQL ID: cb21bacyh3c7d Plan Hash: 3452538079

select metadata 
from
 kopm$ where name='DB_FDO'




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 1 0.00 0.00 0 2 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 2 0 1

Misses in library cache during parse: 0
Optimizer mode: CHOOSE
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 TABLE ACCESS BY INDEX ROWID KOPM$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=108 card=1)
 1 1 1 INDEX UNIQUE SCAN I_KOPM1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 774)

********************************************************************************

SQL ID: 9us3squgdwcxm Plan Hash: 2860568089

select /*+ full(t) no_parallel(t) no_parallel_index(t) dbms_stats 
 cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) no_monitoring 
 xmlindex_sel_idx_tbl opt_param('optimizer_inmemory_aware' 'false') 
 no_substrb_pad */to_char(count("ORDID")),substrb(dump(min("ORDID"),16,0,64)
 ,1,240),substrb(dump(max("ORDID"),16,0,64),1,240),
 to_char(count("CATEGORYID")),substrb(dump(min("CATEGORYID"),16,0,64),1,240),
 substrb(dump(max("CATEGORYID"),16,0,64),1,240),to_char(count("STATUS")),
 substrb(dump(min("STATUS"),16,0,64),1,240),substrb(dump(max("STATUS"),16,0,
 64),1,240),count(rowidtochar(rowid)) 
from
 "U"."ORDS" t /* ACL,NIL,NIL,TOPN,NIL,NIL,TOPN,NIL,NIL,RWID,U254,U254,
 U254U*/




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 1 0.00 0.00 0 38 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.01 0.01 0 38 0 1

Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 114 (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT AGGREGATE (cr=38 pr=0 pw=0 time=8999 us starts=1)
 10000 10000 10000 OPTIMIZER STATISTICS GATHERING (cr=38 pr=0 pw=0 time=127569 us starts=1 cost=11 size=170000 card=10000)
 10000 10000 10000 TABLE ACCESS FULL ORDS (cr=38 pr=0 pw=0 time=0 us starts=1 cost=11 size=170000 card=10000)




Elapsed times include waiting on following events:
 Event waited on Times Max. Wait Total Waited
 ---------------------------------------- Waited ---------- ------------
 PGA memory operation 8 0.00 0.00
********************************************************************************

SQL ID: 3qkhfbf2kyvhk Plan Hash: 1268306204

SELECT POS+1 POS, VAL, NONNULLS, NDV, SPLIT, RSIZE, ROWCNT, TOPNCNT, TOPN, 
 NULL MINFREQ, NULL MAXFREQ, NULL AVGFREQ, NULL STDDEVFREQ 
FROM
 XMLTABLE( '/process_result/select_list_item' PASSING :B1 COLUMNS POS NUMBER 
 PATH 'pos', VAL VARCHAR2(240) PATH 'value', NONNULLS NUMBER PATH 'nonnulls',
 NDV NUMBER PATH 'ndv', SPLIT NUMBER PATH 'split', RSIZE NUMBER PATH 
 'rsize', ROWCNT NUMBER PATH 'rowcnt', TOPNCNT NUMBER PATH 'topncnt', TOPN 
 CLOB PATH 'topn_values' ) ORDER BY TOPNCNT DESC




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.00 0.04 0 0 0 0
Fetch 1 0.00 0.01 0 0 0 9
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.05 0 0 0 9

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: 114 (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 9 9 9 SORT ORDER BY (cr=0 pr=0 pw=0 time=47994 us starts=1 cost=30 size=147024 card=8168)
 9 9 9 XMLTABLE EVALUATION (cr=0 pr=0 pw=0 time=54987 us starts=1)




Elapsed times include waiting on following events:
 Event waited on Times Max. Wait Total Waited
 ---------------------------------------- Waited ---------- ------------
 PGA memory operation 26 0.00 0.00
 acknowledge over PGA limit 5 0.01 0.05
********************************************************************************

select /*+ no_parallel(t) no_parallel_index(t) dbms_stats cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) no_monitoring xmlindex_sel_idx_tbl opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad */ substrb(dump("STATUS",16,0,64),1,240) val, 
 rowidtochar(rowid) rwid from "U"."ORDS" t where rowid in (chartorowid('AAAWt1AAHAAAAFjAAA'),chartorowid('AAAWt1AAHAAAAGCAAv')) order by "STATUS"

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 1 0.00 0.00 0 2 0 2
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 2 0 2

Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 114 (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 2 2 2 SORT ORDER BY (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=17 card=1)
 2 2 2 INLIST ITERATOR (cr=2 pr=0 pw=0 time=0 us starts=1)
 2 2 2 TABLE ACCESS BY USER ROWID ORDS (cr=2 pr=0 pw=0 time=0 us starts=2 cost=1 size=17 card=1)




Elapsed times include waiting on following events:
 Event waited on Times Max. Wait Total Waited
 ---------------------------------------- Waited ---------- ------------
 PGA memory operation 1 0.00 0.00
********************************************************************************

SQL ID: 87gaftwrm2h68 Plan Hash: 1072382624

select o.owner#,o.name,o.namespace,o.remoteowner,o.linkname,o.subname 
from
 obj$ o where o.obj#=:1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 2 0.00 0.00 0 0 0 0
Fetch 2 0.00 0.00 0 4 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 5 0.00 0.00 0 4 0 0

Misses in library cache during parse: 0
Optimizer mode: CHOOSE
Parsing user id: SYS (recursive depth: 2)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=3 size=111 card=1)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=0 card=1)(object id 36)

********************************************************************************

SQL ID: a5qrn8rku8sbq Plan Hash: 2559119735

select substrb(dump(val,16,0,64),1,240) ep, freq, cdn, ndv, (sum(pop) over())
 popcnt, (sum(pop*freq) over()) popfreq, substrb(dump(max(val) over(),16,
 0,64),1,240) maxval, substrb(dump(min(val) over(),16,0,64),1,240) minval 
from
 (select val, freq, (sum(freq) over()) cdn, (count(*) over()) ndv, (case 
 when freq > ((sum(freq) over())/254) then 1 else 0 end) pop from (select 
 /*+ no_parallel(t) no_parallel_index(t) dbms_stats cursor_sharing_exact 
 use_weak_name_resl dynamic_sampling(0) no_monitoring xmlindex_sel_idx_tbl 
 opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad */ 
 "CATEGORYID" val, count("CATEGORYID") freq from "U"."ORDS" t where 
 "CATEGORYID" is not null group by "CATEGORYID")) order by val




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.02 0 0 0 0
Execute 1 0.00 0.00 0 0 0 0
Fetch 1001 0.02 0.01 0 27 0 1000
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 1003 0.02 0.04 0 27 0 1000

Misses in library cache during parse: 1
Optimizer mode: ALL_ROWS
Parsing user id: 114 (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1000 1000 1000 WINDOW SORT (cr=27 pr=0 pw=0 time=6999 us starts=1 cost=8 size=46000 card=1000)
 1000 1000 1000 VIEW (cr=27 pr=0 pw=0 time=4999 us starts=1 cost=8 size=46000 card=1000)
 1000 1000 1000 WINDOW BUFFER (cr=27 pr=0 pw=0 time=4999 us starts=1 cost=8 size=4000 card=1000)
 1000 1000 1000 HASH GROUP BY (cr=27 pr=0 pw=0 time=4000 us starts=1 cost=8 size=4000 card=1000)
 10000 10000 10000 INDEX FAST FULL SCAN CATEGORY_IDX (cr=27 pr=0 pw=0 time=0 us starts=1 cost=7 size=40000 card=10000)(object id 93047)




Elapsed times include waiting on following events:
 Event waited on Times Max. Wait Total Waited
 ---------------------------------------- Waited ---------- ------------
 PGA memory operation 8 0.00 0.00
 acknowledge over PGA limit 2 0.01 0.02
********************************************************************************

SQL ID: 5s8s8wkv7kwpf Plan Hash: 2079990838

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ COUNT(*) 
FROM
 SYS.EXTERNAL_TAB$ WHERE OBJ# = :B1 AND TYPE$ IN ('ORACLE_HIVE', 
 'ORACLE_HDFS', 'ORACLE_BIGDATA')




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 1 0.00 0.00 0 1 0 1
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 1 0 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT AGGREGATE (cr=1 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID EXTERNAL_TAB$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=1 size=19 card=1)
 0 0 0 INDEX UNIQUE SCAN I_EXTERNAL_TAB1$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 1377)

********************************************************************************

SQL ID: 45019qrb7da32 Plan Hash: 4066817437

SELECT /*+ ordered index(u) index(o) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ COUNT(*) FROM USER$ U, 
 OBJ$ O WHERE U.NAME = :B4 AND O.OWNER# = U.USER# AND O.NAME = :B3 AND 
 O.NAMESPACE = :B2 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND 
 O.SUBNAME IS NULL AND O.TYPE# = :B1 AND ROWNUM < 2




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 8 0.00 0.00 0 0 0 0
Fetch 8 0.00 0.00 0 40 0 8
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 17 0.00 0.00 0 40 0 8

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT AGGREGATE (cr=5 pr=0 pw=0 time=1000 us starts=1)
 1 1 1 COUNT STOPKEY (cr=5 pr=0 pw=0 time=0 us starts=1)
 1 1 1 HASH JOIN (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=129 card=1)
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=129 card=1)
 1 1 1 STATISTICS COLLECTOR (cr=2 pr=0 pw=0 time=0 us starts=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=111 card=1)(object id 37)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=111 card=1)
 0 0 0 INDEX SKIP SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=0 card=1)(object id 36)

********************************************************************************

SQL ID: c8h20n1d0k95m Plan Hash: 1097271556

select /*+ no_parallel */ spare4 
from
 sys.optstat_hist_control$ where sname=:1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 6 0.00 0.00 0 0 0 0
Execute 6 0.00 0.00 0 0 0 0
Fetch 6 0.00 0.00 0 18 0 6
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 18 0.00 0.00 0 18 0 6

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 TABLE ACCESS FULL OPTSTAT_HIST_CONTROL$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=25 card=1)

********************************************************************************

SQL ID: 30rhvh0fq7jaj Plan Hash: 0

insert /* QOSH:SAVE_STAS */ into sys.wri$_optstat_tab_history(obj#, rowcnt,
 blkcnt,avgrln, analyzetime,samplesize,cachedblk,cachehit,logicalread,
 savtime,spare1, im_imcu_count,im_block_count,scanrate,flags) 
values
 (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15)




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 1 8 1
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.00 0.00 0 1 8 1

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_TAB_HISTORY (cr=1 pr=0 pw=0 time=0 us starts=1)

********************************************************************************

SQL ID: gsfnqdfcvy33q Plan Hash: 2453887050

delete from superobj$ 
where
 subobj# = :1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 4 0.00 0.00 0 0 0 0
Execute 4 0.00 0.00 0 4 0 0
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 8 0.00 0.00 0 4 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 DELETE SUPEROBJ$ (cr=1 pr=0 pw=0 time=0 us starts=1)
 0 0 0 INDEX UNIQUE SCAN I_SUPEROBJ1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=26 card=1)(object id 98)

********************************************************************************

SQL ID: 3kywng531fcxu Plan Hash: 2667651180

delete from tab_stats$ 
where
 obj#=:1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 4 0.00 0.00 0 0 0 0
Execute 4 0.00 0.00 0 8 0 0
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 8 0.00 0.00 0 8 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 DELETE TAB_STATS$ (cr=2 pr=0 pw=0 time=0 us starts=1)
 0 0 0 INDEX UNIQUE SCAN I_TAB_STATS$_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=7 card=1)(object id 74)

********************************************************************************

SQL ID: gxm18860ab67a Plan Hash: 2918346288

update tab$ set ts#=:2,file#=:3,block#=:4,bobj#=decode(:5,0,null,:5),tab#=
 decode(:6,0,null,:6),intcols=:7,kernelcols=:8,clucols=decode(:9,0,null,:9),
 audit$=:10,flags=:11,pctfree$=:12,pctused$=:13,initrans=:14,maxtrans=:15,
 rowcnt=:16,blkcnt=:17,empcnt=:18,avgspc=:19,chncnt=:20,avgrln=:21,
 analyzetime=:22,samplesize=:23,cols=:24,property=:25,degree=decode(:26,1,
 null,:26),instances=decode(:27,1,null,:27),dataobj#=:28,avgspc_flb=:29,
 flbcnt=:30,trigflag=:31,spare1=:32,spare2=decode(:33,0,null,:33),spare4=:34,
 spare6=:35,acdrflags=decode(:36,0,null,:36),acdrtsobj#=decode(:37,0,null,
 :37),acdrdefaulttime=:38,acdrrowtsintcol#=:39 
where
 obj#=:1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 4 0.00 0.00 0 12 4 4
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 5 0.00 0.00 0 12 4 4

Misses in library cache during parse: 0
Optimizer mode: CHOOSE
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 UPDATE TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=138 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 3)

********************************************************************************

SQL ID: ft7wcqu3hzvca Plan Hash: 3466694530

insert /* QOSH:OPEN_COL_STATS */ into sys.wri$_optstat_histhead_history 
 (obj#,intcol#,savtime,flags, null_cnt,minimum,maximum,distcnt,density,
 lowval,hival,avgcln,sample_distcnt, sample_size,timestamp#,colname,
 minimum_enc,maximum_enc) select h.obj#, h.intcol#, :3, bitand(h.spare2, 7) 
 + 8 + decode(h.cache_cnt,0,0,64) + decode(bitand(h.spare2, 8), 0, 0, 128)
 + decode(bitand(h.spare2, 16), 0, 0, 1024) + decode(bitand(h.spare2, 
 32), 0, 0, 4096) + decode(bitand(h.spare2, 64), 0, 0, 8192) + 
 decode(bitand(h.spare2, 128), 0, 0, 16384) + decode(bitand(h.spare2, 256)
 , 0, 0, 65536) + decode(bitand(h.spare2, 512), 0, 0, 131072) + 
 decode(bitand(h.spare2, 1024), 0, 0, 262144) + decode(bitand(h.spare2, 
 2048), 0, 0, 524288), h.null_cnt, h.minimum, h.maximum, h.distcnt, 
 h.density, h.lowval, h.hival, h.avgcln, h.spare1, h.sample_size, 
 h.timestamp#, :4, h.minimum_enc, h.maximum_enc from sys.hist_head$ h where 
 h.obj# = :1 and h.intcol# = :2




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 10 24 3
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.00 0.00 0 10 24 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_HISTHEAD_HISTORY (cr=4 pr=0 pw=0 time=0 us starts=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=52 card=1)
 1 1 1 INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 70)

********************************************************************************

SQL ID: dcs9a27q4mb39 Plan Hash: 0

insert /* QOSH:OPEN_COL_STATS */ into sys.wri$_optstat_histhead_history 
 (obj#,intcol#,flags,expression,colname,savtime) 
values
 (:1, :2, :3, :4, :5, :6)




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 0 0.00 0.00 0 0 0 0
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 1 0.00 0.00 0 0 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
********************************************************************************

SQL ID: du1vfy7c7zvf2 Plan Hash: 0

insert /* QOSH:OPEN_COL_STATS */ into sys.wri$_optstat_histgrm_history (obj#,
 intcol#,savtime,bucket, endpoint,epvalue,colname,epvalue_raw,
 ep_repeat_count,endpoint_enc) select hg.obj#,hg.intcol#,:3,hg.bucket,
 hg.endpoint,hg.epvalue, :4, hg.epvalue_raw, hg.ep_repeat_count, 
 hg.endpoint_enc from sys.histgrm$ hg where hg.obj# = :1 and hg.intcol# = 
 :2




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 0 0.00 0.00 0 0 0 0
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 1 0.00 0.00 0 0 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
********************************************************************************

SQL ID: 6t9k34zjqr6yb Plan Hash: 1774962091

update hist_head$ set bucket_cnt=:3, row_cnt=:4, cache_cnt=:5,null_cnt=:6, 
 timestamp#=:7, sample_size=:8, minimum=:9, maximum=:10,distcnt=:11, lowval=
 :12, hival=:13, density=:14, spare1=:15, spare2=:16, avgcln=:17, col#=:18, 
 minimum_enc=:19, maximum_enc=:20 
where
 obj#=:1 and intcol#=:2




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 6 3 3
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 4 0.00 0.00 0 6 3 3

Misses in library cache during parse: 0
Optimizer mode: CHOOSE
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 UPDATE HIST_HEAD$ (cr=2 pr=0 pw=0 time=0 us starts=1)
 1 1 1 INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=52 card=1)(object id 70)

********************************************************************************

SQL ID: 34rznuxy8h2a4 Plan Hash: 0

insert into histgrm$(obj#,intcol#,row#,bucket,endpoint,col#,epvalue_raw,
 ep_repeat_count,endpoint_enc) 
values
(:1,:2,:3,:4,:5,:6,:7,:8,:9)




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 5 21 2
Fetch 0 0.00 0.00 0 0 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 2 0.00 0.00 0 5 21 2

Misses in library cache during parse: 0
Optimizer mode: CHOOSE
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 LOAD TABLE CONVENTIONAL HISTGRM$ (cr=5 pr=0 pw=0 time=1000 us starts=1)

********************************************************************************

SQL ID: 50kcsz2gh1w84 Plan Hash: 2616421621

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ SU.NAME, 
 SO.NAME, A.STATSTYPE#, A.INTCOL# 
FROM
 ASSOCIATION$ A, OBJ$ O, USER$ U, COL$ C, OBJ$ SO, USER$ SU WHERE O.OWNER#=
 U.USER# AND A.OBJ#=O.OBJ# AND O.OBJ#=C.OBJ# AND C.INTCOL#=A.INTCOL# AND 
 A.STATSTYPE#=SO.OBJ# AND SO.OWNER#=SU.USER# AND O.NAMESPACE = 1 AND 
 O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND 
 O.TYPE#=2 AND U.NAME=:B3 AND O.NAME=:B2 AND C.NAME=:B1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 69 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 69 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 HASH JOIN (cr=23 pr=0 pw=0 time=0 us starts=1 cost=6 size=250 card=1)
 0 0 0 NESTED LOOPS (cr=23 pr=0 pw=0 time=0 us starts=1 cost=6 size=250 card=1)
 0 0 0 NESTED LOOPS (cr=23 pr=0 pw=0 time=0 us starts=1 cost=6 size=250 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=23 pr=0 pw=0 time=0 us starts=1)
 0 0 0 HASH JOIN (cr=23 pr=0 pw=0 time=0 us starts=1 cost=5 size=229 card=1)
 0 0 0 NESTED LOOPS (cr=23 pr=0 pw=0 time=0 us starts=1 cost=5 size=229 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=23 pr=0 pw=0 time=0 us starts=1)
 0 0 0 HASH JOIN (cr=23 pr=0 pw=0 time=0 us starts=1 cost=4 size=211 card=1)
 0 0 0 NESTED LOOPS (cr=23 pr=0 pw=0 time=0 us starts=1 cost=4 size=211 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=23 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=23 pr=0 pw=0 time=0 us starts=1 cost=3 size=168 card=1)
 16 16 16 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=57 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 16 16 16 TABLE ACCESS FULL ASSOCIATION$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=39 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID OBJ$ (cr=18 pr=0 pw=0 time=0 us starts=16 cost=0 size=111 card=1)
 0 0 0 INDEX UNIQUE SCAN I_OBJ1 (cr=18 pr=0 pw=0 time=0 us starts=16 cost=0 size=0 card=1)(object id 36)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=43 card=1)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 36)
 0 0 0 INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=43 card=1)(object id 40)
 0 0 0 TABLE ACCESS CLUSTER USER$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=18 card=1)
 0 0 0 INDEX UNIQUE SCAN I_USER# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 11)
 0 0 0 TABLE ACCESS FULL USER$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=18 card=1)
 0 0 0 INDEX UNIQUE SCAN I_COL3 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 50)
 0 0 0 TABLE ACCESS BY INDEX ROWID COL$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=21 card=1)
 0 0 0 TABLE ACCESS FULL COL$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=21 card=1)

********************************************************************************

SQL ID: dp0vgyb1hsfjb Plan Hash: 1662056740

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ SU.NAME, 
 SO.NAME, A.STATSTYPE#, C.INTCOL# 
FROM
 ASSOCIATION$ A, OBJ$ O, USER$ U, COL$ C, OBJ$ SO, USER$ SU, COLTYPE$ CT, 
 OBJ$ TY WHERE O.OWNER#=U.USER# AND A.OBJ#=TY.OBJ# AND O.OBJ#=C.OBJ# AND 
 C.INTCOL#=CT.INTCOL# AND O.OBJ#=CT.OBJ# AND CT.TOID=TY.OID$ AND 
 A.STATSTYPE#=SO.OBJ# AND SO.OWNER#=SU.USER# AND O.NAMESPACE = 1 AND 
 O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND 
 O.TYPE#=2 AND O.NAME=:B3 AND U.NAME=:B2 AND C.NAME=:B1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 156 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 156 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 HASH JOIN (cr=52 pr=0 pw=0 time=1000 us starts=1 cost=10 size=270 card=1)
 0 0 0 NESTED LOOPS (cr=52 pr=0 pw=0 time=1000 us starts=1 cost=10 size=270 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=52 pr=0 pw=0 time=1000 us starts=1)
 0 0 0 HASH JOIN (cr=52 pr=0 pw=0 time=1000 us starts=1 cost=9 size=252 card=1)
 0 0 0 NESTED LOOPS (cr=52 pr=0 pw=0 time=1000 us starts=1 cost=9 size=252 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=52 pr=0 pw=0 time=1000 us starts=1)
 0 0 0 HASH JOIN (cr=52 pr=0 pw=0 time=1000 us starts=1 cost=8 size=209 card=1)
 0 0 0 NESTED LOOPS (cr=52 pr=0 pw=0 time=1000 us starts=1 cost=8 size=209 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=52 pr=0 pw=0 time=1000 us starts=1)
 0 0 0 NESTED LOOPS (cr=52 pr=0 pw=0 time=1000 us starts=1 cost=7 size=202 card=1)
 16 16 16 HASH JOIN (cr=43 pr=0 pw=0 time=0 us starts=1 cost=6 size=176 card=1)
 16 16 16 NESTED LOOPS (cr=43 pr=0 pw=0 time=0 us starts=1 cost=6 size=176 card=1)
 16 16 16 STATISTICS COLLECTOR (cr=18 pr=0 pw=0 time=0 us starts=1)
 16 16 16 HASH JOIN (cr=18 pr=0 pw=0 time=0 us starts=1 cost=5 size=155 card=1)
 16 16 16 NESTED LOOPS (cr=18 pr=0 pw=0 time=0 us starts=1 cost=5 size=155 card=1)
 16 16 16 STATISTICS COLLECTOR (cr=5 pr=0 pw=0 time=0 us starts=1)
 16 16 16 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=44 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 16 16 16 TABLE ACCESS FULL ASSOCIATION$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=26 card=1)
 16 16 16 INDEX RANGE SCAN I_OBJ2 (cr=13 pr=0 pw=0 time=0 us starts=16 cost=2 size=111 card=1)(object id 37)
 0 0 0 INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=111 card=1)(object id 40)
 16 16 16 TABLE ACCESS CLUSTER COL$ (cr=25 pr=0 pw=0 time=1000 us starts=16 cost=1 size=21 card=1)
 16 16 16 INDEX UNIQUE SCAN I_OBJ# (cr=9 pr=0 pw=0 time=0 us starts=16 cost=0 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS FULL COL$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=21 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID COLTYPE$ (cr=9 pr=0 pw=0 time=0 us starts=16 cost=1 size=26 card=1)
 0 0 0 INDEX UNIQUE SCAN I_COLTYPE2 (cr=9 pr=0 pw=0 time=0 us starts=16 cost=0 size=0 card=1)(object id 113)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=7 card=1)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 36)
 0 0 0 TABLE ACCESS FULL OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=7 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=43 card=1)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 36)
 0 0 0 INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=43 card=1)(object id 40)
 0 0 0 TABLE ACCESS CLUSTER USER$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=18 card=1)
 0 0 0 INDEX UNIQUE SCAN I_USER# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 11)
 0 0 0 TABLE ACCESS FULL USER$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=18 card=1)

********************************************************************************

SQL ID: crmdt678jathx Plan Hash: 1179034175

SELECT /*+ rule 
 OPT_PARAM('_parallel_syspls_obey_force' 
 'false') */ '"'||UI.NAME||'"' IND_OWNER, '"'||OI.NAME||'"' IND_NAME, 
 OI.OBJ# OBJ_NUM, NVL(PO.FLAGS,0) LOCALITY, I.PROPERTY IPROP, I.TYPE# ITYPE 
 FROM SYS.USER$ UT, SYS.OBJ$ OT, SYS.IND$ I, SYS.OBJ$ OI, SYS.USER$ UI, 
 SYS.PARTOBJ$ PO WHERE ((:B3 IS NULL) OR (PO.FLAGS IS NULL) OR (PO.FLAGS = 2)
 ) AND UT.NAME = :B2 AND UT.USER# = OT.OWNER# AND OT.NAME = :B1 AND OT.TYPE# 
 = 2 AND OT.OBJ# = I.BO# AND I.OBJ# = OI.OBJ# AND OI.OWNER# = UI.USER# AND 
 I.OBJ# = PO.OBJ#(+) UNION ALL SELECT /*+ rule */ '"'||UI.NAME||'"' 
 IND_OWNER, '"'||OI.NAME||'"' IND_NAME, OI.OBJ# OBJ_NUM, 0 LOCALITY, 
 I.PROPERTY IPROP, I.TYPE# ITYPE FROM SYS.USER$ UT, SYS.OBJ$ OT, SYS.IND$ I, 
 SYS.TAB$ T, SYS.OBJ$ OI, SYS.USER$ UI WHERE :B4 IS NOT NULL AND UT.NAME = 
 :B2 AND UT.USER# = OT.OWNER# AND OT.NAME = :B1 AND OT.TYPE# = 2 AND OT.OBJ# 
 = T.OBJ# AND T.BOBJ# = I.BO# AND I.TYPE# = 3 AND I.OBJ# = OI.OBJ# AND 
 OI.OWNER# = UI.USER#




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 1 0.00 0.00 0 21 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 3 0.00 0.00 0 21 0 3

Misses in library cache during parse: 0
Optimizer mode: RULE
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 3 3 3 UNION-ALL (cr=21 pr=0 pw=0 time=0 us starts=1)
 3 3 3 NESTED LOOPS (cr=21 pr=0 pw=0 time=0 us starts=1)
 3 3 3 NESTED LOOPS (cr=16 pr=0 pw=0 time=0 us starts=1)
 3 3 3 FILTER (cr=10 pr=0 pw=0 time=0 us starts=1)
 3 3 3 NESTED LOOPS OUTER (cr=10 pr=0 pw=0 time=0 us starts=1)
 3 3 3 NESTED LOOPS (cr=8 pr=0 pw=0 time=0 us starts=1)
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1)(object id 37)
 3 3 3 TABLE ACCESS CLUSTER IND$ (cr=3 pr=0 pw=0 time=0 us starts=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1)(object id 3)
 0 0 0 TABLE ACCESS BY INDEX ROWID PARTOBJ$ (cr=2 pr=0 pw=0 time=0 us starts=3)
 0 0 0 INDEX UNIQUE SCAN I_PARTOBJ$ (cr=2 pr=0 pw=0 time=0 us starts=3)(object id 80)
 3 3 3 TABLE ACCESS BY INDEX ROWID OBJ$ (cr=6 pr=0 pw=0 time=0 us starts=3)
 3 3 3 INDEX RANGE SCAN I_OBJ1 (cr=5 pr=0 pw=0 time=0 us starts=3)(object id 36)
 3 3 3 TABLE ACCESS CLUSTER USER$ (cr=5 pr=0 pw=0 time=0 us starts=3)
 3 3 3 INDEX UNIQUE SCAN I_USER# (cr=2 pr=0 pw=0 time=0 us starts=3)(object id 11)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 TABLE ACCESS BY INDEX ROWID USER$ (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 INDEX UNIQUE SCAN I_USER1 (cr=0 pr=0 pw=0 time=0 us starts=0)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 time=0 us starts=0)(object id 37)
 0 0 0 TABLE ACCESS CLUSTER TAB$ (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 time=0 us starts=0)(object id 3)
 0 0 0 TABLE ACCESS CLUSTER IND$ (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 time=0 us starts=0)(object id 3)
 0 0 0 TABLE ACCESS BY INDEX ROWID OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0)(object id 36)
 0 0 0 TABLE ACCESS CLUSTER USER$ (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 INDEX UNIQUE SCAN I_USER# (cr=0 pr=0 pw=0 time=0 us starts=0)(object id 11)

********************************************************************************

SQL ID: 751umqb58u1kn Plan Hash: 1853893377

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ ITU.NAME 
 OWNNAME, ITO.NAME TABNAME 
FROM
 SYS.USER$ U, SYS.OBJ$ IO, SYS.IND$ I, SYS.OBJ$ ITO, SYS.USER$ ITU WHERE 
 U.NAME = :B2 AND IO.NAME = :B1 AND IO.OWNER# = U.USER# AND IO.NAMESPACE = 4 
 AND IO.REMOTEOWNER IS NULL AND IO.LINKNAME IS NULL AND IO.SUBNAME IS NULL 
 AND IO.TYPE# = 1 AND IO.OBJ# = I.OBJ# AND ITO.OBJ# = I.BO# AND ITO.OWNER#= 
 ITU.USER#




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 12 0.00 0.00 0 0 0 0
Fetch 12 0.00 0.00 0 156 0 12
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 25 0.00 0.00 0 156 0 12

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 HASH JOIN (cr=13 pr=0 pw=0 time=0 us starts=1 cost=7 size=200 card=1)
 1 1 1 NESTED LOOPS (cr=13 pr=0 pw=0 time=0 us starts=1 cost=7 size=200 card=1)
 1 1 1 STATISTICS COLLECTOR (cr=11 pr=0 pw=0 time=0 us starts=1)
 1 1 1 HASH JOIN (cr=11 pr=0 pw=0 time=0 us starts=1 cost=6 size=182 card=1)
 1 1 1 NESTED LOOPS (cr=11 pr=0 pw=0 time=0 us starts=1 cost=6 size=182 card=1)
 1 1 1 STATISTICS COLLECTOR (cr=8 pr=0 pw=0 time=0 us starts=1)
 1 1 1 HASH JOIN (cr=8 pr=0 pw=0 time=0 us starts=1 cost=4 size=139 card=1)
 1 1 1 NESTED LOOPS (cr=8 pr=0 pw=0 time=0 us starts=1 cost=4 size=139 card=1)
 1 1 1 STATISTICS COLLECTOR (cr=5 pr=0 pw=0 time=0 us starts=1)
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=111 card=1)(object id 37)
 1 1 1 TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=1 size=10 card=1)
 1 1 1 INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 41)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED IND$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=10 card=1)
 0 0 0 INDEX FULL SCAN I_IND1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 41)
 1 1 1 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=43 card=1)
 1 1 1 INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 36)
 0 0 0 INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=43 card=1)(object id 40)
 1 1 1 TABLE ACCESS CLUSTER USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 11)
 0 0 0 TABLE ACCESS FULL USER$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=18 card=1)

********************************************************************************

SQL ID: dq5ash5k7v8pr Plan Hash: 1163018545

SELECT /*+ ordered use_nl(u io i ito t itu po) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ IO.OBJ# IOBJN,I.TYPE# 
 ITYPE,I.FLAGS IFLAGS,I.PROPERTY IPROP, I.INTCOLS IINTCOLS, NVL(I.DEGREE,1), 
 I.ANALYZETIME, ITU.NAME TOWN,ITO.NAME TAB,I.BO# TOBJN,T.FLAGS TFLAGS,
 T.PROPERTY TPROP, ITO.TYPE# TTYPE, CASE WHEN BITAND(T.FLAGS, 16) = 0 THEN 
 NULL ELSE T.ROWCNT END NROWS, PO.PARTTYPE PTYPE,PO.PARTCNT PCNT,
 PO.PARTKEYCOLS PTKCOLS, PO.FLAGS PFLAGS,MOD(PO.SPARE2,256) SPTYPE FROM 
 SYS.USER$ U,SYS.OBJ$ IO,SYS.IND$ I, SYS.OBJ$ ITO,SYS.USER$ ITU,SYS.TAB$ T, 
 PARTOBJ$ PO WHERE U.NAME=:B2 AND IO.NAME=:B1 AND IO.OWNER#=U.USER# AND 
 IO.TYPE#=1 AND IO.OBJ#=I.OBJ# AND ITO.OBJ#=I.BO# AND ITO.OWNER#=ITU.USER# 
 AND ITO.OBJ#=T.OBJ# AND IO.OBJ#=PO.OBJ#(+) UNION ALL SELECT /*+ ordered 
 use_nl(u io i ito t itu) */ IO.OBJ# IOBJN,I.TYPE# ITYPE,I.FLAGS IFLAGS,
 I.PROPERTY IPROP, I.INTCOLS IINTCOLS, NVL(I.DEGREE,1), I.ANALYZETIME, 
 ITU.NAME TOWN,ITO.NAME TAB,I.BO# TOBJN,0 TFLAGS,0 TPROP, ITO.TYPE# TTYPE, 
 NULL NROWS, NULL PTYPE,NULL PCNT,NULL PTKCOLS, NULL PFLAGS,NULL SPTYPE FROM 
 SYS.USER$ U,SYS.OBJ$ IO,SYS.IND$ I, SYS.OBJ$ ITO,SYS.USER$ ITU,SYS.CLU$ T 
 WHERE U.NAME=:B2 AND IO.NAME=:B1 AND IO.OWNER#=U.USER# AND IO.TYPE#=1 AND 
 IO.OBJ#=I.OBJ# AND ITO.OBJ#=I.BO# AND ITO.OWNER#=ITU.USER# AND ITO.OBJ#=
 T.OBJ#




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 51 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 51 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 UNION-ALL (cr=17 pr=0 pw=0 time=0 us starts=1)
 1 1 1 NESTED LOOPS OUTER (cr=17 pr=0 pw=0 time=0 us starts=1 cost=9 size=204 card=1)
 1 1 1 NESTED LOOPS (cr=16 pr=0 pw=0 time=0 us starts=1 cost=8 size=183 card=1)
 1 1 1 NESTED LOOPS (cr=13 pr=0 pw=0 time=0 us starts=1 cost=7 size=163 card=1)
 1 1 1 NESTED LOOPS (cr=11 pr=0 pw=0 time=0 us starts=1 cost=6 size=145 card=1)
 1 1 1 NESTED LOOPS (cr=8 pr=0 pw=0 time=0 us starts=1 cost=4 size=98 card=1)
 1 1 1 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=65 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 1 1 1 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=47 card=1)(object id 37)
 1 1 1 TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=1 size=33 card=1)
 1 1 1 INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 41)
 1 1 1 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=47 card=1)
 1 1 1 INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 36)
 1 1 1 TABLE ACCESS CLUSTER USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 11)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=1 size=20 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS BY INDEX ROWID PARTOBJ$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=1 size=21 card=1)
 0 0 0 INDEX UNIQUE SCAN I_PARTOBJ$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 80)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=8 size=167 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=7 size=163 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=6 size=145 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=4 size=98 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=3 size=65 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID USER$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=18 card=1)
 0 0 0 INDEX UNIQUE SCAN I_USER1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=47 card=1)(object id 37)
 0 0 0 TABLE ACCESS BY INDEX ROWID IND$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=33 card=1)
 0 0 0 INDEX UNIQUE SCAN I_IND1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 41)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=47 card=1)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 36)
 0 0 0 TABLE ACCESS CLUSTER USER$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=18 card=1)
 0 0 0 INDEX UNIQUE SCAN I_USER# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 11)
 0 0 0 TABLE ACCESS CLUSTER CLU$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=4 card=1)
 0 0 0 INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 3)

********************************************************************************

SQL ID: b1khwjh2yb2sz Plan Hash: 444875925

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ 
 DECODE(SUM(BITAND(TRIGFLAG, 67108864)), 67108864, 67108864, 0) + 
 DECODE(SUM(BITAND(TRIGFLAG, 134217728)), 134217728, 134217728, 0) FROM ( 
 SELECT /*+ ordered index(i) use_nl_with_index(t) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.TRIGFLAG FROM 
 SYS.IND$ I, SYS.TAB$ T WHERE I.OBJ# = :B1 AND I.TYPE# != 3 AND I.BO# = 
 T.OBJ# UNION ALL SELECT /*+ ordered index(i) use_nl_with_index(t) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.TRIGFLAG 
 FROM SYS.IND$ I, SYS.TAB$ T WHERE I.OBJ# = :B1 AND I.TYPE# = 3 AND I.BO# = 
 T.BOBJ# )




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 27 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 27 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT AGGREGATE (cr=9 pr=0 pw=0 time=0 us starts=1)
 1 1 1 VIEW (cr=9 pr=0 pw=0 time=0 us starts=1 cost=31 size=39 card=3)
 1 1 1 UNION-ALL (cr=9 pr=0 pw=0 time=0 us starts=1)
 1 1 1 NESTED LOOPS (cr=6 pr=0 pw=0 time=0 us starts=1 cost=3 size=21 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=13 card=1)
 1 1 1 INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 41)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=1 size=8 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 3)
 0 0 0 NESTED LOOPS (cr=3 pr=0 pw=0 time=0 us starts=1 cost=28 size=36 card=2)
 0 0 0 TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=13 card=1)
 1 1 1 INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 41)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED TAB$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=26 size=10 card=2)
 0 0 0 INDEX RANGE SCAN I_TAB1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=44)(object id 33)

********************************************************************************

SQL ID: 4dj64s4k1ypu1 Plan Hash: 3275028636

SELECT /*+ leading(u o) 
 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ O.OBJ# POBJN, 
 NVL(IP.PART#, ICP.PART#) PN, O.SUBNAME PNAME, NVL(IP.ANALYZETIME, 
 ICP.ANALYZETIME) LAST_ANALYZED, NVL(IP.FLAGS, ICP.FLAGS) FLAGS, :B4 REASON 
 FROM SYS.USER$ U, SYS.OBJ$ O, SYS.INDPART$ IP, SYS.INDCOMPART$ ICP WHERE 
 :B3 IS NULL AND U.NAME = :B2 AND O.OWNER# = U.USER# AND O.NAME = :B1 AND 
 O.NAMESPACE = 4 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND 
 O.TYPE# = 20 AND O.OBJ# = IP.OBJ#(+) AND O.OBJ# = ICP.OBJ#(+) UNION ALL 
 SELECT * FROM ( SELECT /*+ leading(u o) */ O.OBJ# POBJN, NVL(IP.PART#, 
 ICP.PART#) PN, O.SUBNAME PNAME, NVL(IP.ANALYZETIME,ICP.ANALYZETIME) 
 LAST_ANALYZED, NVL(IP.FLAGS, ICP.FLAGS) FLAGS, :B4 REASON FROM SYS.USER$ U, 
 SYS.OBJ$ O, SYS.INDPART$ IP, SYS.INDCOMPART$ ICP WHERE U.NAME = :B2 AND 
 O.OWNER# = U.USER# AND O.NAME = :B1 AND O.NAMESPACE = 4 AND O.REMOTEOWNER 
 IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME = :B3 AND O.TYPE# = 20 AND 
 O.OBJ# = IP.OBJ#(+) AND O.OBJ# = ICP.OBJ#(+) UNION ALL SELECT /*+ leading(u 
 osp isp op) */ OP.OBJ# POBJN, ICP.PART# PN, OP.SUBNAME PNAME, 
 ICP.ANALYZETIME LAST_ANALYZED, ICP.FLAGS FLAGS, :B4 REASON FROM SYS.USER$ U,
 SYS.OBJ$ OSP, SYS.INDSUBPART$ ISP, SYS.OBJ$ OP, SYS.INDCOMPART$ ICP WHERE 
 U.NAME = :B2 AND OSP.OWNER# = U.USER# AND OSP.NAME = :B1 AND OSP.NAMESPACE =
 4 AND OSP.REMOTEOWNER IS NULL AND OSP.LINKNAME IS NULL AND OSP.SUBNAME = 
 :B3 AND OSP.TYPE# = 35 AND OSP.OBJ# = ISP.OBJ# AND OP.OBJ# = ISP.POBJ# AND 
 OP.OBJ# = ICP.OBJ# ) WHERE ROWNUM < 2




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 3 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 27 0 0
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 9 0.00 0.00 0 27 0 0

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 0 0 0 UNION-ALL (cr=9 pr=0 pw=0 time=0 us starts=1)
 0 0 0 FILTER (cr=5 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS OUTER (cr=5 pr=0 pw=0 time=0 us starts=1 cost=4 size=199 card=1)
 0 0 0 NESTED LOOPS OUTER (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=177 card=1)
 0 0 0 NESTED LOOPS (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=111 card=1)(object id 37)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=48 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 826)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=22 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDPART_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 804)
 0 0 0 COUNT STOPKEY (cr=4 pr=0 pw=0 time=0 us starts=1)
 0 0 0 VIEW (cr=4 pr=0 pw=0 time=0 us starts=1 cost=6 size=254 card=2)
 0 0 0 UNION-ALL (cr=4 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS OUTER (cr=2 pr=0 pw=0 time=0 us starts=1 cost=3 size=199 card=1)
 0 0 0 NESTED LOOPS OUTER (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=177 card=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 time=0 us starts=1 cost=1 size=111 card=1)(object id 37)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=48 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 826)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=22 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDPART_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 804)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=3 size=210 card=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=3 size=210 card=1)
 0 0 0 HASH JOIN (cr=2 pr=0 pw=0 time=0 us starts=1 cost=3 size=162 card=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=3 size=162 card=1)
 0 0 0 STATISTICS COLLECTOR (cr=2 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=155 card=1)
 0 0 0 NESTED LOOPS (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=129 card=1)
 1 1 1 TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=18 card=1)
 1 1 1 INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 46)
 0 0 0 INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 time=0 us starts=1 cost=1 size=111 card=1)(object id 37)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=26 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDSUBPART_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 816)
 0 0 0 TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=7 card=1)
 0 0 0 INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 36)
 0 0 0 INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=7 card=1)(object id 40)
 0 0 0 INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 826)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=48 card=1)

********************************************************************************

SQL ID: 76rz8vf4kqjn7 Plan Hash: 4116228867

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ :B2 
FROM
 DUAL WHERE :B1 IS NULL UNION ALL SELECT TP.OBJ# FROM SYS.TABPART$ TP, 
 SYS.INDPART$ IP WHERE TP.BO# = :B2 AND IP.PART# = TP.PART# AND IP.OBJ# = 
 :B1 UNION ALL SELECT TP.OBJ# FROM SYS.TABCOMPART$ TP, SYS.INDCOMPART$ IP 
 WHERE TP.BO# = :B2 AND IP.PART# = TP.PART# AND IP.OBJ# = :B1 UNION ALL 
 SELECT TSP.OBJ# FROM SYS.TABSUBPART$ TSP, SYS.TABCOMPART$ TCP, 
 SYS.INDSUBPART$ ISP, SYS.INDCOMPART$ ICP WHERE TCP.BO# = :B2 AND TSP.POBJ# =
 TCP.OBJ# AND ISP.SUBPART# = TSP.SUBPART# AND ICP.PART# = TCP.PART# AND 
 ISP.POBJ# = ICP.OBJ# AND ISP.OBJ# = :B1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 0 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 0 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 UNION-ALL (cr=0 pr=0 pw=0 time=0 us starts=1)
 1 1 1 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 1 1 1 FAST DUAL (cr=0 pr=0 pw=0 time=0 us starts=1 cost=2 size=0 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=1 cost=2 size=25 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDPART$ (cr=0 pr=0 pw=0 time=0 us starts=1 cost=1 size=10 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDPART_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 804)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=15 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABPART_BOPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 798)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=39 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=26 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 826)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=13 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABCOMPART_BOPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 820)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=1 cost=1 size=91 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=78 card=1)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=65 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=39 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDSUBPART_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 816)
 0 0 0 TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=26 card=1)
 0 0 0 INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 826)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=13 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABCOMPART_BOPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 820)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=13 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABSUBPART_POBJSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 810)

********************************************************************************

SQL ID: 4g6pp0b6fbawm Plan Hash: 1130498780

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ ROWCNT, BLKCNT,
 ANALYZETIME 
FROM
 SYS.TAB$ WHERE OBJ# = :B2 AND BITAND(FLAGS, 16) != 0 AND :B1 = 'n' UNION ALL 
 SELECT ROWCNT_KXTTST_TS, BLKCNT_KXTTST_TS, ANALYZETIME_KXTTST_TS FROM 
 SYS.X$KXTTSTETS WHERE OBJ#_KXTTST_TS = :B2 AND :B1 = 'y'




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 9 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 9 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 UNION-ALL (cr=3 pr=0 pw=0 time=0 us starts=1)
 1 1 1 FILTER (cr=3 pr=0 pw=0 time=0 us starts=1)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=24 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 3)
 0 0 0 FILTER (cr=0 pr=0 pw=0 time=0 us starts=1)
 0 0 0 FIXED TABLE FIXED INDEX X$KXTTSTETS (ind:1) (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=48 card=1)

********************************************************************************

SQL ID: azfvzhkdtsfng Plan Hash: 358207273

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ COUNT(*) 
FROM
 SYS.FIXED_OBJ$ WHERE OBJ# = :B1




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 6 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 6 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT AGGREGATE (cr=2 pr=0 pw=0 time=0 us starts=1)
 0 0 0 INDEX UNIQUE SCAN I_FIXED_OBJ$_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=7 card=1)(object id 72)

********************************************************************************

SQL ID: b8zju7mj1v0wf Plan Hash: 3704755223

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.PROPERTY 
FROM
 SYS.OBJ$ O, SYS.TAB$ T WHERE O.OBJ# = :B1 AND O.TYPE# = 2 AND O.OBJ# = 
 T.OBJ#




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 15 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 15 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 MERGE JOIN CARTESIAN (cr=5 pr=0 pw=0 time=0 us starts=1 cost=3 size=21 card=1)
 1 1 1 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=12 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 3)
 1 1 1 BUFFER SORT (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=9 card=1)
 1 1 1 INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=9 card=1)(object id 36)

********************************************************************************

SQL ID: 54bagkdf5jz06 Plan Hash: 305735784

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ SUM(REASON) 
FROM
 (SELECT OBJ#, CASE WHEN BITAND(FLAGS, 16) != 16 THEN :B3 ELSE :B2 END REASON 
 FROM SYS.TAB$ WHERE OBJ# = :B1 AND (BITAND(FLAGS,16) != 16 OR SAMPLESIZE <> 
 ROWCNT) UNION ALL SELECT OBJ#, CASE WHEN BITAND(FLAGS, 2) != 2 THEN :B3 
 ELSE :B2 END REASON FROM SYS.TABPART$ WHERE OBJ# = :B1 AND (BITAND(FLAGS,2) 
 != 2 OR SAMPLESIZE <> ROWCNT) UNION ALL SELECT OBJ#, CASE WHEN BITAND(FLAGS,
 2) != 2 THEN :B3 ELSE :B2 END REASON FROM SYS.TABCOMPART$ T WHERE OBJ# = 
 :B1 AND (BITAND(FLAGS,2) != 2 OR SAMPLESIZE <> ROWCNT) UNION ALL SELECT 
 OBJ#, CASE WHEN BITAND(FLAGS, 2) != 2 THEN :B3 ELSE :B2 END REASON FROM 
 SYS.TABSUBPART$ WHERE OBJ# = :B1 AND (BITAND(FLAGS,2) != 2) OR SAMPLESIZE 
 <> ROWCNT)




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 27 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 27 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT AGGREGATE (cr=9 pr=0 pw=0 time=0 us starts=1)
 0 0 0 VIEW (cr=9 pr=0 pw=0 time=0 us starts=1 cost=7 size=52 card=4)
 0 0 0 UNION-ALL (cr=9 pr=0 pw=0 time=0 us starts=1)
 0 0 0 TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=16 card=1)
 1 1 1 INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABPART$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=2 size=16 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=2 pr=0 pw=0 time=0 us starts=1 cost=1 size=0 card=1)(object id 799)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=1 size=23 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABCOMPART$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 821)
 0 0 0 TABLE ACCESS FULL TABSUBPART$ (cr=3 pr=0 pw=0 time=0 us starts=1 cost=2 size=34 card=1)

********************************************************************************

SQL ID: 0ks4u5nywjbdj Plan Hash: 1017082981

SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ COUNT(*) 
FROM
 MON_MODS_ALL$ M, (SELECT ROWCNT, OBJ# BO# FROM TAB$ WHERE OBJ# = :B1 UNION 
 ALL SELECT ROWCNT, BO# BO# FROM TABPART$ WHERE OBJ# = :B1 UNION ALL SELECT 
 ROWCNT, BO# BO# FROM TABCOMPART$ WHERE OBJ# = :B1 UNION ALL SELECT T.ROWCNT,
 TCP.BO# BO# FROM TABSUBPART$ T, TABCOMPART$ TCP WHERE T.OBJ# = :B1 AND 
 T.POBJ# = TCP.OBJ#) V WHERE M.OBJ# = :B1 AND (BITAND(M.FLAGS,:B3 ) = :B3 OR 
 M.INSERTS+M.UPDATES+M.DELETES > :B2 /100 * NVL(V.ROWCNT, 0) OR 
 M.DROP_SEGMENTS > 0 )




call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 3 0.00 0.00 0 0 0 0
Fetch 3 0.00 0.00 0 3 0 3
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 7 0.00 0.00 0 3 0 3

Misses in library cache during parse: 0
Optimizer mode: ALL_ROWS
Parsing user id: SYS (recursive depth: 1)
Number of plan statistics captured: 1

Rows (1st) Rows (avg) Rows (max) Row Source Operation
---------- ---------- ---------- ---------------------------------------------------
 1 1 1 SORT AGGREGATE (cr=1 pr=0 pw=0 time=0 us starts=1)
 0 0 0 NESTED LOOPS (cr=1 pr=0 pw=0 time=0 us starts=1 cost=7 size=34 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID MON_MODS_ALL$ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=1 size=21 card=1)
 0 0 0 INDEX UNIQUE SCAN I_MON_MODS_ALL$_OBJ (cr=1 pr=0 pw=0 time=0 us starts=1 cost=0 size=0 card=1)(object id 661)
 0 0 0 VIEW (cr=0 pr=0 pw=0 time=0 us starts=0 cost=6 size=13 card=1)
 0 0 0 UNION-ALL (cr=0 pr=0 pw=0 time=0 us starts=0)
 0 0 0 TABLE ACCESS CLUSTER TAB$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=8 card=1)
 0 0 0 INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 3)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=2 size=9 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=0 card=1)(object id 799)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=7 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 821)
 0 0 0 NESTED LOOPS (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=28 card=1)
 0 0 0 TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=1 size=23 card=1)
 0 0 0 INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=0 card=1)(object id 811)
 0 0 0 INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 time=0 us starts=0 cost=0 size=5 card=1)(object id 821)

********************************************************************************

SQL ID: 38243c4tqrkxm Plan Hash: 3848648847

select u.name, o.name, o.namespace, o.type#, decode(bitand(i.property,1024),0,
 0,1), o.obj# 
from
 ind$ i,obj$ o,user$ u where i.obj#=:1 and o.obj#=i.bo# and o.owner#=u.user#

db12201_ora_20607_STATS.trc

Trace file /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATS.trc
Oracle Database 12c Enterprise Edition Release 12.2.0.1.0 - 64bit Production
Build label: RDBMS_12.2.0.1.0_LINUX.X64_170125
ORACLE_HOME: /u01/app/oracle/product/12.2.0/dbhome_1
System name: Linux
Node name: stormking
Release: 2.6.39-400.247.1.el6uek.x86_64
Version: #1 SMP Thu Feb 5 16:06:15 PST 2015
Machine: x86_64
Instance name: db12201
Redo thread mounted by this instance: 1
Oracle process number: 40
Unix process pid: 20607, image: oracle@stormking (TNS V1-V3)




*** 2018-02-11T14:25:25.977148-05:00
*** SESSION ID:(84.15782) 2018-02-11T14:25:25.977148-05:00
*** CLIENT ID:() 2018-02-11T14:25:25.977148-05:00
*** SERVICE NAME:(SYS$USERS) 2018-02-11T14:25:25.977148-05:00
*** MODULE NAME:(SQL*Plus) 2018-02-11T14:25:25.977148-05:00
*** ACTION NAME:() 2018-02-11T14:25:25.977148-05:00
*** CLIENT DRIVER:(SQL*PLUS) 2018-02-11T14:25:25.977148-05:00
 
WAIT #139811585621896: nam='SQL*Net message to client' ela= 0 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=3200339132742
WAIT #139811585621896: nam='SQL*Net message from client' ela= 0 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=3200339133742
CLOSE #139811585621896:c=0,e=0,dep=0,type=1,tim=3200339133742
=====================
PARSING IN CURSOR #139811584786576 len=113 dep=0 uid=114 oct=47 lid=114 tim=3200339133742 hv=4102016954 ad='70536e30' sqlid='5zvsvmvu7zmxu'
begin
 dbms_stats.gather_table_stats (
 ownname => 'U',
 tabname => 'ORDS',
 no_invalidate => false
 );
end;
END OF STMT
PARSE #139811584786576:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=1,plh=0,tim=3200339133742
=====================
PARSING IN CURSOR #139811584780192 len=69 dep=1 uid=114 oct=3 lid=114 tim=3200339134742 hv=2976989217 ad='7f265000' sqlid='9d8cr4qsr2h11'
SELECT VALUE FROM NLS_SESSION_PARAMETERS WHERE PARAMETER = 'NLS_SORT'
END OF STMT
PARSE #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339134742
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339134742
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339134742
STAT #139811584780192 id=1 cnt=1 pid=0 pos=1 obj=0 op='FIXED TABLE FULL X$NLS_PARAMETERS (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=31 card=1)'
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339134742
=====================
PARSING IN CURSOR #139811585033520 len=69 dep=1 uid=114 oct=3 lid=114 tim=3200339134742 hv=2117419034 ad='7f264cd0' sqlid='d45q8yjz3ah0u'
SELECT VALUE FROM NLS_SESSION_PARAMETERS WHERE PARAMETER = 'NLS_COMP'
END OF STMT
PARSE #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339134742
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339134742
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339134742
STAT #139811585033520 id=1 cnt=1 pid=0 pos=1 obj=0 op='FIXED TABLE FULL X$NLS_PARAMETERS (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=31 card=1)'
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339135742
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339135742
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339135742
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339135742
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339135742
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339135742
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339135742
=====================
PARSING IN CURSOR #139811585036504 len=315 dep=1 uid=0 oct=3 lid=0 tim=3200339135742 hv=3399995395 ad='8161b5a8' sqlid='2s9bghg5agn03'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ P.VALCHAR FROM SYS.OPTSTAT_USER_PREFS$ P, OBJ$ O, USER$ U WHERE P.OBJ#=O.OBJ# AND U.USER#=O.OWNER# AND U.NAME=:B3 AND O.NAME=:B2 AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND O.TYPE# = 2 AND P.PNAME=:B1 
END OF STMT
PARSE #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339135742
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286be4b698 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286be4b718 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286be4b798 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339136742
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339136742
STAT #139811585036504 id=1 cnt=0 pid=0 pos=1 obj=0 op='NESTED LOOPS (cr=6 pr=0 pw=0 str=1 time=0 us cost=4 size=171 card=1)'
STAT #139811585036504 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=6 pr=0 pw=0 str=1 time=0 us cost=4 size=171 card=1)'
STAT #139811585036504 id=3 cnt=1 pid=2 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811585036504 id=4 cnt=1 pid=3 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811585036504 id=5 cnt=1 pid=4 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585036504 id=6 cnt=1 pid=3 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=111 card=1)'
STAT #139811585036504 id=7 cnt=0 pid=2 pos=2 obj=681 op='INDEX UNIQUE SCAN I_USER_PREFS$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585036504 id=8 cnt=0 pid=1 pos=2 obj=680 op='TABLE ACCESS BY INDEX ROWID OPTSTAT_USER_PREFS$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=42 card=1)'
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339136742
=====================
PARSING IN CURSOR #139811585569480 len=119 dep=1 uid=0 oct=3 lid=0 tim=3200339136742 hv=4203535333 ad='815fd3a8' sqlid='b9nbhsbx8tqz5'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ SPARE4 FROM SYS.OPTSTAT_HIST_CONTROL$ WHERE SNAME = :B1 
END OF STMT
PARSE #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339136742
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286be3ffa0 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339137742
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339137742
STAT #139811585569480 id=1 cnt=1 pid=0 pos=1 obj=679 op='TABLE ACCESS FULL OPTSTAT_HIST_CONTROL$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=25 card=1)'
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339137742
=====================
PARSING IN CURSOR #139811585522384 len=300 dep=1 uid=0 oct=3 lid=0 tim=3200339137742 hv=2480425096 ad='815e98a8' sqlid='5uu6gr69xhk48'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.PROPERTY FROM SYS.USER$ U, SYS.OBJ$ O, SYS.TAB$ T WHERE U.NAME = :B2 AND U.USER# = O.OWNER# AND O.NAME = :B1 AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND O.TYPE# = 2 AND O.OBJ# = T.OBJ#
END OF STMT
PARSE #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339137742
WAIT #139811585522384: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339137742
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286be3f5a0 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286be3f620 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339137742
FETCH #139811585522384:c=1000,e=1000,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339138742
STAT #139811585522384 id=1 cnt=1 pid=0 pos=1 obj=0 op='HASH JOIN (cr=8 pr=0 pw=0 str=1 time=1000 us cost=4 size=141 card=1)'
STAT #139811585522384 id=2 cnt=1 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=8 pr=0 pw=0 str=1 time=1000 us cost=4 size=141 card=1)'
STAT #139811585522384 id=3 cnt=1 pid=2 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585522384 id=4 cnt=1 pid=3 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811585522384 id=5 cnt=1 pid=4 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811585522384 id=6 cnt=1 pid=5 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585522384 id=7 cnt=1 pid=4 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=111 card=1)'
STAT #139811585522384 id=8 cnt=1 pid=2 pos=2 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=1000 us cost=1 size=12 card=1)'
STAT #139811585522384 id=9 cnt=1 pid=8 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585522384 id=10 cnt=0 pid=1 pos=2 obj=4 op='TABLE ACCESS FULL TAB$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=12 card=1)'
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339138742
=====================
PARSING IN CURSOR #139811585628848 len=6 dep=1 uid=114 oct=44 lid=114 tim=3200339138742 hv=255718823 ad='0' sqlid='8ggw94h7mvxd7'
COMMIT
END OF STMT
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339138742
XCTEND rlbk=0, rd_only=1, tim=3200339138742
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339138742
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339138742
=====================
PARSING IN CURSOR #139811585519952 len=183 dep=1 uid=0 oct=3 lid=0 tim=3200339138742 hv=3205126760 ad='815e7728' sqlid='b4fqsa2zhnqm8'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ O.NAME FROM OBJ$ O, USER$ U WHERE O.OWNER# = U.USER# AND O.OBJ# = (SELECT SYS_CONTEXT('USERENV', 'BG_JOB_ID') FROM DUAL)
END OF STMT
PARSE #139811585519952:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=750105498,tim=3200339138742
EXEC #139811585519952:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=750105498,tim=3200339139742
FETCH #139811585519952:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=750105498,tim=3200339139742
STAT #139811585519952 id=1 cnt=0 pid=0 pos=1 obj=0 op='HASH JOIN (cr=0 pr=0 pw=0 str=1 time=0 us cost=4 size=47 card=1)'
STAT #139811585519952 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=1 time=0 us cost=4 size=47 card=1)'
STAT #139811585519952 id=3 cnt=0 pid=2 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585519952 id=4 cnt=0 pid=3 pos=1 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=1 time=0 us cost=3 size=43 card=1)'
STAT #139811585519952 id=5 cnt=0 pid=4 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=1 time=0 us cost=2 size=0 card=1)'
STAT #139811585519952 id=6 cnt=1 pid=5 pos=1 obj=0 op='FAST DUAL (cr=0 pr=0 pw=0 str=1 time=0 us cost=2 size=0 card=1)'
STAT #139811585519952 id=7 cnt=0 pid=2 pos=2 obj=47 op='INDEX RANGE SCAN I_USER2 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=4 card=1)'
STAT #139811585519952 id=8 cnt=0 pid=1 pos=2 obj=47 op='INDEX FULL SCAN I_USER2 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=4 card=1)'
CLOSE #139811585519952:c=0,e=0,dep=1,type=3,tim=3200339139742
=====================
PARSING IN CURSOR #139811585513096 len=94 dep=1 uid=0 oct=3 lid=0 tim=3200339139742 hv=3821161089 ad='815e88e8' sqlid='5mgx3qrjw4kn1'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ ST_OPR_ID_SEQ.NEXTVAL FROM DUAL
END OF STMT
PARSE #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2973543806,tim=3200339139742
EXEC #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2973543806,tim=3200339139742
FETCH #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2973543806,tim=3200339140741
STAT #139811585513096 id=1 cnt=1 pid=0 pos=1 obj=673 op='SEQUENCE ST_OPR_ID_SEQ (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585513096 id=2 cnt=1 pid=1 pos=1 obj=0 op='FAST DUAL (cr=0 pr=0 pw=0 str=1 time=0 us cost=2 size=0 card=1)'
CLOSE #139811585513096:c=0,e=0,dep=1,type=3,tim=3200339140741
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(40) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc09f80 bln=128 avl=10 flg=05
 value="CONCURRENT"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339140741
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339140741
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339140741
EXEC #139811585519952:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=750105498,tim=3200339140741
FETCH #139811585519952:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=750105498,tim=3200339140741
CLOSE #139811585519952:c=0,e=0,dep=1,type=3,tim=3200339140741
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc07960 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc079e0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(24) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc07a60 bln=128 avl=06 flg=01
 value="DEGREE"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339141741
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339141741
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339141741
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(24) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc07a60 bln=128 avl=06 flg=05
 value="DEGREE"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339141741
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339141741
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339141741
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc07960 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc079e0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(64) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc07a60 bln=128 avl=16 flg=01
 value="ESTIMATE_PERCENT"
EXEC #139811585036504:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339142741
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339142741
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339142741
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(64) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc07a60 bln=128 avl=16 flg=05
 value="ESTIMATE_PERCENT"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339142741
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339142741
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339142741
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc07960 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc079e0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc07a60 bln=128 avl=11 flg=01
 value="GRANULARITY"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339142741
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339142741
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339142741
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc07a60 bln=128 avl=11 flg=05
 value="GRANULARITY"
EXEC #139811585569480:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339143741
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339143741
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339143741
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc07960 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc079e0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(40) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc07a60 bln=128 avl=10 flg=01
 value="METHOD_OPT"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339143741
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339143741
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339143741
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(40) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc07a60 bln=128 avl=10 flg=05
 value="METHOD_OPT"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339143741
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339143741
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339143741
=====================
PARSING IN CURSOR #139811583198792 len=172 dep=1 uid=0 oct=2 lid=0 tim=3200339144741 hv=872460390 ad='7f213a58' sqlid='ddsukg4u01c36'
insert /* QOSH:REC_STS */ into sys.wri$_optstat_opr (id, operation, target, start_time, end_time, status, job_name, session_id, notes) values (:1,:2,:3,:4,:5,:6,:7,:8,:9)
END OF STMT
PARSE #139811583198792:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339144741
BINDS #139811583198792:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfcc350 bln=22 avl=03 flg=05
 value=7327
 Bind#1
 oacdty=01 mxl=32(18) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286be224f4 bln=32 avl=18 flg=09
 value="gather_table_stats"
 Bind#2
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286be224c4 bln=32 avl=06 flg=09
 value="U.ORDS"
 Bind#3
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=56 off=0
 kxsbbbfp=7f286bfcc300 bln=13 avl=13 flg=05
 value=11-FEB-18 02.25.25.988146000 PM -05:00
 Bind#4
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=16
 kxsbbbfp=7f286bfcc310 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.25.000000000 PM -05:00
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=32
 kxsbbbfp=7f286bfcc320 bln=22 avl=02 flg=01
 value=1
 Bind#6
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfcc2d0 bln=22 avl=02 flg=05
 value=84
 Bind#8
 oacdty=01 mxl=2000(660) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=2000 off=0
 kxsbbbfp=7f286be221d4 bln=2000 avl=660 flg=09
 value="<params><param name="block_sample" val="FALSE"/><param name="cascade" val="NULL"/><param name="concurrent" val="FALSE"/><param name="degree" val="NULL"/><param name="estimate_percent" val="DBMS_STATS.AUTO_SAMPLE_SIZE"/><param name="force" val="FALSE"/><pa"...
EXEC #139811583198792:c=1000,e=1000,p=0,cr=1,cu=8,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339145741
STAT #139811583198792 id=1 cnt=0 pid=0 pos=1 obj=0 op='LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_OPR (cr=1 pr=0 pw=0 str=1 time=1000 us)'
CLOSE #139811583198792:c=0,e=0,dep=1,type=1,tim=3200339145741
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339145741
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339145741
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339145741
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339145741
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339146741
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339146741
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339146741
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339146741
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339146741
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339146741
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339146741
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339146741
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc06788 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06808 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339147741
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339147741
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339147741
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(120) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=30 flg=01
 value="PREFERENCE_OVERRIDES_PARAMETER"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339147741
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339147741
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339147741
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(120) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=30 flg=05
 value="PREFERENCE_OVERRIDES_PARAMETER"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339147741
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339147741
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339147741
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(64) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=16 flg=01
 value="ESTIMATE_PERCENT"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339148740
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339148740
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339148740
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(64) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=16 flg=05
 value="ESTIMATE_PERCENT"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339148740
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339148740
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339148740
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(40) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=10 flg=01
 value="METHOD_OPT"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339148740
FETCH #139811585036504:c=0,e=1000,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339149740
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339149740
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(40) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=10 flg=05
 value="METHOD_OPT"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339149740
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339149740
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339149740
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(24) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=06 flg=01
 value="DEGREE"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339149740
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339149740
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339149740
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(24) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=06 flg=05
 value="DEGREE"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339149740
FETCH #139811585569480:c=999,e=1000,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339150740
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339150740
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=11 flg=01
 value="GRANULARITY"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339150740
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339150740
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339150740
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=11 flg=05
 value="GRANULARITY"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339150740
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339150740
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339150740
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=07 flg=01
 value="CASCADE"
EXEC #139811585036504:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339151740
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339151740
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339151740
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=07 flg=05
 value="CASCADE"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339151740
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339151740
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339151740
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=07 flg=01
 value="OPTIONS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339151740
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339151740
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339151740
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=07 flg=05
 value="OPTIONS"
EXEC #139811585569480:c=999,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339152740
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339152740
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339152740
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339152740
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339152740
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339152740
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339152740
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339152740
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339152740
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc06708 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06788 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06808 bln=128 avl=11 flg=01
 value="INCREMENTAL"
EXEC #139811585036504:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339153740
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339153740
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339153740
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc06808 bln=128 avl=11 flg=05
 value="INCREMENTAL"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339153740
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339153740
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339153740
=====================
PARSING IN CURSOR #139811583197408 len=292 dep=1 uid=0 oct=3 lid=0 tim=3200339153740 hv=1052246055 ad='81627838' sqlid='3rju5whzbh017'
SELECT /*+ ordered index(u) index(o) index(po) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ MOD(PO.SPARE2, 256), PO.PARTTYPE FROM SYS.USER$ U, SYS.OBJ$ O, SYS.PARTOBJ$ PO WHERE U.NAME = :B3 AND O.NAME = :B2 AND O.NAMESPACE = :B1 AND U.USER# = O.OWNER# AND O.OBJ# = PO.OBJ#
END OF STMT
PARSE #139811583197408:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3326593961,tim=3200339153740
BINDS #139811583197408:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=280 off=0
 kxsbbbfp=7f286bc06f58 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06fd8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286bc07058 bln=22 avl=02 flg=01
 value=1
EXEC #139811583197408:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3326593961,tim=3200339154740
FETCH #139811583197408:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=3326593961,tim=3200339154740
STAT #139811583197408 id=1 cnt=0 pid=0 pos=1 obj=0 op='NESTED LOOPS (cr=6 pr=0 pw=0 str=1 time=0 us cost=4 size=76 card=1)'
STAT #139811583197408 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=6 pr=0 pw=0 str=1 time=0 us cost=4 size=76 card=1)'
STAT #139811583197408 id=3 cnt=1 pid=2 pos=1 obj=0 op='HASH JOIN (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=65 card=1)'
STAT #139811583197408 id=4 cnt=1 pid=3 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=65 card=1)'
STAT #139811583197408 id=5 cnt=1 pid=4 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583197408 id=6 cnt=1 pid=5 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583197408 id=7 cnt=1 pid=6 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583197408 id=8 cnt=1 pid=4 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=47 card=1)'
STAT #139811583197408 id=9 cnt=0 pid=3 pos=2 obj=37 op='INDEX SKIP SCAN I_OBJ2 (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=47 card=1)'
STAT #139811583197408 id=10 cnt=0 pid=2 pos=2 obj=80 op='INDEX UNIQUE SCAN I_PARTOBJ$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583197408 id=11 cnt=0 pid=1 pos=2 obj=79 op='TABLE ACCESS BY INDEX ROWID PARTOBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=11 card=1)'
CLOSE #139811583197408:c=0,e=0,dep=1,type=3,tim=3200339154740
=====================
PARSING IN CURSOR #139811583191840 len=372 dep=1 uid=0 oct=3 lid=0 tim=3200339154740 hv=3537622472 ad='81626fd8' sqlid='7gzcdxb9drpf8'
SELECT /*+ leading(u) use_nl_with_index(o) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ O.OBJ#, O.TYPE# FROM SYS.USER$ U, SYS.OBJ$ O WHERE U.NAME = :B3 AND O.OWNER# = U.USER# AND O.NAME = :B2 AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND (O.SUBNAME IS NULL AND :B1 IS NULL OR O.SUBNAME = :B1 ) AND O.TYPE# IN (2,19,34)
END OF STMT
PARSE #139811583191840:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3179548805,tim=3200339154740
BINDS #139811583191840:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=320 off=0
 kxsbbbfp=7f286bc06198 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc06218 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc06298 bln=32 avl=00 flg=01
 Bind#3
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286bc062b8 bln=32 avl=00 flg=01
EXEC #139811583191840:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3179548805,tim=3200339155740
FETCH #139811583191840:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=3179548805,tim=3200339155740
STAT #139811583191840 id=1 cnt=1 pid=0 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811583191840 id=2 cnt=1 pid=1 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583191840 id=3 cnt=1 pid=2 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583191840 id=4 cnt=1 pid=1 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=111 card=1)'
CLOSE #139811583191840:c=0,e=0,dep=1,type=3,tim=3200339155740
=====================
PARSING IN CURSOR #139811583188360 len=118 dep=1 uid=0 oct=3 lid=0 tim=3200339155740 hv=2598543592 ad='81623038' sqlid='8xp6fvkdf5878'
SELECT /*+ index(t) OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.PROPERTY FROM SYS.TAB$ T WHERE T.OBJ# = :B1 
END OF STMT
PARSE #139811583188360:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2970138452,tim=3200339155740
BINDS #139811583188360:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc04c10 bln=22 avl=04 flg=05
 value=93045
EXEC #139811583188360:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2970138452,tim=3200339155740
FETCH #139811583188360:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=2970138452,tim=3200339156739
STAT #139811583188360 id=1 cnt=1 pid=0 pos=1 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=12 card=1)'
STAT #139811583188360 id=2 cnt=1 pid=1 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
CLOSE #139811583188360:c=0,e=0,dep=1,type=3,tim=3200339156739
=====================
PARSING IN CURSOR #139811583182552 len=283 dep=1 uid=0 oct=3 lid=0 tim=3200339156739 hv=3139613807 ad='817c9890' sqlid='2wd0su2xk5d3g'
SELECT /*+ first_rows(1) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ '"'||OI.NAME||'"' FROM SYS.USER$ U, SYS.OBJ$ OT, SYS.IND$ I, SYS.OBJ$ OI WHERE U.NAME = :B2 AND OT.OWNER# = U.USER# AND OT.NAME = :B1 AND I.BO# = OT.OBJ# AND I.TYPE# = 4 AND I.OBJ# = OI.OBJ#
END OF STMT
PARSE #139811583182552:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=220572989,tim=3200339156739
BINDS #139811583182552:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc036f8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc03778 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811583182552:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=220572989,tim=3200339156739
FETCH #139811583182552:c=0,e=0,p=0,cr=10,cu=0,mis=0,r=0,dep=1,og=2,plh=220572989,tim=3200339156739
STAT #139811583182552 id=1 cnt=0 pid=0 pos=1 obj=0 op='HASH JOIN (cr=10 pr=0 pw=0 str=1 time=0 us cost=6 size=114 card=1)'
STAT #139811583182552 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=10 pr=0 pw=0 str=1 time=0 us cost=6 size=114 card=1)'
STAT #139811583182552 id=3 cnt=0 pid=2 pos=1 obj=0 op='NESTED LOOPS (cr=10 pr=0 pw=0 str=1 time=0 us cost=6 size=114 card=1)'
STAT #139811583182552 id=4 cnt=0 pid=3 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=10 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583182552 id=5 cnt=0 pid=4 pos=1 obj=0 op='HASH JOIN (cr=10 pr=0 pw=0 str=1 time=0 us cost=4 size=74 card=1)'
STAT #139811583182552 id=6 cnt=0 pid=5 pos=1 obj=0 op='NESTED LOOPS (cr=10 pr=0 pw=0 str=1 time=0 us cost=4 size=74 card=1)'
STAT #139811583182552 id=7 cnt=2 pid=6 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583182552 id=8 cnt=2 pid=7 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=61 card=1)'
STAT #139811583182552 id=9 cnt=1 pid=8 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583182552 id=10 cnt=1 pid=9 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583182552 id=11 cnt=2 pid=8 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=43 card=1)'
STAT #139811583182552 id=12 cnt=0 pid=6 pos=2 obj=19 op='TABLE ACCESS CLUSTER IND$ (cr=5 pr=0 pw=0 str=2 time=0 us cost=1 size=13 card=1)'
STAT #139811583182552 id=13 cnt=1 pid=12 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=4 pr=0 pw=0 str=2 time=0 us cost=0 size=0 card=1)'
STAT #139811583182552 id=14 cnt=0 pid=5 pos=2 obj=19 op='TABLE ACCESS BY INDEX ROWID BATCHED IND$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=13 card=1)'
STAT #139811583182552 id=15 cnt=0 pid=14 pos=1 obj=41 op='INDEX FULL SCAN I_IND1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811583182552 id=16 cnt=0 pid=3 pos=2 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811583182552 id=17 cnt=0 pid=2 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=40 card=1)'
STAT #139811583182552 id=18 cnt=0 pid=1 pos=2 obj=40 op='INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=40 card=1)'
CLOSE #139811583182552:c=0,e=0,dep=1,type=3,tim=3200339157739
=====================
PARSING IN CURSOR #139811592690400 len=326 dep=1 uid=0 oct=2 lid=0 tim=3200339158739 hv=1114445463 ad='7f1f72d0' sqlid='1fm07xd16u5nr'
insert /* QOSH:REC_STS */ into sys.wri$_optstat_opr_tasks (op_id, job_name, status, start_time, end_time, target, target_type, target_size, estimated_cost, batching_coeff, actions, priority, notes, flags, target_objn) values (:1,:2,:3,:4,:5,:6,:7, :8,:9,:10,:11,:12,:13,:14,:15)
END OF STMT
PARSE #139811592690400:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339158739
BINDS #139811592690400:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfcb980 bln=22 avl=03 flg=05
 value=7327
 Bind#1
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=56 off=0
 kxsbbbfp=7f286bfcb930 bln=22 avl=02 flg=05
 value=1
 Bind#3
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfcb948 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.25.991146000 PM -05:00
 Bind#4
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=40
 kxsbbbfp=7f286bfcb958 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.25.991146000 PM -05:00
 Bind#5
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286be24a8c bln=32 avl=06 flg=09
 value="U.ORDS"
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=112 off=0
 kxsbbbfp=7f286bfcb8a8 bln=22 avl=02 flg=05
 value=1
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfcb8c0 bln=22 avl=01 flg=01
 value=0
 Bind#8
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfcb8d8 bln=08 avl=08 flg=01
 value=-1.0E+000D
 Bind#9
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=56
 kxsbbbfp=7f286bfcb8e0 bln=08 avl=08 flg=01
 value=0D
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=64
 kxsbbbfp=7f286bfcb8e8 bln=22 avl=01 flg=01
 value=0
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286bfcb900 bln=22 avl=02 flg=01
 value=1
 Bind#12
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bfcb860 bln=22 avl=01 flg=05
 value=0
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfcb878 bln=22 avl=04 flg=01
 value=93045
EXEC #139811592690400:c=1000,e=1000,p=0,cr=1,cu=13,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339159739
STAT #139811592690400 id=1 cnt=0 pid=0 pos=1 obj=0 op='LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_OPR_TASKS (cr=1 pr=0 pw=0 str=1 time=0 us)'
CLOSE #139811592690400:c=0,e=0,dep=1,type=1,tim=3200339159739
=====================
PARSING IN CURSOR #139811583170840 len=137 dep=1 uid=0 oct=3 lid=0 tim=3200339159739 hv=633900807 ad='8161b278' sqlid='d7bgf84kwj3s7'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ P.VALCHAR FROM SYS.OPTSTAT_USER_PREFS$ P WHERE P.OBJ#=:B2 AND P.PNAME=:B1 
END OF STMT
PARSE #139811583170840:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339159739
BINDS #139811583170840:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=152 off=0
 kxsbbbfp=7f286bc03760 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=128(80) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286bc03778 bln=128 avl=20 flg=01
 value="AUTO_STAT_EXTENSIONS"
EXEC #139811583170840:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339160739
FETCH #139811583170840:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339160739
STAT #139811583170840 id=1 cnt=0 pid=0 pos=1 obj=680 op='TABLE ACCESS BY INDEX ROWID OPTSTAT_USER_PREFS$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=42 card=1)'
STAT #139811583170840 id=2 cnt=0 pid=1 pos=1 obj=681 op='INDEX UNIQUE SCAN I_USER_PREFS$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
CLOSE #139811583170840:c=0,e=0,dep=1,type=3,tim=3200339160739
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(80) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc00f18 bln=128 avl=20 flg=05
 value="AUTO_STAT_EXTENSIONS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339160739
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339160739
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339160739
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339160739
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339161739
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339161739
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc00f18 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339161739
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339161739
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339161739
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=11 flg=01
 value="INCREMENTAL"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339161739
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339161739
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339161739
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc00f18 bln=128 avl=11 flg=05
 value="INCREMENTAL"
EXEC #139811585569480:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339162739
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339162739
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339162739
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339162739
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339162739
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339162739
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc00f18 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339162739
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339162739
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339162739
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=11 flg=01
 value="INCREMENTAL"
EXEC #139811585036504:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339163739
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339163739
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339163739
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc00f18 bln=128 avl=11 flg=05
 value="INCREMENTAL"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339163739
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339163739
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339163739
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339163739
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339163739
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339163739
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc00f18 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339164738
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339164738
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339164738
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc036f8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc03778 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339164738
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339164738
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339164738
=====================
PARSING IN CURSOR #139811583177384 len=2310 dep=1 uid=0 oct=3 lid=0 tim=3200339164738 hv=2196955415 ad='817d0cb8' sqlid='5j3ram21g5s8r'
SELECT /*+ ordered use_nl(o c cu h) index(u i_user1) index(o i_obj2)
 index(ci_obj#) index(cu i_col_usage$)
 index(h i_hh_obj#_intcol#) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ C.NAME COL_NAME, C.TYPE# COL_TYPE, C.CHARSETFORM COL_CSF, CASE WHEN C.DEFLENGTH <= 32767 THEN C.DEFAULT$ ELSE NULL END COL_DEF, C.NULL$ COL_NULL, C.PROPERTY COL_PROP, C.COL# COL_UNUM, C.INTCOL# COL_INUM, C.OBJ# COL_OBJ, C.SCALE COL_SCALE, CASE WHEN NVL(H.DISTCNT,0) = 0 OR H.ROW_CNT = 0 THEN -4 WHEN EXISTS(SELECT 1 FROM SYS.HISTGRM$ HG WHERE T.OBJ# = HG.OBJ# AND H.INTCOL# = HG.INTCOL# AND HG.EP_REPEAT_COUNT > 0 AND ROWNUM < 2) THEN H.ROW_CNT WHEN BITAND(H.SPARE2, 64) > 0 THEN H.ROW_CNT WHEN (BITAND(H.SPARE2, 32) > 0 OR H.BUCKET_CNT > 2049 OR (H.BUCKET_CNT >= H.DISTCNT AND H.DENSITY*H.BUCKET_CNT < 1)) THEN H.ROW_CNT ELSE H.BUCKET_CNT END H_BCNT, (T.ROWCNT-H.NULL_CNT)/GREATEST(H.DISTCNT,1) H_PFREQ, C.LENGTH COL_LEN, CU.TIMESTAMP CU_TIME, CU.EQUALITY_PREDS CU_EP, CU.EQUIJOIN_PREDS CU_EJP, CU.RANGE_PREDS CU_RP, CU.LIKE_PREDS CU_LP, CU.NONEQUIJOIN_PREDS CU_NEJP, CU.NULL_PREDS CU_NP FROM SYS.USER$ U, SYS.OBJ$ O, SYS.TAB$ T, SYS.COL$ C, SYS.COL_USAGE$ CU, SYS.HIST_HEAD$ H WHERE :B3 = '0' AND U.NAME = :B2 AND O.OWNER# = U.USER# AND O.TYPE# = 2 AND O.NAME = :B1 AND O.OBJ# = T.OBJ# AND O.OBJ# = C.OBJ# AND C.OBJ# = CU.OBJ#(+) AND C.INTCOL# = CU.INTCOL#(+) AND C.OBJ# = H.OBJ#(+) AND C.INTCOL# = H.INTCOL#(+) UNION ALL SELECT /*+ ordered use_nl(c) */ C.KQFCONAM COL_NAME, C.KQFCODTY COL_TYPE, DECODE(C.KQFCODTY, 1, 1, 0) COL_CSF, NULL COL_DEF, 0 COL_NULL, 0 COL_PROP, C.KQFCOCNO COL_UNUM, C.KQFCOCNO COL_INUM, O.KQFTAOBJ COL_OBJ, DECODE(C.KQFCODTY, 2, -127, 0) COL_SCALE, H.BUCKET_CNT H_BCNT, (ST.ROWCNT-NULL_CNT)/GREATEST(H.DISTCNT,1) H_PFREQ, DECODE(C.KQFCODTY, 2, 22, C.KQFCOSIZ) COL_LEN, CU.TIMESTAMP CU_TIME, CU.EQUALITY_PREDS CU_EP, CU.EQUIJOIN_PREDS CU_EJP, CU.RANGE_PREDS CU_RP, CU.LIKE_PREDS CU_LP, CU.NONEQUIJOIN_PREDS CU_NEJP, CU.NULL_PREDS CU_NP FROM SYS.X$KQFTA O, SYS.TAB_STATS$ ST, SYS.X$KQFCO C, SYS.COL_USAGE$ CU, SYS.HIST_HEAD$ H WHERE :B3 != '0' AND :B2 = 'SYS' AND O.KQFTANAM = :B1 AND O.KQFTAOBJ = ST.OBJ#(+) AND O.KQFTAOBJ = C.KQFCOTOB AND C.KQFCOTOB = CU.OBJ#(+) AND C.KQFCOCNO = CU.INTCOL#(+) AND C.KQFCOTOB = H.OBJ#(+) AND C.KQFCOCNO = H.INTCOL#(+)
END OF STMT
PARSE #139811583177384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2507555410,tim=3200339164738
WAIT #139811583177384: nam='PGA memory operation' ela= 1000 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339165738
BINDS #139811583177384:

Bind#0
 oacdty=01 mxl=32(02) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=576 off=0
 kxsbbbfp=7f286bc0bab0 bln=32 avl=01 flg=05
 value="0"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=32
 kxsbbbfp=7f286bc0bad0 bln=128 avl=01 flg=01
 value="U"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=160
 kxsbbbfp=7f286bc0bb50 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#3
 oacdty=01 mxl=32(02) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286bc0bbd0 bln=32 avl=01 flg=01
 value="0"
 Bind#4
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=320
 kxsbbbfp=7f286bc0bbf0 bln=128 avl=01 flg=01
 value="U"
 Bind#5
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=448
 kxsbbbfp=7f286bc0bc70 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811583177384:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2507555410,tim=3200339165738
WAIT #139811584786576: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339165738
WAIT #139811584786576: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339165738
FETCH #139811583177384:c=1000,e=1000,p=0,cr=24,cu=0,mis=0,r=3,dep=1,og=1,plh=2507555410,tim=3200339166738
STAT #139811583177384 id=1 cnt=3 pid=0 pos=1 obj=0 op='UNION-ALL (cr=24 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583177384 id=2 cnt=0 pid=1 pos=2 obj=0 op='COUNT STOPKEY (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811583177384 id=3 cnt=0 pid=2 pos=1 obj=66 op='TABLE ACCESS CLUSTER HISTGRM$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=11 card=1)'
STAT #139811583177384 id=4 cnt=0 pid=3 pos=1 obj=65 op='INDEX UNIQUE SCAN I_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811583177384 id=5 cnt=3 pid=1 pos=1 obj=0 op='FILTER (cr=24 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583177384 id=6 cnt=3 pid=5 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=24 pr=0 pw=0 str=1 time=0 us cost=8 size=184 card=1)'
STAT #139811583177384 id=7 cnt=3 pid=6 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=18 pr=0 pw=0 str=1 time=0 us cost=6 size=154 card=1)'
STAT #139811583177384 id=8 cnt=3 pid=7 pos=1 obj=0 op='NESTED LOOPS (cr=11 pr=0 pw=0 str=1 time=0 us cost=5 size=121 card=1)'
STAT #139811583177384 id=9 cnt=1 pid=8 pos=1 obj=0 op='HASH JOIN (cr=8 pr=0 pw=0 str=1 time=0 us cost=4 size=73 card=1)'
STAT #139811583177384 id=10 cnt=1 pid=9 pos=1 obj=0 op='NESTED LOOPS (cr=8 pr=0 pw=0 str=1 time=0 us cost=4 size=73 card=1)'
STAT #139811583177384 id=11 cnt=1 pid=10 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583177384 id=12 cnt=1 pid=11 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=65 card=1)'
STAT #139811583177384 id=13 cnt=1 pid=12 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583177384 id=14 cnt=1 pid=13 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583177384 id=15 cnt=1 pid=12 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=47 card=1)'
STAT #139811583177384 id=16 cnt=1 pid=10 pos=2 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=1 size=8 card=1)'
STAT #139811583177384 id=17 cnt=1 pid=16 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583177384 id=18 cnt=0 pid=9 pos=2 obj=4 op='TABLE ACCESS FULL TAB$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=8 card=1)'
STAT #139811583177384 id=19 cnt=3 pid=8 pos=2 obj=21 op='TABLE ACCESS CLUSTER COL$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=1 size=576 card=12)'
STAT #139811583177384 id=20 cnt=1 pid=19 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583177384 id=21 cnt=2 pid=7 pos=2 obj=654 op='TABLE ACCESS BY INDEX ROWID COL_USAGE$ (cr=7 pr=0 pw=0 str=3 time=0 us cost=1 size=33 card=1)'
STAT #139811583177384 id=22 cnt=2 pid=21 pos=1 obj=655 op='INDEX UNIQUE SCAN I_COL_USAGE$ (cr=5 pr=0 pw=0 str=3 time=0 us cost=0 size=0 card=1)'
STAT #139811583177384 id=23 cnt=3 pid=6 pos=2 obj=68 op='TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=6 pr=0 pw=0 str=3 time=0 us cost=2 size=30 card=1)'
STAT #139811583177384 id=24 cnt=3 pid=23 pos=1 obj=70 op='INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=5 pr=0 pw=0 str=3 time=0 us cost=1 size=0 card=1)'
STAT #139811583177384 id=25 cnt=0 pid=1 pos=3 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583177384 id=26 cnt=0 pid=25 pos=1 obj=0 op='HASH JOIN OUTER (cr=0 pr=0 pw=0 str=0 time=0 us cost=40 size=1904 card=17)'
STAT #139811583177384 id=27 cnt=0 pid=26 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=0 pr=0 pw=0 str=0 time=0 us cost=40 size=1904 card=17)'
STAT #139811583177384 id=28 cnt=0 pid=27 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811583177384 id=29 cnt=0 pid=28 pos=1 obj=0 op='HASH JOIN OUTER (cr=0 pr=0 pw=0 str=0 time=0 us cost=6 size=1581 card=17)'
STAT #139811583177384 id=30 cnt=0 pid=29 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=0 pr=0 pw=0 str=0 time=0 us cost=6 size=1581 card=17)'
STAT #139811583177384 id=31 cnt=0 pid=30 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811583177384 id=32 cnt=0 pid=31 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=3 size=1020 card=17)'
STAT #139811583177384 id=33 cnt=0 pid=32 pos=1 obj=0 op='HASH JOIN OUTER (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=30 card=1)'
STAT #139811583177384 id=34 cnt=0 pid=33 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=30 card=1)'
STAT #139811583177384 id=35 cnt=0 pid=34 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811583177384 id=36 cnt=0 pid=35 pos=1 obj=0 op='FIXED TABLE FULL X$KQFTA (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=20 card=1)'
STAT #139811583177384 id=37 cnt=0 pid=34 pos=2 obj=73 op='TABLE ACCESS BY INDEX ROWID TAB_STATS$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811583177384 id=38 cnt=0 pid=37 pos=1 obj=74 op='INDEX UNIQUE SCAN I_TAB_STATS$_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811583177384 id=39 cnt=0 pid=33 pos=2 obj=73 op='TABLE ACCESS FULL TAB_STATS$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811583177384 id=40 cnt=0 pid=32 pos=2 obj=0 op='FIXED TABLE FULL X$KQFCO (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=510 card=17)'
STAT #139811583177384 id=41 cnt=0 pid=30 pos=2 obj=654 op='TABLE ACCESS BY INDEX ROWID COL_USAGE$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=33 card=1)'
STAT #139811583177384 id=42 cnt=0 pid=41 pos=1 obj=655 op='INDEX UNIQUE SCAN I_COL_USAGE$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811583177384 id=43 cnt=0 pid=29 pos=2 obj=654 op='TABLE ACCESS FULL COL_USAGE$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=33 card=1)'
STAT #139811583177384 id=44 cnt=0 pid=27 pos=2 obj=68 op='TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=19 card=1)'
STAT #139811583177384 id=45 cnt=0 pid=44 pos=1 obj=70 op='INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811583177384 id=46 cnt=0 pid=26 pos=2 obj=68 op='TABLE ACCESS FULL HIST_HEAD$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=19 card=1)'
CLOSE #139811583177384:c=0,e=0,dep=1,type=3,tim=3200339168738
=====================
PARSING IN CURSOR #139811583211424 len=733 dep=1 uid=0 oct=3 lid=0 tim=3200339168738 hv=4106042001 ad='817d0788' sqlid='7azxftvubufnj'
SELECT COUNT(UNQ) UNQ, COUNT(PFX) PFX FROM (SELECT /*+ first_rows(1) leading(cc) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ CD.TYPE# UNQ, NULL PFX FROM SYS.CCOL$ CC, SYS.CDEF$ CD WHERE CC.OBJ# = :B2 AND CC.INTCOL# = :B1 AND CD.CON# = CC.CON# AND CD.OBJ# = CC.OBJ# AND CD.ENABLED IS NOT NULL AND CD.INTCOLS = 1 AND CD.TYPE# IN (2,3) AND BITAND(CD.DEFER, 2+4) = 4 AND ROWNUM < 2 UNION ALL SELECT /*+ first_rows(1) leading(i) */ CASE WHEN I.INTCOLS = 1 AND BITAND(I.PROPERTY,1) = 1 THEN 3 ELSE NULL END UNQ, CASE WHEN IC.POS# = 1 THEN 1 ELSE NULL END PFX FROM SYS.IND$ I, SYS.ICOL$ IC WHERE I.BO# = :B2 AND I.BO# = IC.BO# AND IC.INTCOL# = :B1 AND I.OBJ# = IC.OBJ# AND BITAND(I.FLAGS,1025) = 0 AND ROWNUM < 2 )
END OF STMT
PARSE #139811583211424:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=2456673777,tim=3200339168738
BINDS #139811583211424:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bc00f38 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc00f50 bln=22 avl=02 flg=01
 value=1
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bc00f68 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bc00f80 bln=22 avl=02 flg=01
 value=1
EXEC #139811583211424:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=2456673777,tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339169738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339170738
WAIT #139811583211424: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339170738
FETCH #139811583211424:c=1000,e=1000,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=2,plh=2456673777,tim=3200339170738
STAT #139811583211424 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=13 pr=0 pw=0 str=1 time=1000 us)'
STAT #139811583211424 id=2 cnt=2 pid=1 pos=1 obj=0 op='VIEW (cr=13 pr=0 pw=0 str=1 time=1000 us cost=7 size=32 card=2)'
STAT #139811583211424 id=3 cnt=2 pid=2 pos=1 obj=0 op='UNION-ALL (cr=13 pr=0 pw=0 str=1 time=1000 us)'
STAT #139811583211424 id=4 cnt=1 pid=3 pos=1 obj=0 op='COUNT STOPKEY (cr=7 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583211424 id=5 cnt=1 pid=4 pos=1 obj=0 op='HASH JOIN (cr=7 pr=0 pw=0 str=1 time=0 us cost=3 size=35 card=1)'
STAT #139811583211424 id=6 cnt=1 pid=5 pos=1 obj=0 op='NESTED LOOPS (cr=7 pr=0 pw=0 str=1 time=0 us cost=3 size=35 card=1)'
STAT #139811583211424 id=7 cnt=2 pid=6 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583211424 id=8 cnt=2 pid=7 pos=1 obj=32 op='TABLE ACCESS CLUSTER CCOL$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=13 card=1)'
STAT #139811583211424 id=9 cnt=1 pid=8 pos=1 obj=30 op='INDEX UNIQUE SCAN I_COBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811583211424 id=10 cnt=1 pid=6 pos=2 obj=31 op='TABLE ACCESS CLUSTER CDEF$ (cr=4 pr=0 pw=0 str=2 time=0 us cost=1 size=22 card=1)'
STAT #139811583211424 id=11 cnt=0 pid=5 pos=2 obj=31 op='TABLE ACCESS CLUSTER CDEF$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=22 card=1)'
STAT #139811583211424 id=12 cnt=0 pid=11 pos=1 obj=30 op='INDEX UNIQUE SCAN I_COBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811583211424 id=13 cnt=1 pid=3 pos=2 obj=0 op='COUNT STOPKEY (cr=6 pr=0 pw=0 str=1 time=1000 us)'
STAT #139811583211424 id=14 cnt=1 pid=13 pos=1 obj=0 op='HASH JOIN (cr=6 pr=0 pw=0 str=1 time=1000 us cost=4 size=38 card=1)'
STAT #139811583211424 id=15 cnt=3 pid=14 pos=1 obj=0 op='NESTED LOOPS (cr=3 pr=0 pw=0 str=1 time=0 us cost=4 size=38 card=1)'
STAT #139811583211424 id=16 cnt=3 pid=15 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583211424 id=17 cnt=3 pid=16 pos=1 obj=19 op='TABLE ACCESS CLUSTER IND$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=63 card=3)'
STAT #139811583211424 id=18 cnt=1 pid=17 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811583211424 id=19 cnt=0 pid=15 pos=2 obj=20 op='TABLE ACCESS CLUSTER ICOL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=17 card=1)'
STAT #139811583211424 id=20 cnt=0 pid=19 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811583211424 id=21 cnt=1 pid=14 pos=2 obj=20 op='TABLE ACCESS CLUSTER ICOL$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=17 card=1)'
STAT #139811583211424 id=22 cnt=1 pid=21 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
CLOSE #139811583211424:c=0,e=0,dep=1,type=3,tim=3200339171738
BINDS #139811583211424:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bc35780 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc35798 bln=22 avl=02 flg=01
 value=2
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bc357b0 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bc357c8 bln=22 avl=02 flg=01
 value=2
EXEC #139811583211424:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=2456673777,tim=3200339171738
FETCH #139811583211424:c=0,e=0,p=0,cr=11,cu=0,mis=0,r=1,dep=1,og=2,plh=2456673777,tim=3200339172738
CLOSE #139811583211424:c=0,e=0,dep=1,type=3,tim=3200339172738
BINDS #139811583211424:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bc35780 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc35798 bln=22 avl=02 flg=01
 value=3
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bc357b0 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bc357c8 bln=22 avl=02 flg=01
 value=3
EXEC #139811583211424:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=2456673777,tim=3200339172738
FETCH #139811583211424:c=1000,e=999,p=0,cr=11,cu=0,mis=0,r=1,dep=1,og=2,plh=2456673777,tim=3200339173737
CLOSE #139811583211424:c=0,e=0,dep=1,type=3,tim=3200339173737
BINDS #139811583177384:

Bind#0
 oacdty=01 mxl=32(02) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=576 off=0
 kxsbbbfp=7f286bc355a0 bln=32 avl=01 flg=05
 value="0"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=32
 kxsbbbfp=7f286bc355c0 bln=128 avl=01 flg=01
 value="U"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=160
 kxsbbbfp=7f286bc35640 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#3
 oacdty=01 mxl=32(02) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286bc356c0 bln=32 avl=01 flg=01
 value="0"
 Bind#4
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=320
 kxsbbbfp=7f286bc356e0 bln=128 avl=01 flg=01
 value="U"
 Bind#5
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=448
 kxsbbbfp=7f286bc35760 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811583177384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2507555410,tim=3200339173737
FETCH #139811583177384:c=999,e=1000,p=0,cr=24,cu=0,mis=0,r=3,dep=1,og=1,plh=2507555410,tim=3200339174737
CLOSE #139811583177384:c=0,e=0,dep=1,type=3,tim=3200339174737
BINDS #139811583211424:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bc35780 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc35798 bln=22 avl=02 flg=01
 value=1
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bc357b0 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bc357c8 bln=22 avl=02 flg=01
 value=1
EXEC #139811583211424:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=2456673777,tim=3200339174737
FETCH #139811583211424:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=2,plh=2456673777,tim=3200339174737
CLOSE #139811583211424:c=0,e=0,dep=1,type=3,tim=3200339175737
BINDS #139811583211424:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bc35780 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc35798 bln=22 avl=02 flg=01
 value=2
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bc357b0 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bc357c8 bln=22 avl=02 flg=01
 value=2
EXEC #139811583211424:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=2456673777,tim=3200339175737
FETCH #139811583211424:c=0,e=0,p=0,cr=11,cu=0,mis=0,r=1,dep=1,og=2,plh=2456673777,tim=3200339175737
CLOSE #139811583211424:c=0,e=0,dep=1,type=3,tim=3200339175737
BINDS #139811583211424:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bc35780 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc35798 bln=22 avl=02 flg=01
 value=3
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bc357b0 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bc357c8 bln=22 avl=02 flg=01
 value=3
EXEC #139811583211424:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=2,plh=2456673777,tim=3200339176737
FETCH #139811583211424:c=0,e=0,p=0,cr=11,cu=0,mis=0,r=1,dep=1,og=2,plh=2456673777,tim=3200339176737
CLOSE #139811583211424:c=0,e=0,dep=1,type=3,tim=3200339176737
=====================
PARSING IN CURSOR #139811583407544 len=89 dep=1 uid=0 oct=3 lid=0 tim=3200339176737 hv=3322197194 ad='7f1b3648' sqlid='62yyzw3309d6a'
SELECT VALUE FROM V$SESSION_FIX_CONTROL WHERE BUGNO = :B1 AND SESSION_ID = USERENV('SID')
END OF STMT
PARSE #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339176737
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc3b170 bln=22 avl=04 flg=05
 value=6163600
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339177737
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339177737
STAT #139811583407544 id=1 cnt=1 pid=0 pos=1 obj=0 op='FIXED TABLE FIXED INDEX X$QKSBGSES (ind:1) (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=15 card=1)'
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339177737
BINDS #139811583191840:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=320 off=0
 kxsbbbfp=7f286bc53e90 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc53f10 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc53f90 bln=32 avl=00 flg=01
 Bind#3
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286bc53fb0 bln=32 avl=00 flg=01
EXEC #139811583191840:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3179548805,tim=3200339177737
FETCH #139811583191840:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=3179548805,tim=3200339177737
CLOSE #139811583191840:c=0,e=0,dep=1,type=3,tim=3200339177737
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc3b170 bln=22 avl=05 flg=05
 value=16470836
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339177737
FETCH #139811583407544:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339178737
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339178737
=====================
PARSING IN CURSOR #139811586987912 len=67 dep=1 uid=0 oct=3 lid=0 tim=3200339178737 hv=3531072052 ad='637bc8b0' sqlid='cpktjtz97gsjn'
select /* KSXM:FLUSH DML_MON */ type# from obj$ where obj# = :pobjn
END OF STMT
PARSE #139811586987912:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1978163079,tim=3200339178737
BINDS #139811586987912:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc53fb8 bln=22 avl=04 flg=05
 value=93045
EXEC #139811586987912:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1978163079,tim=3200339178737
FETCH #139811586987912:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=1,dep=1,og=1,plh=1978163079,tim=3200339178737
STAT #139811586987912 id=1 cnt=1 pid=0 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=9 card=1)'
CLOSE #139811586987912:c=0,e=0,dep=1,type=1,tim=3200339178737
=====================
PARSING IN CURSOR #139811586986344 len=2672 dep=1 uid=0 oct=3 lid=0 tim=3200339178737 hv=939963002 ad='7398ede8' sqlid='fc054jsw0dcmu'
select /* KSXM:FLUSH DML_MON */ obj# from ( select obj#, 2 type from tab$ where obj# = :pobjn and :type = 2 /*A*/ union all select obj#, 19 type from tabpart$ where obj# = :pobjn and :type = 19 /*B*/ union all select bo#, 2 type from tabpart$ where obj# = :pobjn and :type = 19 /*C*/ union all select obj#, 19 type from tabpart$ where bo# = :pobjn and :type = 2 /*D*/ union all select obj#, 34 type from tabsubpart$ /*E*/ where obj# = :pobjn and :type = 34 union all select pobj#, 19 type from tabsubpart$ /*F*/ where obj# = :pobjn and :type = 34 union all select /*+ leading(tsp) use_nl(tcp) index(tsp) index(tcp) */ /*G*/ tcp.bo#, 2 type from tabsubpart$ tsp, tabcompart$ tcp where tsp.pobj# = tcp.obj# and tsp.obj# = :pobjn and :type = 34 union all select obj#, 19 type from tabcompart$ /*H*/ where obj# = :pobjn and :type = 19 union all select obj#, 34 type from tabsubpart$ /*I*/ where pobj# = :pobjn and :type = 19 union all select bo#, 2 type from tabcompart$ where obj# = :pobjn and :type = 19 /*J*/ union all select /*+ leading(tcp) use_nl(tsp) index(tsp) index(tcp) */ /*K*/ tsp.obj#, 34 type from tabsubpart$ tsp, tabcompart$ tcp where tsp.pobj# = tcp.obj# and tcp.bo# = :pobjn and :type = 2 union all select obj#, 19 type from tabcompart$ where bo# = :pobjn and :type = 2 /*L*/ ) order by type desc
END OF STMT
PARSE #139811586986344:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1945975270,tim=3200339178737
BINDS #139811586986344:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bc52298 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc522b0 bln=22 avl=02 flg=01
 value=2
 Bind#2
 No oacdef for this bind.
 Bind#3
 No oacdef for this bind.
 Bind#4
 No oacdef for this bind.
 Bind#5
 No oacdef for this bind.
 Bind#6
 No oacdef for this bind.
 Bind#7
 No oacdef for this bind.
 Bind#8
 No oacdef for this bind.
 Bind#9
 No oacdef for this bind.
 Bind#10
 No oacdef for this bind.
 Bind#11
 No oacdef for this bind.
 Bind#12
 No oacdef for this bind.
 Bind#13
 No oacdef for this bind.
 Bind#14
 No oacdef for this bind.
 Bind#15
 No oacdef for this bind.
 Bind#16
 No oacdef for this bind.
 Bind#17
 No oacdef for this bind.
 Bind#18
 No oacdef for this bind.
 Bind#19
 No oacdef for this bind.
 Bind#20
 No oacdef for this bind.
 Bind#21
 No oacdef for this bind.
 Bind#22
 No oacdef for this bind.
 Bind#23
 No oacdef for this bind.
EXEC #139811586986344:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1945975270,tim=3200339179737
FETCH #139811586986344:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=1,dep=1,og=1,plh=1945975270,tim=3200339179737
FETCH #139811586986344:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1945975270,tim=3200339179737
STAT #139811586986344 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT ORDER BY (cr=9 pr=0 pw=0 str=1 time=0 us cost=23 size=576 card=36)'
STAT #139811586986344 id=2 cnt=1 pid=1 pos=1 obj=0 op='VIEW (cr=9 pr=0 pw=0 str=1 time=0 us cost=22 size=576 card=36)'
STAT #139811586986344 id=3 cnt=1 pid=2 pos=1 obj=0 op='UNION-ALL (cr=9 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=4 cnt=1 pid=3 pos=1 obj=0 op='FILTER (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=5 cnt=1 pid=4 pos=1 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=5 card=1)'
STAT #139811586986344 id=6 cnt=1 pid=5 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811586986344 id=7 cnt=0 pid=3 pos=2 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=8 cnt=0 pid=7 pos=1 obj=799 op='INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=5 card=1)'
STAT #139811586986344 id=9 cnt=0 pid=3 pos=3 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=10 cnt=0 pid=9 pos=1 obj=795 op='TABLE ACCESS BY INDEX ROWID TABPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=10 card=1)'
STAT #139811586986344 id=11 cnt=0 pid=10 pos=1 obj=799 op='INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811586986344 id=12 cnt=0 pid=3 pos=4 obj=0 op='FILTER (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=13 cnt=0 pid=12 pos=1 obj=795 op='TABLE ACCESS BY INDEX ROWID BATCHED TABPART$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=5 size=50 card=5)'
STAT #139811586986344 id=14 cnt=0 pid=13 pos=1 obj=798 op='INDEX RANGE SCAN I_TABPART_BOPART$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=0 card=5)'
STAT #139811586986344 id=15 cnt=0 pid=3 pos=5 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=16 cnt=0 pid=15 pos=1 obj=811 op='INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=5 card=1)'
STAT #139811586986344 id=17 cnt=0 pid=3 pos=6 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=18 cnt=0 pid=17 pos=1 obj=807 op='TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811586986344 id=19 cnt=0 pid=18 pos=1 obj=811 op='INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811586986344 id=20 cnt=0 pid=3 pos=7 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=21 cnt=0 pid=20 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=20 card=1)'
STAT #139811586986344 id=22 cnt=0 pid=21 pos=1 obj=807 op='TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811586986344 id=23 cnt=0 pid=22 pos=1 obj=811 op='INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811586986344 id=24 cnt=0 pid=21 pos=2 obj=817 op='TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811586986344 id=25 cnt=0 pid=24 pos=1 obj=821 op='INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811586986344 id=26 cnt=0 pid=3 pos=8 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=27 cnt=0 pid=26 pos=1 obj=821 op='INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=5 card=1)'
STAT #139811586986344 id=28 cnt=0 pid=3 pos=9 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=29 cnt=0 pid=28 pos=1 obj=807 op='TABLE ACCESS FULL TABSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=110 card=11)'
STAT #139811586986344 id=30 cnt=0 pid=3 pos=10 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=31 cnt=0 pid=30 pos=1 obj=817 op='TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811586986344 id=32 cnt=0 pid=31 pos=1 obj=821 op='INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811586986344 id=33 cnt=0 pid=3 pos=11 obj=0 op='FILTER (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=34 cnt=0 pid=33 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=4 size=220 card=11)'
STAT #139811586986344 id=35 cnt=0 pid=34 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=4 size=220 card=11)'
STAT #139811586986344 id=36 cnt=0 pid=35 pos=1 obj=817 op='TABLE ACCESS BY INDEX ROWID BATCHED TABCOMPART$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=2 size=10 card=1)'
STAT #139811586986344 id=37 cnt=0 pid=36 pos=1 obj=820 op='INDEX RANGE SCAN I_TABCOMPART_BOPART$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811586986344 id=38 cnt=0 pid=35 pos=2 obj=810 op='INDEX RANGE SCAN I_TABSUBPART_POBJSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=11)'
STAT #139811586986344 id=39 cnt=0 pid=34 pos=2 obj=807 op='TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=110 card=11)'
STAT #139811586986344 id=40 cnt=0 pid=3 pos=12 obj=0 op='FILTER (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586986344 id=41 cnt=0 pid=40 pos=1 obj=817 op='TABLE ACCESS FULL TABCOMPART$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=10 card=1)'
CLOSE #139811586986344:c=0,e=0,dep=1,type=1,tim=3200339181736
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc52560 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc525e0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(104) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc52660 bln=128 avl=26 flg=01
 value="ENABLE_TOP_FREQ_HISTOGRAMS"
EXEC #139811585036504:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339182736
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339182736
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339182736
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(104) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc52660 bln=128 avl=26 flg=05
 value="ENABLE_TOP_FREQ_HISTOGRAMS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339182736
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339182736
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339182736
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc525e0 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc52660 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339182736
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339182736
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339182736
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc526c8 bln=22 avl=05 flg=05
 value=15998585
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339183736
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339183736
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339183736
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc526c8 bln=22 avl=05 flg=05
 value=15998585
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339183736
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339183736
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339183736
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc526c8 bln=22 avl=05 flg=05
 value=15998585
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339183736
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339183736
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339183736
=====================
PARSING IN CURSOR #139811583404400 len=131 dep=1 uid=0 oct=3 lid=0 tim=3200339183736 hv=2513223212 ad='815cd030' sqlid='4p9b90fawtgjc'
SELECT O.OBJ# FROM OBJ$ O, USER$ U WHERE O.OWNER# = U.USER# AND U.NAME = :B2 AND O.NAME = :B1 AND O.SUBNAME IS NULL AND O.TYPE# = 2
END OF STMT
PARSE #139811583404400:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3179548805,tim=3200339183736
BINDS #139811583404400:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bbcbaf0 bln=128 avl=01 flg=09
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bbcbba0 bln=128 avl=04 flg=09
 value="ORDS"
EXEC #139811583404400:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3179548805,tim=3200339184736
FETCH #139811583404400:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=3179548805,tim=3200339184736
STAT #139811583404400 id=1 cnt=1 pid=0 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=67 card=1)'
STAT #139811583404400 id=2 cnt=1 pid=1 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583404400 id=3 cnt=1 pid=2 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583404400 id=4 cnt=1 pid=1 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=49 card=1)'
CLOSE #139811583404400:c=0,e=0,dep=1,type=3,tim=3200339184736
BINDS #139811583170840:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=152 off=0
 kxsbbbfp=7f286bc52230 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=128(100) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286bc52248 bln=128 avl=25 flg=01
 value="APPROXIMATE_NDV_ALGORITHM"
EXEC #139811583170840:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339184736
FETCH #139811583170840:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339184736
CLOSE #139811583170840:c=0,e=0,dep=1,type=3,tim=3200339184736
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(100) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc53f50 bln=128 avl=25 flg=05
 value="APPROXIMATE_NDV_ALGORITHM"
EXEC #139811585569480:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339185736
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339185736
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339185736
=====================
PARSING IN CURSOR #139811583507072 len=1308 dep=1 uid=0 oct=3 lid=0 tim=3200339185736 hv=44248544 ad='817cf6f8' sqlid='cy0mgyw1a6bg0'
SELECT /*+ leading(u o) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ O.SUBNAME PART_NAME, O.OBJ# OBJ_NUM FROM SYS.USER$ U, SYS.OBJ$ O, SYS.TABPART$ TP, SYS.TABCOMPART$ TCP WHERE :B3 IS NULL AND U.NAME = :B2 AND O.OWNER# = U.USER# AND O.NAME = :B1 AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.TYPE# = 19 AND O.OBJ# = TP.OBJ#(+) AND O.OBJ# = TCP.OBJ#(+) UNION ALL SELECT * FROM ( SELECT /*+ leading(u o) */ O.SUBNAME PART_NAME, O.OBJ# OBJ_NUM FROM SYS.USER$ U, SYS.OBJ$ O WHERE U.NAME = :B2 AND O.OWNER# = U.USER# AND O.NAME = :B1 AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME = :B3 AND O.TYPE# = 19 UNION ALL SELECT /*+ leading(u osp tsp) */ OP.SUBNAME PART_NAME, OP.OBJ# OBJ_NUM FROM SYS.USER$ U, SYS.OBJ$ OSP, SYS.TABSUBPART$ TSP, SYS.OBJ$ OP WHERE U.NAME = :B2 AND OSP.OWNER# = U.USER# AND OSP.NAME = :B1 AND OSP.NAMESPACE = 1 AND OSP.REMOTEOWNER IS NULL AND OSP.LINKNAME IS NULL AND OSP.SUBNAME = :B3 AND OSP.TYPE# = 34 AND OSP.OBJ# = TSP.OBJ# AND OP.OBJ# = TSP.POBJ# ) WHERE ROWNUM < 2 UNION ALL SELECT NULL PART_NAME, NULL OBJ_NUM FROM SYS.USER$ U, SYS.OBJ$ O, SYS.TAB$ T WHERE :B4 = 'y' AND U.NAME = :B2 AND O.OWNER# = U.USER# AND O.NAME = :B1 AND O.TYPE# = 2 AND T.OBJ# = O.OBJ# AND BITAND(T.PROPERTY, 32) <> 32
END OF STMT
PARSE #139811583507072:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2710014632,tim=3200339185736
BINDS #139811583507072:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=1440 off=0
 kxsbbbfp=7f286bc51d28 bln=128 avl=00 flg=05
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc51da8 bln=128 avl=01 flg=01
 value="U"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc51e28 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#3
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=384
 kxsbbbfp=7f286bc51ea8 bln=128 avl=01 flg=01
 value="U"
 Bind#4
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=512
 kxsbbbfp=7f286bc51f28 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#5
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=640
 kxsbbbfp=7f286bc51fa8 bln=128 avl=00 flg=01
 Bind#6
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=768
 kxsbbbfp=7f286bc52028 bln=128 avl=01 flg=01
 value="U"
 Bind#7
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=896
 kxsbbbfp=7f286bc520a8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#8
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1024
 kxsbbbfp=7f286bc52128 bln=128 avl=00 flg=01
 Bind#9
 oacdty=01 mxl=32(04) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1152
 kxsbbbfp=7f286bc521a8 bln=32 avl=01 flg=01
 value="n"
 Bind#10
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1184
 kxsbbbfp=7f286bc521c8 bln=128 avl=01 flg=01
 value="U"
 Bind#11
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1312
 kxsbbbfp=7f286bc52248 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811583507072:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2710014632,tim=3200339186736
FETCH #139811583507072:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=0,dep=1,og=1,plh=2710014632,tim=3200339186736
STAT #139811583507072 id=1 cnt=0 pid=0 pos=1 obj=0 op='UNION-ALL (cr=9 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583507072 id=2 cnt=0 pid=1 pos=1 obj=0 op='FILTER (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583507072 id=3 cnt=0 pid=2 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811583507072 id=4 cnt=1 pid=3 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583507072 id=5 cnt=1 pid=4 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583507072 id=6 cnt=0 pid=3 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=111 card=1)'
STAT #139811583507072 id=7 cnt=0 pid=1 pos=2 obj=0 op='COUNT STOPKEY (cr=4 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583507072 id=8 cnt=0 pid=7 pos=1 obj=0 op='VIEW (cr=4 pr=0 pw=0 str=1 time=0 us cost=7 size=158 card=2)'
STAT #139811583507072 id=9 cnt=0 pid=8 pos=1 obj=0 op='UNION-ALL (cr=4 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583507072 id=10 cnt=0 pid=9 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=129 card=1)'
STAT #139811583507072 id=11 cnt=1 pid=10 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583507072 id=12 cnt=1 pid=11 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583507072 id=13 cnt=0 pid=10 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 str=1 time=0 us cost=1 size=111 card=1)'
STAT #139811583507072 id=14 cnt=0 pid=9 pos=2 obj=0 op='HASH JOIN (cr=2 pr=0 pw=0 str=1 time=0 us cost=5 size=146 card=1)'
STAT #139811583507072 id=15 cnt=0 pid=14 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=5 size=146 card=1)'
STAT #139811583507072 id=16 cnt=0 pid=15 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=5 size=146 card=1)'
STAT #139811583507072 id=17 cnt=0 pid=16 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583507072 id=18 cnt=0 pid=17 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=3 size=139 card=1)'
STAT #139811583507072 id=19 cnt=0 pid=18 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=129 card=1)'
STAT #139811583507072 id=20 cnt=1 pid=19 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583507072 id=21 cnt=1 pid=20 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583507072 id=22 cnt=0 pid=19 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 str=1 time=0 us cost=1 size=111 card=1)'
STAT #139811583507072 id=23 cnt=0 pid=18 pos=2 obj=807 op='TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811583507072 id=24 cnt=0 pid=23 pos=1 obj=811 op='INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811583507072 id=25 cnt=0 pid=16 pos=2 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811583507072 id=26 cnt=0 pid=15 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=7 card=1)'
STAT #139811583507072 id=27 cnt=0 pid=14 pos=2 obj=40 op='INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=7 card=1)'
STAT #139811583507072 id=28 cnt=0 pid=1 pos=3 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583507072 id=29 cnt=0 pid=28 pos=1 obj=0 op='HASH JOIN (cr=0 pr=0 pw=0 str=0 time=0 us cost=4 size=77 card=1)'
STAT #139811583507072 id=30 cnt=0 pid=29 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=4 size=77 card=1)'
STAT #139811583507072 id=31 cnt=0 pid=30 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811583507072 id=32 cnt=0 pid=31 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=3 size=65 card=1)'
STAT #139811583507072 id=33 cnt=0 pid=32 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
STAT #139811583507072 id=34 cnt=0 pid=33 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811583507072 id=35 cnt=0 pid=32 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=47 card=1)'
STAT #139811583507072 id=36 cnt=0 pid=30 pos=2 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=12 card=1)'
STAT #139811583507072 id=37 cnt=0 pid=36 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811583507072 id=38 cnt=0 pid=29 pos=2 obj=4 op='TABLE ACCESS FULL TAB$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=12 card=1)'
CLOSE #139811583507072:c=0,e=0,dep=1,type=3,tim=3200339188736
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc50c70 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc50cf0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc50d70 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339188736
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339188736
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339188736
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc52248 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339188736
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339188736
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339188736
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc50cf0 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc50d70 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=1000,e=999,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339189735
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339189735
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339189735
=====================
PARSING IN CURSOR #139811583494304 len=190 dep=1 uid=0 oct=3 lid=0 tim=3200339189735 hv=2480906203 ad='81622d08' sqlid='g9xgz7a9xz7yv'
SELECT /*+ use_nl(u,o,t) OPT_PARAM('_parallel_syspls_obey_force' 'false') */ NVL(T.DEGREE,1) FROM USER$ U,OBJ$ O,TAB$ T WHERE U.NAME=:B2 AND O.NAME=:B1 AND O.OBJ#=T.OBJ# AND U.USER#=O.OWNER#
END OF STMT
PARSE #139811583494304:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339189735
BINDS #139811583494304:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc521c8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc52248 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811583494304:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339189735
FETCH #139811583494304:c=0,e=0,p=0,cr=10,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339189735
STAT #139811583494304 id=1 cnt=1 pid=0 pos=1 obj=0 op='NESTED LOOPS (cr=10 pr=0 pw=0 str=1 time=0 us cost=4 size=68 card=1)'
STAT #139811583494304 id=2 cnt=2 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=61 card=1)'
STAT #139811583494304 id=3 cnt=1 pid=2 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583494304 id=4 cnt=1 pid=3 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583494304 id=5 cnt=2 pid=2 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=43 card=1)'
STAT #139811583494304 id=6 cnt=1 pid=1 pos=2 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=5 pr=0 pw=0 str=2 time=0 us cost=1 size=7 card=1)'
STAT #139811583494304 id=7 cnt=1 pid=6 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=4 pr=0 pw=0 str=2 time=0 us cost=0 size=0 card=1)'
CLOSE #139811583494304:c=0,e=0,dep=1,type=3,tim=3200339190735
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(96) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc4edc8 bln=128 avl=24 flg=05
 value="ENABLE_HYBRID_HISTOGRAMS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339190735
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339190735
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339190735
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc4ee30 bln=22 avl=04 flg=05
 value=6163600
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339190735
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339190735
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339190735
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc4ed48 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc4edc8 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339191735
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339191735
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339191735
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc4ee30 bln=22 avl=04 flg=05
 value=6163600
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339191735
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339191735
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339191735
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc4ecc8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc4ed48 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(104) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc4edc8 bln=128 avl=26 flg=01
 value="ENABLE_TOP_FREQ_HISTOGRAMS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339191735
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339191735
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339191735
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(104) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc4edc8 bln=128 avl=26 flg=05
 value="ENABLE_TOP_FREQ_HISTOGRAMS"
EXEC #139811585569480:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339192735
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339192735
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339192735
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc4ed48 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc4edc8 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339192735
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339192735
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339192735
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc4ee30 bln=22 avl=05 flg=05
 value=15998585
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339192735
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339192735
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339192735
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc4ee30 bln=22 avl=05 flg=05
 value=15998585
EXEC #139811583407544:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339193735
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339193735
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339193735
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc4ee30 bln=22 avl=05 flg=05
 value=15998585
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339193735
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339193735
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339193735
BINDS #139811583404400:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286be26ad8 bln=128 avl=01 flg=09
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286be26b88 bln=128 avl=04 flg=09
 value="ORDS"
EXEC #139811583404400:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3179548805,tim=3200339193735
FETCH #139811583404400:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=3179548805,tim=3200339193735
CLOSE #139811583404400:c=0,e=0,dep=1,type=3,tim=3200339193735
BINDS #139811583170840:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=152 off=0
 kxsbbbfp=7f286bc4edb0 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=128(100) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286bc4edc8 bln=128 avl=25 flg=01
 value="APPROXIMATE_NDV_ALGORITHM"
EXEC #139811583170840:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339193735
FETCH #139811583170840:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339193735
CLOSE #139811583170840:c=0,e=0,dep=1,type=3,tim=3200339194735
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(100) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc4edc8 bln=128 avl=25 flg=05
 value="APPROXIMATE_NDV_ALGORITHM"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339194735
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339194735
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339194735
LOBGETLEN: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339195735
LOBREAD: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339195735
LOBREAD: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339195735
WAIT #139811584786576: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339195735
=====================
PARSING IN CURSOR #139811583645352 len=47 dep=1 uid=0 oct=3 lid=0 tim=3200339196735 hv=1023521005 ad='84368860' sqlid='cb21bacyh3c7d'
select metadata from kopm$ where name='DB_FDO'
END OF STMT
PARSE #139811583645352:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,plh=3452538079,tim=3200339196735
EXEC #139811583645352:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,plh=3452538079,tim=3200339196735
FETCH #139811583645352:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=1,dep=1,og=4,plh=3452538079,tim=3200339196735
STAT #139811583645352 id=1 cnt=1 pid=0 pos=1 obj=773 op='TABLE ACCESS BY INDEX ROWID KOPM$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=108 card=1)'
STAT #139811583645352 id=2 cnt=1 pid=1 pos=1 obj=774 op='INDEX UNIQUE SCAN I_KOPM1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
CLOSE #139811583645352:c=0,e=0,dep=1,type=1,tim=3200339196735
WAIT #139811584786576: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339197734
LOBGETLEN: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339197734
LOBREAD: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339198734
LOBREAD: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339198734
LOBGETLEN: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339198734
LOBREAD: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339198734
LOBREAD: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339198734
LOBGETLEN: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339198734
LOBREAD: type=TEMPORARY LOB,bytes=679,c=0,e=0,p=0,cr=0,cu=0,tim=3200339198734
=====================
PARSING IN CURSOR #139811583625832 len=700 dep=1 uid=114 oct=3 lid=114 tim=3200339202734 hv=2665362355 ad='731f17b8' sqlid='9us3squgdwcxm'
/* SQL Analyze(0) */ select /*+ full(t) no_parallel(t) no_parallel_index(t) dbms_stats cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) no_monitoring xmlindex_sel_idx_tbl opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad */to_char(count("ORDID")),substrb(dump(min("ORDID"),16,0,64),1,240),substrb(dump(max("ORDID"),16,0,64),1,240),to_char(count("CATEGORYID")),substrb(dump(min("CATEGORYID"),16,0,64),1,240),substrb(dump(max("CATEGORYID"),16,0,64),1,240),to_char(count("STATUS")),substrb(dump(min("STATUS"),16,0,64),1,240),substrb(dump(max("STATUS"),16,0,64),1,240),count(rowidtochar(rowid)) from "U"."ORDS" t /* ACL,NIL,NIL,TOPN,NIL,NIL,TOPN,NIL,NIL,RWID,U254,U254,U254U*/
END OF STMT
PARSE #139811583625832:c=2999,e=3000,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=1,plh=2860568089,tim=3200339202734
EXEC #139811583625832:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2860568089,tim=3200339202734
WAIT #139811583625832: nam='PGA memory operation' ela= 0 p1=196608 p2=2 p3=0 obj#=-1 tim=3200339202734
WAIT #139811583625832: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339202734
WAIT #139811583625832: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339202734
WAIT #139811583625832: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339203734
WAIT #139811583625832: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339203734
WAIT #139811583625832: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339203734
FETCH #139811583625832:c=7999,e=8999,p=0,cr=38,cu=0,mis=0,r=1,dep=1,og=1,plh=2860568089,tim=3200339211733
WAIT #139811583625832: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339211733
WAIT #139811583625832: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339211733
STAT #139811583625832 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=38 pr=0 pw=0 str=1 time=8999 us)'
STAT #139811583625832 id=2 cnt=10000 pid=1 pos=1 obj=0 op='OPTIMIZER STATISTICS GATHERING (cr=38 pr=0 pw=0 str=1 time=127569 us cost=11 size=170000 card=10000)'
STAT #139811583625832 id=3 cnt=10000 pid=2 pos=1 obj=93045 op='TABLE ACCESS FULL ORDS (cr=38 pr=0 pw=0 str=1 time=0 us cost=11 size=170000 card=10000)'
CLOSE #139811583625832:c=0,e=0,dep=1,type=0,tim=3200339211733
BINDS #139811583191840:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=320 off=0
 kxsbbbfp=7f286bcfcb00 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bcfcb80 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bcfcc00 bln=32 avl=00 flg=01
 Bind#3
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286bcfcc20 bln=32 avl=00 flg=01
EXEC #139811583191840:c=1000,e=999,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3179548805,tim=3200339213732
FETCH #139811583191840:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=3179548805,tim=3200339213732
CLOSE #139811583191840:c=0,e=0,dep=1,type=3,tim=3200339213732
=====================
PARSING IN CURSOR #139811583613080 len=480 dep=1 uid=114 oct=3 lid=114 tim=3200339213732 hv=2234478098 ad='7f2628c0' sqlid='3qkhfbf2kyvhk'
SELECT POS+1 POS, VAL, NONNULLS, NDV, SPLIT, RSIZE, ROWCNT, TOPNCNT, TOPN, NULL MINFREQ, NULL MAXFREQ, NULL AVGFREQ, NULL STDDEVFREQ FROM XMLTABLE( '/process_result/select_list_item' PASSING :B1 COLUMNS POS NUMBER PATH 'pos', VAL VARCHAR2(240) PATH 'value', NONNULLS NUMBER PATH 'nonnulls', NDV NUMBER PATH 'ndv', SPLIT NUMBER PATH 'split', RSIZE NUMBER PATH 'rsize', ROWCNT NUMBER PATH 'rowcnt', TOPNCNT NUMBER PATH 'topncnt', TOPN CLOB PATH 'topn_values' ) ORDER BY TOPNCNT DESC
END OF STMT
PARSE #139811583613080:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1268306204,tim=3200339213732
BINDS #139811583613080:

Bind#0
 oacdty=58 mxl=648(648) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1206001 frm=00 csi=00 siz=648 off=0
toid ptr value=66736958 length=16
000000000000000000000000000201
 kxsbbbfp=7f286b999d78 bln=648 avl=16 flg=15
 value=Unhandled datatype (58) found in kxsbndinf
Dumping '' addr=0x7f286b999d78 size=16 bytes
Dump of memory from 0x7f286b999d78 to 0x7f286b999d88
7F286B999D70 156ABC40 00000000 [@.j.....]
7F286B999D80 6B999D88 00007F28 [...k(...] 
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=458752 p2=1 p3=0 obj#=-1 tim=3200339213732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=393216 p2=2 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=393216 p2=1 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339214732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=0 p2=0 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339215732
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339216732
WAIT #139811583613080: nam='acknowledge over PGA limit' ela= 10999 limit=3361734656 margin=0 growth=10502452 obj#=-1 tim=3200339227731
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339227731
WAIT #139811583613080: nam='acknowledge over PGA limit' ela= 10998 limit=3361734656 margin=0 growth=10633524 obj#=-1 tim=3200339238729
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=196608 p2=1 p3=0 obj#=-1 tim=3200339238729
WAIT #139811583613080: nam='acknowledge over PGA limit' ela= 10999 limit=3361734656 margin=0 growth=10830132 obj#=-1 tim=3200339249728
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339249728
WAIT #139811583613080: nam='acknowledge over PGA limit' ela= 10999 limit=3361734656 margin=0 growth=10961204 obj#=-1 tim=3200339260727
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=131072 p2=1 p3=0 obj#=-1 tim=3200339260727
EXEC #139811583613080:c=4000,e=46995,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1268306204,tim=3200339260727
WAIT #139811584786576: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339260727
WAIT #139811584786576: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339260727
WAIT #139811583613080: nam='acknowledge over PGA limit' ela= 10999 limit=3361734656 margin=0 growth=11223348 obj#=-1 tim=3200339272725
WAIT #139811583613080: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339272725
FETCH #139811583613080:c=1999,e=11998,p=0,cr=0,cu=0,mis=0,r=9,dep=1,og=1,plh=1268306204,tim=3200339272725
STAT #139811583613080 id=1 cnt=9 pid=0 pos=1 obj=0 op='SORT ORDER BY (cr=0 pr=0 pw=0 str=1 time=47994 us cost=30 size=147024 card=8168)'
STAT #139811583613080 id=2 cnt=9 pid=1 pos=1 obj=0 op='XMLTABLE EVALUATION (cr=0 pr=0 pw=0 str=1 time=54987 us)'
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(96) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc77308 bln=128 avl=24 flg=05
 value="ENABLE_HYBRID_HISTOGRAMS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339272725
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339272725
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339272725
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b7e8ea0 bln=22 avl=04 flg=05
 value=6163600
EXEC #139811583407544:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339273725
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339273725
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339273725
WAIT #139811579312232: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339275725
=====================
PARSING IN CURSOR #139811579312232 len=429 dep=1 uid=114 oct=3 lid=114 tim=3200339276725 hv=1679752330 ad='783e64d0' sqlid='0w726kjk1xz4a'
select /*+ no_parallel(t) no_parallel_index(t) dbms_stats cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) no_monitoring xmlindex_sel_idx_tbl opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad */ substrb(dump("STATUS",16,0,64),1,240) val, 
 rowidtochar(rowid) rwid from "U"."ORDS" t where rowid in (chartorowid('AAAWt1AAHAAAAFjAAA'),chartorowid('AAAWt1AAHAAAAGCAAv')) order by "STATUS"
END OF STMT
PARSE #139811579312232:c=3000,e=3000,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=1,plh=2723055243,tim=3200339276725
EXEC #139811579312232:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2723055243,tim=3200339276725
FETCH #139811579312232:c=1000,e=1000,p=0,cr=2,cu=0,mis=0,r=2,dep=1,og=1,plh=2723055243,tim=3200339277725
STAT #139811579312232 id=1 cnt=2 pid=0 pos=1 obj=0 op='SORT ORDER BY (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=17 card=1)'
STAT #139811579312232 id=2 cnt=2 pid=1 pos=1 obj=0 op='INLIST ITERATOR (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811579312232 id=3 cnt=2 pid=2 pos=1 obj=93045 op='TABLE ACCESS BY USER ROWID ORDS (cr=2 pr=0 pw=0 str=2 time=0 us cost=1 size=17 card=1)'
CLOSE #139811579312232:c=0,e=0,dep=1,type=0,tim=3200339277725
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b7dc318 bln=22 avl=05 flg=05
 value=13583722
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339277725
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339277725
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339277725
CLOSE #139811583613080:c=0,e=0,dep=1,type=3,tim=3200339278724
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339278724
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339278724
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339278724
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339278724
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339278724
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339278724
XCTEND rlbk=0, rd_only=1, tim=3200339278724
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339278724
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339278724
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b7dc318 bln=22 avl=05 flg=05
 value=8318020
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339278724
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339278724
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339278724
WAIT #139811586957776: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339280724
WAIT #139811586957776: nam='acknowledge over PGA limit' ela= 10999 limit=3361734656 margin=0 growth=11419956 obj#=-1 tim=3200339292723
WAIT #139811586957776: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339292723
WAIT #139811586957776: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339292723
WAIT #139811586957776: nam='acknowledge over PGA limit' ela= 10998 limit=3361734656 margin=0 growth=11551028 obj#=-1 tim=3200339304721
WAIT #139811586957776: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339304721
=====================
PARSING IN CURSOR #139811583635568 len=97 dep=2 uid=0 oct=3 lid=0 tim=3200339304721 hv=791757000 ad='8448fca8' sqlid='87gaftwrm2h68'
select o.owner#,o.name,o.namespace,o.remoteowner,o.linkname,o.subname from obj$ o where o.obj#=:1
END OF STMT
PARSE #139811583635568:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=4,plh=1072382624,tim=3200339304721
BINDS #139811583635568:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b7dc6e8 bln=22 avl=01 flg=05
 value=0
EXEC #139811583635568:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=4,plh=1072382624,tim=3200339305721
FETCH #139811583635568:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=0,dep=2,og=4,plh=1072382624,tim=3200339305721
STAT #139811583635568 id=1 cnt=0 pid=0 pos=1 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=3 size=111 card=1)'
STAT #139811583635568 id=2 cnt=0 pid=1 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=0 card=1)'
CLOSE #139811583635568:c=0,e=0,dep=2,type=3,tim=3200339305721
BINDS #139811583635568:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b7dcb00 bln=22 avl=01 flg=05
 value=0
EXEC #139811583635568:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=2,og=4,plh=1072382624,tim=3200339305721
FETCH #139811583635568:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=0,dep=2,og=4,plh=1072382624,tim=3200339305721
CLOSE #139811583635568:c=0,e=0,dep=2,type=3,tim=3200339305721
=====================
PARSING IN CURSOR #139811586957776 len=727 dep=1 uid=114 oct=3 lid=114 tim=3200339305721 hv=3852755318 ad='6fbc2020' sqlid='a5qrn8rku8sbq'
select substrb(dump(val,16,0,64),1,240) ep, freq, cdn, ndv, (sum(pop) over()) popcnt, (sum(pop*freq) over()) popfreq, substrb(dump(max(val) over(),16,0,64),1,240) maxval, substrb(dump(min(val) over(),16,0,64),1,240) minval from (select val, freq, (sum(freq) over()) cdn, (count(*) over()) ndv, (case when freq > ((sum(freq) over())/254) then 1 else 0 end) pop from (select /*+ no_parallel(t) no_parallel_index(t) dbms_stats cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) no_monitoring xmlindex_sel_idx_tbl opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad */ "CATEGORYID" val, count("CATEGORYID") freq from "U"."ORDS" t where "CATEGORYID" is not null group by "CATEGORYID")) order by val
END OF STMT
PARSE #139811586957776:c=4999,e=25997,p=0,cr=4,cu=0,mis=1,r=0,dep=1,og=1,plh=2559119735,tim=3200339305721
EXEC #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2559119735,tim=3200339306721
WAIT #139811586957776: nam='PGA memory operation' ela= 0 p1=0 p2=0 p3=0 obj#=-1 tim=3200339309721
WAIT #139811586957776: nam='PGA memory operation' ela= 0 p1=0 p2=0 p3=0 obj#=-1 tim=3200339309721
WAIT #139811586957776: nam='PGA memory operation' ela= 0 p1=0 p2=0 p3=0 obj#=-1 tim=3200339309721
WAIT #139811586957776: nam='PGA memory operation' ela= 0 p1=0 p2=0 p3=0 obj#=-1 tim=3200339310720
FETCH #139811586957776:c=5999,e=5999,p=0,cr=27,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339312720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339313720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339314720
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339315720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339316720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339317720
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339318719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339319719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339320719
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=1000,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339321719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339322719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339323719
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339324719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339325719
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339326718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339327718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339328718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339329718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339330718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339331718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339332718
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339333718
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339334717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339335717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339336717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339337717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339338717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339339717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339340717
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339341717
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339342716
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339343716
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339344716
FETCH #139811586957776:c=999,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339345716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339346716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339347716
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339348716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339349716
FETCH #139811586957776:c=1000,e=999,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339350715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339351715
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339352715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339353715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339354715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339355715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339356715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339357715
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339358714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339359714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339360714
FETCH #139811586957776:c=999,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339361714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339362714
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339363714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339364714
FETCH #139811586957776:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339365714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339366714
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339367713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339368713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339369713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339370713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339371713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339372713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2559119735,tim=3200339373713
FETCH #139811586957776:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2559119735,tim=3200339373713
STAT #139811586957776 id=1 cnt=1000 pid=0 pos=1 obj=0 op='WINDOW SORT (cr=27 pr=0 pw=0 str=1 time=6999 us cost=8 size=46000 card=1000)'
STAT #139811586957776 id=2 cnt=1000 pid=1 pos=1 obj=0 op='VIEW (cr=27 pr=0 pw=0 str=1 time=4999 us cost=8 size=46000 card=1000)'
STAT #139811586957776 id=3 cnt=1000 pid=2 pos=1 obj=0 op='WINDOW BUFFER (cr=27 pr=0 pw=0 str=1 time=4999 us cost=8 size=4000 card=1000)'
STAT #139811586957776 id=4 cnt=1000 pid=3 pos=1 obj=0 op='HASH GROUP BY (cr=27 pr=0 pw=0 str=1 time=4000 us cost=8 size=4000 card=1000)'
STAT #139811586957776 id=5 cnt=10000 pid=4 pos=1 obj=93047 op='INDEX FAST FULL SCAN CATEGORY_IDX (cr=27 pr=0 pw=0 str=1 time=0 us cost=7 size=40000 card=10000)'
CLOSE #139811586957776:c=0,e=0,dep=1,type=0,tim=3200339374713
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b7db2b8 bln=22 avl=05 flg=05
 value=13583722
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339374713
FETCH #139811583407544:c=0,e=999,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339375712
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339375712
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(64) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b7dca98 bln=128 avl=16 flg=05
 value="GATHER_SCAN_RATE"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339375712
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339375712
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339375712
=====================
PARSING IN CURSOR #139811579273824 len=173 dep=1 uid=0 oct=3 lid=0 tim=3200339375712 hv=3061412526 ad='815ddd70' sqlid='5s8s8wkv7kwpf'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ COUNT(*) FROM SYS.EXTERNAL_TAB$ WHERE OBJ# = :B1 AND TYPE$ IN ('ORACLE_HIVE', 'ORACLE_HDFS', 'ORACLE_BIGDATA')
END OF STMT
PARSE #139811579273824:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2079990838,tim=3200339375712
BINDS #139811579273824:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b7dcb00 bln=22 avl=04 flg=05
 value=93045
EXEC #139811579273824:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2079990838,tim=3200339376712
FETCH #139811579273824:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=1,dep=1,og=1,plh=2079990838,tim=3200339376712
STAT #139811579273824 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811579273824 id=2 cnt=0 pid=1 pos=1 obj=1372 op='TABLE ACCESS BY INDEX ROWID EXTERNAL_TAB$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=19 card=1)'
STAT #139811579273824 id=3 cnt=0 pid=2 pos=1 obj=1377 op='INDEX UNIQUE SCAN I_EXTERNAL_TAB1$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
CLOSE #139811579273824:c=0,e=0,dep=1,type=3,tim=3200339376712
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b7db2b8 bln=22 avl=05 flg=05
 value=13583722
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339376712
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339376712
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339376712
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339376712
XCTEND rlbk=0, rd_only=1, tim=3200339376712
EXEC #139811585628848:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339377712
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339377712
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339377712
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339377712
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339377712
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339377712
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339377712
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339377712
=====================
PARSING IN CURSOR #139811587214928 len=316 dep=1 uid=0 oct=3 lid=0 tim=3200339377712 hv=3598100578 ad='81628b28' sqlid='45019qrb7da32'
SELECT /*+ ordered index(u) index(o) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ COUNT(*) FROM USER$ U, OBJ$ O WHERE U.NAME = :B4 AND O.OWNER# = U.USER# AND O.NAME = :B3 AND O.NAMESPACE = :B2 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND O.TYPE# = :B1 AND ROWNUM < 2
END OF STMT
PARSE #139811587214928:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339377712
BINDS #139811587214928:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=304 off=0
 kxsbbbfp=7f286b7db1a0 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b7db220 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286b7db2a0 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=280
 kxsbbbfp=7f286b7db2b8 bln=22 avl=02 flg=01
 value=2
EXEC #139811587214928:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339378712
FETCH #139811587214928:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=4066817437,tim=3200339378712
STAT #139811587214928 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=5 pr=0 pw=0 str=1 time=1000 us)'
STAT #139811587214928 id=2 cnt=1 pid=1 pos=1 obj=0 op='COUNT STOPKEY (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811587214928 id=3 cnt=1 pid=2 pos=1 obj=0 op='HASH JOIN (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811587214928 id=4 cnt=1 pid=3 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811587214928 id=5 cnt=1 pid=4 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811587214928 id=6 cnt=1 pid=5 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811587214928 id=7 cnt=1 pid=6 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811587214928 id=8 cnt=1 pid=4 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=111 card=1)'
STAT #139811587214928 id=9 cnt=0 pid=3 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=111 card=1)'
STAT #139811587214928 id=10 cnt=0 pid=9 pos=1 obj=36 op='INDEX SKIP SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=0 card=1)'
CLOSE #139811587214928:c=0,e=0,dep=1,type=3,tim=3200339378712
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b7dc998 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b7dca18 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b7dca98 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=999,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339379712
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339379712
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339379712
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b7db250 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339379712
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339379712
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339379712
=====================
PARSING IN CURSOR #139811583547104 len=78 dep=1 uid=0 oct=3 lid=0 tim=3200339379712 hv=1510548659 ad='8146b8d0' sqlid='c8h20n1d0k95m'
select /*+ no_parallel */ spare4 from sys.optstat_hist_control$ where sname=:1
END OF STMT
PARSE #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339379712
BINDS #139811583547104:

Bind#0
 oacdty=01 mxl=32(25) mxlc=00 mal=00 scl=00 pre=00
 oacflg=21 fl2=0000 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286b980010 bln=32 avl=25 flg=05
 value="WAIT_TIME_TO_UPDATE_STATS"
EXEC #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339379712
FETCH #139811583547104:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339380712
=====================
PARSING IN CURSOR #139811585729936 len=266 dep=1 uid=0 oct=2 lid=0 tim=3200339380712 hv=493077841 ad='7f135d60' sqlid='30rhvh0fq7jaj'
insert /* QOSH:SAVE_STAS */ into sys.wri$_optstat_tab_history(obj#, rowcnt,blkcnt,avgrln, analyzetime,samplesize,cachedblk,cachehit,logicalread,savtime,spare1, im_imcu_count,im_block_count,scanrate,flags) values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15)
END OF STMT
PARSE #139811585729936:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339380712
BINDS #139811585729936:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c680 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c598 bln=24 avl=02 flg=05
 value=10000
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c568 bln=24 avl=02 flg=05
 value=35
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c538 bln=24 avl=02 flg=05
 value=17
 Bind#4
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=18 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=7f286c8efa18 bln=08 avl=07 flg=09
 value="2/11/2018 14:23:21"
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c508 bln=24 avl=02 flg=05
 value=10000
 Bind#6
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c478 bln=24 avl=00 flg=05
 Bind#7
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c448 bln=24 avl=00 flg=05
 Bind#8
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c418 bln=24 avl=00 flg=05
 Bind#9
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=08 fl2=9000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=7f286b97c5c8 bln=16 avl=13 flg=05
 value=11-FEB-18 02.25.26.224117000 PM -05:00
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c4d8 bln=24 avl=01 flg=05
 value=0
 Bind#11
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c650 bln=24 avl=00 flg=05
 Bind#12
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c620 bln=24 avl=00 flg=05
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c4a8 bln=24 avl=01 flg=05
 value=0
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97c5f0 bln=24 avl=02 flg=05
 value=10
EXEC #139811585729936:c=1000,e=1000,p=0,cr=1,cu=8,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339381712
STAT #139811585729936 id=1 cnt=0 pid=0 pos=1 obj=0 op='LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_TAB_HISTORY (cr=1 pr=0 pw=0 str=1 time=0 us)'
CLOSE #139811585729936:c=0,e=0,dep=1,type=1,tim=3200339381712
=====================
PARSING IN CURSOR #139811585728712 len=40 dep=1 uid=0 oct=7 lid=0 tim=3200339381712 hv=2579434614 ad='8136d018' sqlid='gsfnqdfcvy33q'
delete from superobj$ where subobj# = :1
END OF STMT
PARSE #139811585728712:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2453887050,tim=3200339381712
BINDS #139811585728712:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bd81ee0 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585728712:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=2453887050,tim=3200339381712
STAT #139811585728712 id=1 cnt=0 pid=0 pos=1 obj=0 op='DELETE SUPEROBJ$ (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585728712 id=2 cnt=0 pid=1 pos=1 obj=98 op='INDEX UNIQUE SCAN I_SUPEROBJ1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=26 card=1)'
CLOSE #139811585728712:c=0,e=0,dep=1,type=1,tim=3200339381712
=====================
PARSING IN CURSOR #139811585714216 len=36 dep=1 uid=0 oct=7 lid=0 tim=3200339382712 hv=1175925690 ad='81363450' sqlid='3kywng531fcxu'
delete from tab_stats$ where obj#=:1
END OF STMT
PARSE #139811585714216:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667651180,tim=3200339382712
BINDS #139811585714216:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bd81ee0 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585714216:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=0,dep=1,og=1,plh=2667651180,tim=3200339382712
STAT #139811585714216 id=1 cnt=0 pid=0 pos=1 obj=0 op='DELETE TAB_STATS$ (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585714216 id=2 cnt=0 pid=1 pos=1 obj=74 op='INDEX UNIQUE SCAN I_TAB_STATS$_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=7 card=1)'
CLOSE #139811585714216:c=0,e=0,dep=1,type=1,tim=3200339382712
=====================
PARSING IN CURSOR #139811587211816 len=640 dep=1 uid=0 oct=6 lid=0 tim=3200339382712 hv=2158336234 ad='8135c748' sqlid='gxm18860ab67a'
update tab$ set ts#=:2,file#=:3,block#=:4,bobj#=decode(:5,0,null,:5),tab#=decode(:6,0,null,:6),intcols=:7,kernelcols=:8,clucols=decode(:9,0,null,:9),audit$=:10,flags=:11,pctfree$=:12,pctused$=:13,initrans=:14,maxtrans=:15,rowcnt=:16,blkcnt=:17,empcnt=:18,avgspc=:19,chncnt=:20,avgrln=:21,analyzetime=:22,samplesize=:23,cols=:24,property=:25,degree=decode(:26,1,null,:26),instances=decode(:27,1,null,:27),dataobj#=:28,avgspc_flb=:29,flbcnt=:30,trigflag=:31,spare1=:32,spare2=decode(:33,0,null,:33),spare4=:34,spare6=:35,acdrflags=decode(:36,0,null,:36),acdrtsobj#=decode(:37,0,null,:37),acdrdefaulttime=:38,acdrrowtsintcol#=:39 where obj#=:1
END OF STMT
PARSE #139811587211816:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,plh=2918346288,tim=3200339382712
BINDS #139811587211816:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bd80780 bln=22 avl=02 flg=05
 value=4
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd80798 bln=22 avl=02 flg=01
 value=7
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd807b0 bln=22 avl=03 flg=01
 value=354
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd807c8 bln=22 avl=01 flg=01
 value=0
 Bind#4
 No oacdef for this bind.
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bd80750 bln=22 avl=01 flg=05
 value=0
 Bind#6
 No oacdef for this bind.
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
 kxsbbbfp=7f286bd806f0 bln=22 avl=02 flg=05
 value=3
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd80708 bln=22 avl=02 flg=01
 value=3
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd80720 bln=22 avl=01 flg=01
 value=0
 Bind#10
 No oacdef for this bind.
 Bind#11
 oacdty=01 mxl=128(38) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=6cf1285c bln=128 avl=38 flg=09
 value="--------------------------------------"
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=264 off=0
 kxsbbbfp=7f286bd805d0 bln=22 avl=06 flg=05
 value=1073742353
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd805e8 bln=22 avl=02 flg=01
 value=10
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd80600 bln=22 avl=02 flg=01
 value=40
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd80618 bln=22 avl=02 flg=01
 value=1
 Bind#16
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bd80630 bln=22 avl=03 flg=01
 value=255
 Bind#17
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bd80648 bln=22 avl=02 flg=01
 value=10000
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bd80660 bln=22 avl=02 flg=01
 value=35
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286bd80678 bln=22 avl=01 flg=01
 value=0
 Bind#20
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286bd80690 bln=22 avl=01 flg=01
 value=0
 Bind#21
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286bd806a8 bln=22 avl=01 flg=01
 value=0
 Bind#22
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286bd806c0 bln=22 avl=02 flg=01
 value=17
 Bind#23
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6cf12960 bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#24
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bd80558 bln=22 avl=02 flg=05
 value=10000
 Bind#25
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd80570 bln=22 avl=02 flg=01
 value=3
 Bind#26
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd80588 bln=22 avl=06 flg=01
 value=536870912
 Bind#27
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd805a0 bln=22 avl=02 flg=01
 value=1
 Bind#28
 No oacdef for this bind.
 Bind#29
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bd80528 bln=22 avl=02 flg=05
 value=1
 Bind#30
 No oacdef for this bind.
 Bind#31
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=144 off=0
 kxsbbbfp=7f286bd80480 bln=22 avl=04 flg=05
 value=93045
 Bind#32
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd80498 bln=22 avl=01 flg=01
 value=0
 Bind#33
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd804b0 bln=22 avl=01 flg=01
 value=0
 Bind#34
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd804c8 bln=22 avl=01 flg=01
 value=0
 Bind#35
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bd804e0 bln=22 avl=03 flg=01
 value=736
 Bind#36
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bd804f8 bln=22 avl=01 flg=01
 value=0
 Bind#37
 No oacdef for this bind.
 Bind#38
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#39
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6cf129f6 bln=07 avl=07 flg=09
 value="2/11/2018 19:23:5"
 Bind#40
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bd80450 bln=22 avl=01 flg=05
 value=0
 Bind#41
 No oacdef for this bind.
 Bind#42
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bd80420 bln=22 avl=01 flg=05
 value=0
 Bind#43
 No oacdef for this bind.
 Bind#44
 oacdty=180 mxl=11(00) mxlc=00 mal=00 scl=09 pre=00
 oacflg=10 fl2=8000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=00000000 bln=11 avl=00 flg=09
 Bind#45
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bd803d8 bln=22 avl=01 flg=05
 value=0
 Bind#46
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd803f0 bln=22 avl=04 flg=01
 value=93045
EXEC #139811587211816:c=2000,e=1999,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2918346288,tim=3200339384711
STAT #139811587211816 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811587211816 id=2 cnt=1 pid=1 pos=1 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=138 card=1)'
STAT #139811587211816 id=3 cnt=1 pid=2 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
CLOSE #139811587211816:c=0,e=0,dep=1,type=3,tim=3200339385711
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339385711
XCTEND rlbk=0, rd_only=1, tim=3200339385711
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339385711
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339385711
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339385711
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339385711
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339386711
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339386711
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339386711
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339386711
BINDS #139811587214928:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=304 off=0
 kxsbbbfp=7f286b98cd88 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b98ce08 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286b98ce88 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=280
 kxsbbbfp=7f286b98cea0 bln=22 avl=02 flg=01
 value=2
EXEC #139811587214928:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339386711
FETCH #139811587214928:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=4066817437,tim=3200339386711
CLOSE #139811587214928:c=0,e=0,dep=1,type=3,tim=3200339386711
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b98cd38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b98cdb8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b98ce38 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339387711
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339387711
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339387711
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b98ce38 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339387711
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339387711
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339387711
STAT #139811583547104 id=1 cnt=1 pid=0 pos=1 obj=679 op='TABLE ACCESS FULL OPTSTAT_HIST_CONTROL$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=25 card=1)'
CLOSE #139811583547104:c=0,e=0,dep=1,type=1,tim=3200339387711
PARSE #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339387711
BINDS #139811583547104:

Bind#0
 oacdty=01 mxl=32(25) mxlc=00 mal=00 scl=00 pre=00
 oacflg=21 fl2=0000 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286be715c0 bln=32 avl=25 flg=05
 value="WAIT_TIME_TO_UPDATE_STATS"
EXEC #139811583547104:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339388711
FETCH #139811583547104:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339388711
=====================
PARSING IN CURSOR #139811584801448 len=964 dep=1 uid=0 oct=2 lid=0 tim=3200339388711 hv=2265968010 ad='7f12b918' sqlid='ft7wcqu3hzvca'
insert /* QOSH:OPEN_COL_STATS */ into sys.wri$_optstat_histhead_history (obj#,intcol#,savtime,flags, null_cnt,minimum,maximum,distcnt,density,lowval,hival,avgcln,sample_distcnt, sample_size,timestamp#,colname,minimum_enc,maximum_enc) select h.obj#, h.intcol#, :3, bitand(h.spare2, 7) + 8 + decode(h.cache_cnt,0,0,64) + decode(bitand(h.spare2, 8), 0, 0, 128) + decode(bitand(h.spare2, 16), 0, 0, 1024) + decode(bitand(h.spare2, 32), 0, 0, 4096) + decode(bitand(h.spare2, 64), 0, 0, 8192) + decode(bitand(h.spare2, 128), 0, 0, 16384) + decode(bitand(h.spare2, 256), 0, 0, 65536) + decode(bitand(h.spare2, 512), 0, 0, 131072) + decode(bitand(h.spare2, 1024), 0, 0, 262144) + decode(bitand(h.spare2, 2048), 0, 0, 524288), h.null_cnt, h.minimum, h.maximum, h.distcnt, h.density, h.lowval, h.hival, h.avgcln, h.spare1, h.sample_size, h.timestamp#, :4, h.minimum_enc, h.maximum_enc from sys.hist_head$ h where h.obj# = :1 and h.intcol# = :2
END OF STMT
PARSE #139811584801448:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3466694530,tim=3200339388711
=====================
PARSING IN CURSOR #139811583545880 len=153 dep=1 uid=0 oct=2 lid=0 tim=3200339388711 hv=3964251241 ad='7f127870' sqlid='dcs9a27q4mb39'
insert /* QOSH:OPEN_COL_STATS */ into sys.wri$_optstat_histhead_history (obj#,intcol#,flags,expression,colname,savtime) values (:1, :2, :3, :4, :5, :6)
END OF STMT
PARSE #139811583545880:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339388711
=====================
PARSING IN CURSOR #139811580531200 len=351 dep=1 uid=0 oct=2 lid=0 tim=3200339388711 hv=3632262594 ad='7f11e160' sqlid='du1vfy7c7zvf2'
insert /* QOSH:OPEN_COL_STATS */ into sys.wri$_optstat_histgrm_history (obj#,intcol#,savtime,bucket, endpoint,epvalue,colname,epvalue_raw,ep_repeat_count,endpoint_enc) select hg.obj#,hg.intcol#,:3,hg.bucket,hg.endpoint,hg.epvalue, :4, hg.epvalue_raw, hg.ep_repeat_count, hg.endpoint_enc from sys.histgrm$ hg where hg.obj# = :1 and hg.intcol# = :2
END OF STMT
PARSE #139811580531200:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2522716884,tim=3200339388711
BINDS #139811584801448:

Bind#0
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=7f286bd811f0 bln=13 avl=13 flg=05
 value=11-FEB-18 02.25.26.231116000 PM -05:00
 Bind#1
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bd811a8 bln=22 avl=04 flg=05
 value=93045
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd811c0 bln=22 avl=02 flg=01
 value=1
EXEC #139811584801448:c=1000,e=1000,p=0,cr=4,cu=10,mis=0,r=1,dep=1,og=1,plh=3466694530,tim=3200339389711
STAT #139811584801448 id=1 cnt=0 pid=0 pos=1 obj=0 op='LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_HISTHEAD_HISTORY (cr=4 pr=0 pw=0 str=1 time=0 us)'
STAT #139811584801448 id=2 cnt=1 pid=1 pos=1 obj=68 op='TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=52 card=1)'
STAT #139811584801448 id=3 cnt=1 pid=2 pos=1 obj=70 op='INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
BINDS #139811584801448:

Bind#0
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=7f286bd811f0 bln=13 avl=13 flg=05
 value=11-FEB-18 02.25.26.231116000 PM -05:00
 Bind#1
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bd811a8 bln=22 avl=04 flg=05
 value=93045
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd811c0 bln=22 avl=02 flg=01
 value=2
EXEC #139811584801448:c=0,e=0,p=0,cr=3,cu=7,mis=0,r=1,dep=1,og=1,plh=3466694530,tim=3200339389711
BINDS #139811584801448:

Bind#0
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=7f286bd811f0 bln=13 avl=13 flg=05
 value=11-FEB-18 02.25.26.231116000 PM -05:00
 Bind#1
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bd811a8 bln=22 avl=04 flg=05
 value=93045
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd811c0 bln=22 avl=02 flg=01
 value=3
EXEC #139811584801448:c=1000,e=1000,p=0,cr=3,cu=7,mis=0,r=1,dep=1,og=1,plh=3466694530,tim=3200339390711
CLOSE #139811584801448:c=0,e=0,dep=1,type=1,tim=3200339390711
CLOSE #139811583545880:c=0,e=0,dep=1,type=1,tim=3200339390711
CLOSE #139811580531200:c=0,e=0,dep=1,type=1,tim=3200339390711
=====================
PARSING IN CURSOR #139811584790960 len=286 dep=1 uid=0 oct=6 lid=0 tim=3200339390711 hv=3815480267 ad='7cf7d530' sqlid='6t9k34zjqr6yb'
update hist_head$ set bucket_cnt=:3, row_cnt=:4, cache_cnt=:5,null_cnt=:6, timestamp#=:7, sample_size=:8, minimum=:9, maximum=:10,distcnt=:11, lowval=:12, hival=:13, density=:14, spare1=:15, spare2=:16, avgcln=:17, col#=:18, minimum_enc=:19, maximum_enc=:20 where obj#=:1 and intcol#=:2
END OF STMT
PARSE #139811584790960:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,plh=1774962091,tim=3200339390711
BINDS #139811584790960:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bd811a0 bln=22 avl=02 flg=05
 value=10000
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd811b8 bln=22 avl=02 flg=01
 value=2
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd811d0 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd811e8 bln=22 avl=01 flg=01
 value=0
 Bind#4
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=7af003b7 bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bd81128 bln=22 avl=02 flg=05
 value=10000
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd81140 bln=22 avl=09 flg=01
 value=*
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd81158 bln=22 avl=09 flg=01
 value=*
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd81170 bln=22 avl=02 flg=01
 value=2
 Bind#9
 oacdty=23 mxl=32(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=7af003fc bln=32 avl=08 flg=09
 value=*
 Bind#10
 oacdty=23 mxl=32(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=7af0043e bln=32 avl=07 flg=09
 value=*
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
 kxsbbbfp=7f286bd81098 bln=22 avl=02 flg=05
 value=.00005
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd810b0 bln=22 avl=02 flg=01
 value=2
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd810c8 bln=22 avl=02 flg=01
 value=34
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd810e0 bln=22 avl=02 flg=01
 value=9
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bd810f8 bln=22 avl=02 flg=01
 value=3
 Bind#16
 oacdty=23 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#17
 oacdty=23 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bd81050 bln=22 avl=04 flg=05
 value=93045
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd81068 bln=22 avl=02 flg=01
 value=3
EXEC #139811584790960:c=999,e=999,p=0,cr=2,cu=1,mis=0,r=1,dep=1,og=4,plh=1774962091,tim=3200339391710
STAT #139811584790960 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE HIST_HEAD$ (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811584790960 id=2 cnt=1 pid=1 pos=1 obj=70 op='INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=52 card=1)'
CLOSE #139811584790960:c=0,e=0,dep=1,type=3,tim=3200339392710
=====================
PARSING IN CURSOR #139811584795064 len=136 dep=1 uid=0 oct=2 lid=0 tim=3200339392710 hv=2089290052 ad='7cf78488' sqlid='34rznuxy8h2a4'
insert into histgrm$(obj#,intcol#,row#,bucket,endpoint,col#,epvalue_raw,ep_repeat_count,endpoint_enc) values(:1,:2,:3,:4,:5,:6,:7,:8,:9)
END OF STMT
PARSE #139811584795064:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,plh=0,tim=3200339392710
BINDS #139811584795064:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b98d958 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b98d928 bln=24 avl=02 flg=05
 value=3
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b98d8f8 bln=24 avl=01 flg=05
 value=0
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286b98d880 bln=22 avl=03 flg=05
 value=9999
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286b98d898 bln=22 avl=09 flg=01
 value=*
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b98d8c8 bln=24 avl=02 flg=05
 value=3
 Bind#6
 oacdty=23 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b98d850 bln=22 avl=01 flg=05
 value=0
 Bind#8
 oacdty=23 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
EXEC #139811584795064:c=2000,e=1000,p=0,cr=5,cu=21,mis=0,r=2,dep=1,og=4,plh=0,tim=3200339393710
STAT #139811584795064 id=1 cnt=0 pid=0 pos=1 obj=0 op='LOAD TABLE CONVENTIONAL HISTGRM$ (cr=5 pr=0 pw=0 str=1 time=1000 us)'
CLOSE #139811584795064:c=0,e=0,dep=1,type=3,tim=3200339394710
BINDS #139811584790960:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bd81300 bln=22 avl=02 flg=05
 value=1
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd81318 bln=22 avl=01 flg=01
 value=0
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd81330 bln=22 avl=01 flg=01
 value=0
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd81348 bln=22 avl=01 flg=01
 value=0
 Bind#4
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=8178409f bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bd81288 bln=22 avl=02 flg=05
 value=10000
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd812a0 bln=22 avl=01 flg=01
 value=*
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd812b8 bln=22 avl=03 flg=01
 value=*
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd812d0 bln=22 avl=02 flg=01
 value=1000
 Bind#9
 oacdty=23 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=817840e4 bln=32 avl=01 flg=09
 value=*
 Bind#10
 oacdty=23 mxl=32(03) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=81784126 bln=32 avl=03 flg=09
 value=*
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
 kxsbbbfp=7f286bd811f8 bln=22 avl=02 flg=05
 value=.001
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd81210 bln=22 avl=02 flg=01
 value=1000
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd81228 bln=22 avl=02 flg=01
 value=18
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd81240 bln=22 avl=02 flg=01
 value=4
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bd81258 bln=22 avl=02 flg=01
 value=2
 Bind#16
 oacdty=23 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#17
 oacdty=23 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bd811b0 bln=22 avl=04 flg=05
 value=93045
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd811c8 bln=22 avl=02 flg=01
 value=2
EXEC #139811584790960:c=1000,e=1000,p=0,cr=2,cu=1,mis=0,r=1,dep=1,og=4,plh=1774962091,tim=3200339395710
CLOSE #139811584790960:c=0,e=0,dep=1,type=3,tim=3200339395710
BINDS #139811584790960:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bd7b030 bln=22 avl=02 flg=05
 value=1
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd7b048 bln=22 avl=01 flg=01
 value=0
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd7b060 bln=22 avl=01 flg=01
 value=0
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd7b078 bln=22 avl=01 flg=01
 value=0
 Bind#4
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6fa7b89f bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bd7afb8 bln=22 avl=02 flg=05
 value=10000
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd7afd0 bln=22 avl=02 flg=01
 value=*
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd7afe8 bln=22 avl=02 flg=01
 value=*
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd7b000 bln=22 avl=02 flg=01
 value=10000
 Bind#9
 oacdty=23 mxl=32(02) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=6fa7b8e4 bln=32 avl=02 flg=09
 value=*
 Bind#10
 oacdty=23 mxl=32(02) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=6fa7b926 bln=32 avl=02 flg=09
 value=*
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=120 off=0
 kxsbbbfp=7f286bd7af28 bln=22 avl=02 flg=05
 value=.0001
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd7af40 bln=22 avl=02 flg=01
 value=10000
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bd7af58 bln=22 avl=02 flg=01
 value=2
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bd7af70 bln=22 avl=02 flg=01
 value=4
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bd7af88 bln=22 avl=02 flg=01
 value=1
 Bind#16
 oacdty=23 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#17
 oacdty=23 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bd7aee0 bln=22 avl=04 flg=05
 value=93045
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bd7aef8 bln=22 avl=02 flg=01
 value=1
EXEC #139811584790960:c=1000,e=1000,p=0,cr=2,cu=1,mis=0,r=1,dep=1,og=4,plh=1774962091,tim=3200339396710
CLOSE #139811584790960:c=0,e=0,dep=1,type=3,tim=3200339396710
=====================
PARSING IN CURSOR #139811580592112 len=450 dep=1 uid=0 oct=3 lid=0 tim=3200339396710 hv=2667639044 ad='817b4df0' sqlid='50kcsz2gh1w84'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ SU.NAME, SO.NAME, A.STATSTYPE#, A.INTCOL# FROM ASSOCIATION$ A, OBJ$ O, USER$ U, COL$ C, OBJ$ SO, USER$ SU WHERE O.OWNER#=U.USER# AND A.OBJ#=O.OBJ# AND O.OBJ#=C.OBJ# AND C.INTCOL#=A.INTCOL# AND A.STATSTYPE#=SO.OBJ# AND SO.OWNER#=SU.USER# AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND O.TYPE#=2 AND U.NAME=:B3 AND O.NAME=:B2 AND C.NAME=:B1 
END OF STMT
PARSE #139811580592112:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2616421621,tim=3200339396710
BINDS #139811580592112:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b98ba40 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b98bac0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b98bb40 bln=128 avl=05 flg=01
 value="ORDID"
EXEC #139811580592112:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2616421621,tim=3200339397710
FETCH #139811580592112:c=0,e=0,p=0,cr=23,cu=0,mis=0,r=0,dep=1,og=1,plh=2616421621,tim=3200339397710
STAT #139811580592112 id=1 cnt=0 pid=0 pos=1 obj=0 op='HASH JOIN (cr=23 pr=0 pw=0 str=1 time=0 us cost=6 size=250 card=1)'
STAT #139811580592112 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=23 pr=0 pw=0 str=1 time=0 us cost=6 size=250 card=1)'
STAT #139811580592112 id=3 cnt=0 pid=2 pos=1 obj=0 op='NESTED LOOPS (cr=23 pr=0 pw=0 str=1 time=0 us cost=6 size=250 card=1)'
STAT #139811580592112 id=4 cnt=0 pid=3 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=23 pr=0 pw=0 str=1 time=0 us)'
STAT #139811580592112 id=5 cnt=0 pid=4 pos=1 obj=0 op='HASH JOIN (cr=23 pr=0 pw=0 str=1 time=0 us cost=5 size=229 card=1)'
STAT #139811580592112 id=6 cnt=0 pid=5 pos=1 obj=0 op='NESTED LOOPS (cr=23 pr=0 pw=0 str=1 time=0 us cost=5 size=229 card=1)'
STAT #139811580592112 id=7 cnt=0 pid=6 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=23 pr=0 pw=0 str=1 time=0 us)'
STAT #139811580592112 id=8 cnt=0 pid=7 pos=1 obj=0 op='HASH JOIN (cr=23 pr=0 pw=0 str=1 time=0 us cost=4 size=211 card=1)'
STAT #139811580592112 id=9 cnt=0 pid=8 pos=1 obj=0 op='NESTED LOOPS (cr=23 pr=0 pw=0 str=1 time=0 us cost=4 size=211 card=1)'
STAT #139811580592112 id=10 cnt=0 pid=9 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=23 pr=0 pw=0 str=1 time=0 us)'
STAT #139811580592112 id=11 cnt=0 pid=10 pos=1 obj=0 op='NESTED LOOPS (cr=23 pr=0 pw=0 str=1 time=0 us cost=3 size=168 card=1)'
STAT #139811580592112 id=12 cnt=16 pid=11 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=57 card=1)'
STAT #139811580592112 id=13 cnt=1 pid=12 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811580592112 id=14 cnt=1 pid=13 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811580592112 id=15 cnt=16 pid=12 pos=2 obj=637 op='TABLE ACCESS FULL ASSOCIATION$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=39 card=1)'
STAT #139811580592112 id=16 cnt=0 pid=11 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$ (cr=18 pr=0 pw=0 str=16 time=0 us cost=0 size=111 card=1)'
STAT #139811580592112 id=17 cnt=0 pid=16 pos=1 obj=36 op='INDEX UNIQUE SCAN I_OBJ1 (cr=18 pr=0 pw=0 str=16 time=0 us cost=0 size=0 card=1)'
STAT #139811580592112 id=18 cnt=0 pid=9 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=43 card=1)'
STAT #139811580592112 id=19 cnt=0 pid=18 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811580592112 id=20 cnt=0 pid=8 pos=2 obj=40 op='INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=43 card=1)'
STAT #139811580592112 id=21 cnt=0 pid=6 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
STAT #139811580592112 id=22 cnt=0 pid=21 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811580592112 id=23 cnt=0 pid=5 pos=2 obj=22 op='TABLE ACCESS FULL USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
STAT #139811580592112 id=24 cnt=0 pid=3 pos=2 obj=50 op='INDEX UNIQUE SCAN I_COL3 (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811580592112 id=25 cnt=0 pid=2 pos=2 obj=21 op='TABLE ACCESS BY INDEX ROWID COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=21 card=1)'
STAT #139811580592112 id=26 cnt=0 pid=1 pos=2 obj=21 op='TABLE ACCESS FULL COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=21 card=1)'
=====================
PARSING IN CURSOR #139811580589680 len=513 dep=1 uid=0 oct=3 lid=0 tim=3200339399709 hv=3272358443 ad='817b49c0' sqlid='dp0vgyb1hsfjb'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ SU.NAME, SO.NAME, A.STATSTYPE#, C.INTCOL# FROM ASSOCIATION$ A, OBJ$ O, USER$ U, COL$ C, OBJ$ SO, USER$ SU, COLTYPE$ CT, OBJ$ TY WHERE O.OWNER#=U.USER# AND A.OBJ#=TY.OBJ# AND O.OBJ#=C.OBJ# AND C.INTCOL#=CT.INTCOL# AND O.OBJ#=CT.OBJ# AND CT.TOID=TY.OID$ AND A.STATSTYPE#=SO.OBJ# AND SO.OWNER#=SU.USER# AND O.NAMESPACE = 1 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME IS NULL AND O.TYPE#=2 AND O.NAME=:B3 AND U.NAME=:B2 AND C.NAME=:B1 
END OF STMT
PARSE #139811580589680:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1662056740,tim=3200339399709
BINDS #139811580589680:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b5784e8 bln=128 avl=04 flg=05
 value="ORDS"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b578568 bln=128 avl=01 flg=01
 value="U"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b5785e8 bln=128 avl=05 flg=01
 value="ORDID"
EXEC #139811580589680:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1662056740,tim=3200339399709
FETCH #139811580589680:c=1000,e=1000,p=0,cr=52,cu=0,mis=0,r=0,dep=1,og=1,plh=1662056740,tim=3200339400709
STAT #139811580589680 id=1 cnt=0 pid=0 pos=1 obj=0 op='HASH JOIN (cr=52 pr=0 pw=0 str=1 time=1000 us cost=10 size=270 card=1)'
STAT #139811580589680 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=52 pr=0 pw=0 str=1 time=1000 us cost=10 size=270 card=1)'
STAT #139811580589680 id=3 cnt=0 pid=2 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=52 pr=0 pw=0 str=1 time=1000 us)'
STAT #139811580589680 id=4 cnt=0 pid=3 pos=1 obj=0 op='HASH JOIN (cr=52 pr=0 pw=0 str=1 time=1000 us cost=9 size=252 card=1)'
STAT #139811580589680 id=5 cnt=0 pid=4 pos=1 obj=0 op='NESTED LOOPS (cr=52 pr=0 pw=0 str=1 time=1000 us cost=9 size=252 card=1)'
STAT #139811580589680 id=6 cnt=0 pid=5 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=52 pr=0 pw=0 str=1 time=1000 us)'
STAT #139811580589680 id=7 cnt=0 pid=6 pos=1 obj=0 op='HASH JOIN (cr=52 pr=0 pw=0 str=1 time=1000 us cost=8 size=209 card=1)'
STAT #139811580589680 id=8 cnt=0 pid=7 pos=1 obj=0 op='NESTED LOOPS (cr=52 pr=0 pw=0 str=1 time=1000 us cost=8 size=209 card=1)'
STAT #139811580589680 id=9 cnt=0 pid=8 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=52 pr=0 pw=0 str=1 time=1000 us)'
STAT #139811580589680 id=10 cnt=0 pid=9 pos=1 obj=0 op='NESTED LOOPS (cr=52 pr=0 pw=0 str=1 time=1000 us cost=7 size=202 card=1)'
STAT #139811580589680 id=11 cnt=16 pid=10 pos=1 obj=0 op='HASH JOIN (cr=43 pr=0 pw=0 str=1 time=0 us cost=6 size=176 card=1)'
STAT #139811580589680 id=12 cnt=16 pid=11 pos=1 obj=0 op='NESTED LOOPS (cr=43 pr=0 pw=0 str=1 time=0 us cost=6 size=176 card=1)'
STAT #139811580589680 id=13 cnt=16 pid=12 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=18 pr=0 pw=0 str=1 time=0 us)'
STAT #139811580589680 id=14 cnt=16 pid=13 pos=1 obj=0 op='HASH JOIN (cr=18 pr=0 pw=0 str=1 time=0 us cost=5 size=155 card=1)'
STAT #139811580589680 id=15 cnt=16 pid=14 pos=1 obj=0 op='NESTED LOOPS (cr=18 pr=0 pw=0 str=1 time=0 us cost=5 size=155 card=1)'
STAT #139811580589680 id=16 cnt=16 pid=15 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811580589680 id=17 cnt=16 pid=16 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=44 card=1)'
STAT #139811580589680 id=18 cnt=1 pid=17 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811580589680 id=19 cnt=1 pid=18 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811580589680 id=20 cnt=16 pid=17 pos=2 obj=637 op='TABLE ACCESS FULL ASSOCIATION$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=26 card=1)'
STAT #139811580589680 id=21 cnt=16 pid=15 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=13 pr=0 pw=0 str=16 time=0 us cost=2 size=111 card=1)'
STAT #139811580589680 id=22 cnt=0 pid=14 pos=2 obj=40 op='INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=111 card=1)'
STAT #139811580589680 id=23 cnt=16 pid=12 pos=2 obj=21 op='TABLE ACCESS CLUSTER COL$ (cr=25 pr=0 pw=0 str=16 time=1000 us cost=1 size=21 card=1)'
STAT #139811580589680 id=24 cnt=16 pid=23 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=9 pr=0 pw=0 str=16 time=0 us cost=0 size=0 card=1)'
STAT #139811580589680 id=25 cnt=0 pid=11 pos=2 obj=21 op='TABLE ACCESS FULL COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=21 card=1)'
STAT #139811580589680 id=26 cnt=0 pid=10 pos=2 obj=111 op='TABLE ACCESS BY INDEX ROWID COLTYPE$ (cr=9 pr=0 pw=0 str=16 time=0 us cost=1 size=26 card=1)'
STAT #139811580589680 id=27 cnt=0 pid=26 pos=1 obj=113 op='INDEX UNIQUE SCAN I_COLTYPE2 (cr=9 pr=0 pw=0 str=16 time=0 us cost=0 size=0 card=1)'
STAT #139811580589680 id=28 cnt=0 pid=8 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=7 card=1)'
STAT #139811580589680 id=29 cnt=0 pid=28 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811580589680 id=30 cnt=0 pid=7 pos=2 obj=18 op='TABLE ACCESS FULL OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=7 card=1)'
STAT #139811580589680 id=31 cnt=0 pid=5 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=43 card=1)'
STAT #139811580589680 id=32 cnt=0 pid=31 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811580589680 id=33 cnt=0 pid=4 pos=2 obj=40 op='INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=43 card=1)'
STAT #139811580589680 id=34 cnt=0 pid=2 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
STAT #139811580589680 id=35 cnt=0 pid=34 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811580589680 id=36 cnt=0 pid=1 pos=2 obj=22 op='TABLE ACCESS FULL USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
CLOSE #139811580589680:c=0,e=0,dep=1,type=3,tim=3200339402709
CLOSE #139811580592112:c=0,e=0,dep=1,type=3,tim=3200339402709
BINDS #139811580592112:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b5784e8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b578568 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b5785e8 bln=128 avl=10 flg=01
 value="CATEGORYID"
EXEC #139811580592112:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2616421621,tim=3200339402709
FETCH #139811580592112:c=0,e=0,p=0,cr=23,cu=0,mis=0,r=0,dep=1,og=1,plh=2616421621,tim=3200339402709
BINDS #139811580589680:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b5784e8 bln=128 avl=04 flg=05
 value="ORDS"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b578568 bln=128 avl=01 flg=01
 value="U"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b5785e8 bln=128 avl=10 flg=01
 value="CATEGORYID"
EXEC #139811580589680:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1662056740,tim=3200339402709
FETCH #139811580589680:c=1000,e=1000,p=0,cr=52,cu=0,mis=0,r=0,dep=1,og=1,plh=1662056740,tim=3200339403709
CLOSE #139811580589680:c=0,e=0,dep=1,type=3,tim=3200339403709
CLOSE #139811580592112:c=0,e=0,dep=1,type=3,tim=3200339403709
BINDS #139811580592112:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b5784e8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b578568 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b5785e8 bln=128 avl=06 flg=01
 value="STATUS"
EXEC #139811580592112:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2616421621,tim=3200339403709
FETCH #139811580592112:c=0,e=0,p=0,cr=23,cu=0,mis=0,r=0,dep=1,og=1,plh=2616421621,tim=3200339403709
BINDS #139811580589680:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b5784e8 bln=128 avl=04 flg=05
 value="ORDS"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b578568 bln=128 avl=01 flg=01
 value="U"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b5785e8 bln=128 avl=06 flg=01
 value="STATUS"
EXEC #139811580589680:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1662056740,tim=3200339404709
FETCH #139811580589680:c=0,e=0,p=0,cr=52,cu=0,mis=0,r=0,dep=1,og=1,plh=1662056740,tim=3200339404709
CLOSE #139811580589680:c=0,e=0,dep=1,type=3,tim=3200339404709
CLOSE #139811580592112:c=0,e=0,dep=1,type=3,tim=3200339404709
=====================
PARSING IN CURSOR #139811585013352 len=964 dep=1 uid=0 oct=3 lid=0 tim=3200339404709 hv=3507840541 ad='817d17e8' sqlid='crmdt678jathx'
SELECT /*+ rule 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ '"'||UI.NAME||'"' IND_OWNER, '"'||OI.NAME||'"' IND_NAME, OI.OBJ# OBJ_NUM, NVL(PO.FLAGS,0) LOCALITY, I.PROPERTY IPROP, I.TYPE# ITYPE FROM SYS.USER$ UT, SYS.OBJ$ OT, SYS.IND$ I, SYS.OBJ$ OI, SYS.USER$ UI, SYS.PARTOBJ$ PO WHERE ((:B3 IS NULL) OR (PO.FLAGS IS NULL) OR (PO.FLAGS = 2)) AND UT.NAME = :B2 AND UT.USER# = OT.OWNER# AND OT.NAME = :B1 AND OT.TYPE# = 2 AND OT.OBJ# = I.BO# AND I.OBJ# = OI.OBJ# AND OI.OWNER# = UI.USER# AND I.OBJ# = PO.OBJ#(+) UNION ALL SELECT /*+ rule */ '"'||UI.NAME||'"' IND_OWNER, '"'||OI.NAME||'"' IND_NAME, OI.OBJ# OBJ_NUM, 0 LOCALITY, I.PROPERTY IPROP, I.TYPE# ITYPE FROM SYS.USER$ UT, SYS.OBJ$ OT, SYS.IND$ I, SYS.TAB$ T, SYS.OBJ$ OI, SYS.USER$ UI WHERE :B4 IS NOT NULL AND UT.NAME = :B2 AND UT.USER# = OT.OWNER# AND OT.NAME = :B1 AND OT.TYPE# = 2 AND OT.OBJ# = T.OBJ# AND T.BOBJ# = I.BO# AND I.TYPE# = 3 AND I.OBJ# = OI.OBJ# AND OI.OWNER# = UI.USER#
END OF STMT
PARSE #139811585013352:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=3,plh=1179034175,tim=3200339404709
BINDS #139811585013352:

Bind#0
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=576 off=0
 kxsbbbfp=7f286b575bc8 bln=32 avl=00 flg=05
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=32
 kxsbbbfp=7f286b575be8 bln=128 avl=01 flg=01
 value="U"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=160
 kxsbbbfp=7f286b575c68 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#3
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286b575ce8 bln=32 avl=00 flg=01
 Bind#4
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=320
 kxsbbbfp=7f286b575d08 bln=128 avl=01 flg=01
 value="U"
 Bind#5
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=448
 kxsbbbfp=7f286b575d88 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585013352:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=3,plh=1179034175,tim=3200339405709
FETCH #139811585013352:c=0,e=0,p=0,cr=21,cu=0,mis=0,r=3,dep=1,og=3,plh=1179034175,tim=3200339405709
STAT #139811585013352 id=1 cnt=3 pid=0 pos=1 obj=0 op='UNION-ALL (cr=21 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=2 cnt=3 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=21 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=3 cnt=3 pid=2 pos=1 obj=0 op='NESTED LOOPS (cr=16 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=4 cnt=3 pid=3 pos=1 obj=0 op='FILTER (cr=10 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=5 cnt=3 pid=4 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=10 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=6 cnt=3 pid=5 pos=1 obj=0 op='NESTED LOOPS (cr=8 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=7 cnt=1 pid=6 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=8 cnt=1 pid=7 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=9 cnt=1 pid=8 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=10 cnt=1 pid=7 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=11 cnt=3 pid=6 pos=2 obj=19 op='TABLE ACCESS CLUSTER IND$ (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=12 cnt=1 pid=11 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=13 cnt=0 pid=5 pos=2 obj=79 op='TABLE ACCESS BY INDEX ROWID PARTOBJ$ (cr=2 pr=0 pw=0 str=3 time=0 us)'
STAT #139811585013352 id=14 cnt=0 pid=13 pos=1 obj=80 op='INDEX UNIQUE SCAN I_PARTOBJ$ (cr=2 pr=0 pw=0 str=3 time=0 us)'
STAT #139811585013352 id=15 cnt=3 pid=3 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$ (cr=6 pr=0 pw=0 str=3 time=0 us)'
STAT #139811585013352 id=16 cnt=3 pid=15 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=5 pr=0 pw=0 str=3 time=0 us)'
STAT #139811585013352 id=17 cnt=3 pid=2 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=5 pr=0 pw=0 str=3 time=0 us)'
STAT #139811585013352 id=18 cnt=3 pid=17 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=2 pr=0 pw=0 str=3 time=0 us)'
STAT #139811585013352 id=19 cnt=0 pid=1 pos=2 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585013352 id=20 cnt=0 pid=19 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=21 cnt=0 pid=20 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=22 cnt=0 pid=21 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=23 cnt=0 pid=22 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=24 cnt=0 pid=23 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=25 cnt=0 pid=24 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=26 cnt=0 pid=25 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=27 cnt=0 pid=24 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=28 cnt=0 pid=23 pos=2 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=29 cnt=0 pid=28 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=30 cnt=0 pid=22 pos=2 obj=19 op='TABLE ACCESS CLUSTER IND$ (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=31 cnt=0 pid=30 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=32 cnt=0 pid=21 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=33 cnt=0 pid=32 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=34 cnt=0 pid=20 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585013352 id=35 cnt=0 pid=34 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=0 pr=0 pw=0 str=0 time=0 us)'
CLOSE #139811585013352:c=0,e=0,dep=1,type=3,tim=3200339407708
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339407708
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339407708
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339407708
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339407708
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339407708
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339407708
=====================
PARSING IN CURSOR #139811576305848 len=409 dep=1 uid=0 oct=3 lid=0 tim=3200339407708 hv=3398239828 ad='817c6a40' sqlid='751umqb58u1kn'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ ITU.NAME OWNNAME, ITO.NAME TABNAME FROM SYS.USER$ U, SYS.OBJ$ IO, SYS.IND$ I, SYS.OBJ$ ITO, SYS.USER$ ITU WHERE U.NAME = :B2 AND IO.NAME = :B1 AND IO.OWNER# = U.USER# AND IO.NAMESPACE = 4 AND IO.REMOTEOWNER IS NULL AND IO.LINKNAME IS NULL AND IO.SUBNAME IS NULL AND IO.TYPE# = 1 AND IO.OBJ# = I.OBJ# AND ITO.OBJ# = I.BO# AND ITO.OWNER#= ITU.USER#
END OF STMT
PARSE #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339407708
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286b578568 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b5785e8 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811576305848:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339408708
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339408708
STAT #139811576305848 id=1 cnt=1 pid=0 pos=1 obj=0 op='HASH JOIN (cr=13 pr=0 pw=0 str=1 time=0 us cost=7 size=200 card=1)'
STAT #139811576305848 id=2 cnt=1 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=13 pr=0 pw=0 str=1 time=0 us cost=7 size=200 card=1)'
STAT #139811576305848 id=3 cnt=1 pid=2 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=11 pr=0 pw=0 str=1 time=0 us)'
STAT #139811576305848 id=4 cnt=1 pid=3 pos=1 obj=0 op='HASH JOIN (cr=11 pr=0 pw=0 str=1 time=0 us cost=6 size=182 card=1)'
STAT #139811576305848 id=5 cnt=1 pid=4 pos=1 obj=0 op='NESTED LOOPS (cr=11 pr=0 pw=0 str=1 time=0 us cost=6 size=182 card=1)'
STAT #139811576305848 id=6 cnt=1 pid=5 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=8 pr=0 pw=0 str=1 time=0 us)'
STAT #139811576305848 id=7 cnt=1 pid=6 pos=1 obj=0 op='HASH JOIN (cr=8 pr=0 pw=0 str=1 time=0 us cost=4 size=139 card=1)'
STAT #139811576305848 id=8 cnt=1 pid=7 pos=1 obj=0 op='NESTED LOOPS (cr=8 pr=0 pw=0 str=1 time=0 us cost=4 size=139 card=1)'
STAT #139811576305848 id=9 cnt=1 pid=8 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811576305848 id=10 cnt=1 pid=9 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811576305848 id=11 cnt=1 pid=10 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811576305848 id=12 cnt=1 pid=11 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576305848 id=13 cnt=1 pid=10 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=111 card=1)'
STAT #139811576305848 id=14 cnt=1 pid=8 pos=2 obj=19 op='TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=1 size=10 card=1)'
STAT #139811576305848 id=15 cnt=1 pid=14 pos=1 obj=41 op='INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576305848 id=16 cnt=0 pid=7 pos=2 obj=19 op='TABLE ACCESS BY INDEX ROWID BATCHED IND$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811576305848 id=17 cnt=0 pid=16 pos=1 obj=41 op='INDEX FULL SCAN I_IND1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811576305848 id=18 cnt=1 pid=5 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=43 card=1)'
STAT #139811576305848 id=19 cnt=1 pid=18 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811576305848 id=20 cnt=0 pid=4 pos=2 obj=40 op='INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=43 card=1)'
STAT #139811576305848 id=21 cnt=1 pid=2 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811576305848 id=22 cnt=1 pid=21 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576305848 id=23 cnt=0 pid=1 pos=2 obj=22 op='TABLE ACCESS FULL USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339409708
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b5774d0 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b577550 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b5775d0 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339409708
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339409708
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339409708
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b5775d0 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339410708
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339410708
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339410708
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286b577550 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b5775d0 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339410708
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339410708
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339410708
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286b577550 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b5775d0 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339410708
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339410708
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339410708
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b5774d0 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b577550 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b5775d0 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339411708
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339411708
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339411708
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b5775d0 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339411708
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339411708
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339411708
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286b577550 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b5775d0 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339411708
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339411708
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339411708
=====================
PARSING IN CURSOR #139811576316184 len=1300 dep=1 uid=0 oct=3 lid=0 tim=3200339412708 hv=1685955255 ad='817c6210' sqlid='dq5ash5k7v8pr'
SELECT /*+ ordered use_nl(u io i ito t itu po) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ IO.OBJ# IOBJN,I.TYPE# ITYPE,I.FLAGS IFLAGS,I.PROPERTY IPROP, I.INTCOLS IINTCOLS, NVL(I.DEGREE,1), I.ANALYZETIME, ITU.NAME TOWN,ITO.NAME TAB,I.BO# TOBJN,T.FLAGS TFLAGS,T.PROPERTY TPROP, ITO.TYPE# TTYPE, CASE WHEN BITAND(T.FLAGS, 16) = 0 THEN NULL ELSE T.ROWCNT END NROWS, PO.PARTTYPE PTYPE,PO.PARTCNT PCNT,PO.PARTKEYCOLS PTKCOLS, PO.FLAGS PFLAGS,MOD(PO.SPARE2,256) SPTYPE FROM SYS.USER$ U,SYS.OBJ$ IO,SYS.IND$ I, SYS.OBJ$ ITO,SYS.USER$ ITU,SYS.TAB$ T, PARTOBJ$ PO WHERE U.NAME=:B2 AND IO.NAME=:B1 AND IO.OWNER#=U.USER# AND IO.TYPE#=1 AND IO.OBJ#=I.OBJ# AND ITO.OBJ#=I.BO# AND ITO.OWNER#=ITU.USER# AND ITO.OBJ#=T.OBJ# AND IO.OBJ#=PO.OBJ#(+) UNION ALL SELECT /*+ ordered use_nl(u io i ito t itu) */ IO.OBJ# IOBJN,I.TYPE# ITYPE,I.FLAGS IFLAGS,I.PROPERTY IPROP, I.INTCOLS IINTCOLS, NVL(I.DEGREE,1), I.ANALYZETIME, ITU.NAME TOWN,ITO.NAME TAB,I.BO# TOBJN,0 TFLAGS,0 TPROP, ITO.TYPE# TTYPE, NULL NROWS, NULL PTYPE,NULL PCNT,NULL PTKCOLS, NULL PFLAGS,NULL SPTYPE FROM SYS.USER$ U,SYS.OBJ$ IO,SYS.IND$ I, SYS.OBJ$ ITO,SYS.USER$ ITU,SYS.CLU$ T WHERE U.NAME=:B2 AND IO.NAME=:B1 AND IO.OWNER#=U.USER# AND IO.TYPE#=1 AND IO.OBJ#=I.OBJ# AND ITO.OBJ#=I.BO# AND ITO.OWNER#=ITU.USER# AND ITO.OBJ#=T.OBJ#
END OF STMT
PARSE #139811576316184:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1163018545,tim=3200339412708
BINDS #139811576316184:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=512 off=0
 kxsbbbfp=7f286b577ae8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b577b68 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b577be8 bln=128 avl=01 flg=01
 value="U"
 Bind#3
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=384
 kxsbbbfp=7f286b577c68 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811576316184:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1163018545,tim=3200339412708
FETCH #139811576316184:c=0,e=0,p=0,cr=17,cu=0,mis=0,r=1,dep=1,og=1,plh=1163018545,tim=3200339412708
STAT #139811576316184 id=1 cnt=1 pid=0 pos=1 obj=0 op='UNION-ALL (cr=17 pr=0 pw=0 str=1 time=0 us)'
STAT #139811576316184 id=2 cnt=1 pid=1 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=17 pr=0 pw=0 str=1 time=0 us cost=9 size=204 card=1)'
STAT #139811576316184 id=3 cnt=1 pid=2 pos=1 obj=0 op='NESTED LOOPS (cr=16 pr=0 pw=0 str=1 time=0 us cost=8 size=183 card=1)'
STAT #139811576316184 id=4 cnt=1 pid=3 pos=1 obj=0 op='NESTED LOOPS (cr=13 pr=0 pw=0 str=1 time=0 us cost=7 size=163 card=1)'
STAT #139811576316184 id=5 cnt=1 pid=4 pos=1 obj=0 op='NESTED LOOPS (cr=11 pr=0 pw=0 str=1 time=0 us cost=6 size=145 card=1)'
STAT #139811576316184 id=6 cnt=1 pid=5 pos=1 obj=0 op='NESTED LOOPS (cr=8 pr=0 pw=0 str=1 time=0 us cost=4 size=98 card=1)'
STAT #139811576316184 id=7 cnt=1 pid=6 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=65 card=1)'
STAT #139811576316184 id=8 cnt=1 pid=7 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811576316184 id=9 cnt=1 pid=8 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576316184 id=10 cnt=1 pid=7 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=47 card=1)'
STAT #139811576316184 id=11 cnt=1 pid=6 pos=2 obj=19 op='TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=1 size=33 card=1)'
STAT #139811576316184 id=12 cnt=1 pid=11 pos=1 obj=41 op='INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576316184 id=13 cnt=1 pid=5 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=47 card=1)'
STAT #139811576316184 id=14 cnt=1 pid=13 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811576316184 id=15 cnt=1 pid=4 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811576316184 id=16 cnt=1 pid=15 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576316184 id=17 cnt=1 pid=3 pos=2 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=1 size=20 card=1)'
STAT #139811576316184 id=18 cnt=1 pid=17 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576316184 id=19 cnt=0 pid=2 pos=2 obj=79 op='TABLE ACCESS BY INDEX ROWID PARTOBJ$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=21 card=1)'
STAT #139811576316184 id=20 cnt=0 pid=19 pos=1 obj=80 op='INDEX UNIQUE SCAN I_PARTOBJ$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576316184 id=21 cnt=0 pid=1 pos=2 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=8 size=167 card=1)'
STAT #139811576316184 id=22 cnt=0 pid=21 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=7 size=163 card=1)'
STAT #139811576316184 id=23 cnt=0 pid=22 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=6 size=145 card=1)'
STAT #139811576316184 id=24 cnt=0 pid=23 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=4 size=98 card=1)'
STAT #139811576316184 id=25 cnt=0 pid=24 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=3 size=65 card=1)'
STAT #139811576316184 id=26 cnt=0 pid=25 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
STAT #139811576316184 id=27 cnt=0 pid=26 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811576316184 id=28 cnt=0 pid=25 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=47 card=1)'
STAT #139811576316184 id=29 cnt=0 pid=24 pos=2 obj=19 op='TABLE ACCESS BY INDEX ROWID IND$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=33 card=1)'
STAT #139811576316184 id=30 cnt=0 pid=29 pos=1 obj=41 op='INDEX UNIQUE SCAN I_IND1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811576316184 id=31 cnt=0 pid=23 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=47 card=1)'
STAT #139811576316184 id=32 cnt=0 pid=31 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811576316184 id=33 cnt=0 pid=22 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
STAT #139811576316184 id=34 cnt=0 pid=33 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811576316184 id=35 cnt=0 pid=21 pos=2 obj=5 op='TABLE ACCESS CLUSTER CLU$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=4 card=1)'
STAT #139811576316184 id=36 cnt=0 pid=35 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
CLOSE #139811576316184:c=2000,e=2000,dep=1,type=3,tim=3200339414708
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b574858 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b5748d8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b574958 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339414708
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339414708
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339415707
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b577c68 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339415707
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339415707
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339415707
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b574858 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b5748d8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b574958 bln=128 avl=11 flg=01
 value="INCREMENTAL"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339415707
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339415707
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339415707
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b577c68 bln=128 avl=11 flg=05
 value="INCREMENTAL"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339415707
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339415707
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339415707
=====================
PARSING IN CURSOR #139811576313752 len=639 dep=1 uid=0 oct=3 lid=0 tim=3200339416707 hv=98929439 ad='8160ac18' sqlid='b1khwjh2yb2sz'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ DECODE(SUM(BITAND(TRIGFLAG, 67108864)), 67108864, 67108864, 0) + DECODE(SUM(BITAND(TRIGFLAG, 134217728)), 134217728, 134217728, 0) FROM ( SELECT /*+ ordered index(i) use_nl_with_index(t) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.TRIGFLAG FROM SYS.IND$ I, SYS.TAB$ T WHERE I.OBJ# = :B1 AND I.TYPE# != 3 AND I.BO# = T.OBJ# UNION ALL SELECT /*+ ordered index(i) use_nl_with_index(t) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.TRIGFLAG FROM SYS.IND$ I, SYS.TAB$ T WHERE I.OBJ# = :B1 AND I.TYPE# = 3 AND I.BO# = T.BOBJ# )
END OF STMT
PARSE #139811576313752:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=444875925,tim=3200339416707
BINDS #139811576313752:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286b5749a8 bln=22 avl=04 flg=05
 value=93046
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286b5749c0 bln=22 avl=04 flg=01
 value=93046
EXEC #139811576313752:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=444875925,tim=3200339416707
FETCH #139811576313752:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=1,dep=1,og=1,plh=444875925,tim=3200339416707
STAT #139811576313752 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=9 pr=0 pw=0 str=1 time=0 us)'
STAT #139811576313752 id=2 cnt=1 pid=1 pos=1 obj=0 op='VIEW (cr=9 pr=0 pw=0 str=1 time=0 us cost=31 size=39 card=3)'
STAT #139811576313752 id=3 cnt=1 pid=2 pos=1 obj=0 op='UNION-ALL (cr=9 pr=0 pw=0 str=1 time=0 us)'
STAT #139811576313752 id=4 cnt=1 pid=3 pos=1 obj=0 op='NESTED LOOPS (cr=6 pr=0 pw=0 str=1 time=0 us cost=3 size=21 card=1)'
STAT #139811576313752 id=5 cnt=1 pid=4 pos=1 obj=19 op='TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=13 card=1)'
STAT #139811576313752 id=6 cnt=1 pid=5 pos=1 obj=41 op='INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811576313752 id=7 cnt=1 pid=4 pos=2 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=1 size=8 card=1)'
STAT #139811576313752 id=8 cnt=1 pid=7 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811576313752 id=9 cnt=0 pid=3 pos=2 obj=0 op='NESTED LOOPS (cr=3 pr=0 pw=0 str=1 time=0 us cost=28 size=36 card=2)'
STAT #139811576313752 id=10 cnt=0 pid=9 pos=1 obj=19 op='TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=13 card=1)'
STAT #139811576313752 id=11 cnt=1 pid=10 pos=1 obj=41 op='INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811576313752 id=12 cnt=0 pid=9 pos=2 obj=4 op='TABLE ACCESS BY INDEX ROWID BATCHED TAB$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=26 size=10 card=2)'
STAT #139811576313752 id=13 cnt=0 pid=12 pos=1 obj=33 op='INDEX RANGE SCAN I_TAB1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=44)'
CLOSE #139811576313752:c=0,e=0,dep=1,type=3,tim=3200339417707
PARSE #139811592690400:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339417707
BINDS #139811592690400:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfcb528 bln=22 avl=03 flg=05
 value=7327
 Bind#1
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=56 off=0
 kxsbbbfp=7f286bfcb4d8 bln=22 avl=02 flg=05
 value=1
 Bind#3
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfcb4f0 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.26.261113000 PM -05:00
 Bind#4
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=40
 kxsbbbfp=7f286bfcb500 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.26.261113000 PM -05:00
 Bind#5
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bc20874 bln=32 avl=06 flg=09
 value="U.ORDS"
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=112 off=0
 kxsbbbfp=7f286bfcb450 bln=22 avl=02 flg=05
 value=6
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfcb468 bln=22 avl=01 flg=01
 value=0
 Bind#8
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfcb480 bln=08 avl=08 flg=01
 value=0D
 Bind#9
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=56
 kxsbbbfp=7f286bfcb488 bln=08 avl=08 flg=01
 value=0D
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=64
 kxsbbbfp=7f286bfcb490 bln=22 avl=01 flg=01
 value=0
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286bfcb4a8 bln=22 avl=02 flg=01
 value=2
 Bind#12
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bfcb408 bln=22 avl=01 flg=05
 value=0
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfcb420 bln=22 avl=04 flg=01
 value=93046
EXEC #139811592690400:c=1000,e=2000,p=0,cr=0,cu=12,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339419707
CLOSE #139811592690400:c=0,e=0,dep=1,type=3,tim=3200339419707
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba39f40 bln=22 avl=05 flg=05
 value=8917507
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339419707
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339419707
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339419707
=====================
PARSING IN CURSOR #139811585461376 len=1522 dep=1 uid=0 oct=3 lid=0 tim=3200339419707 hv=606033729 ad='815ed818' sqlid='4dj64s4k1ypu1'
SELECT /*+ leading(u o) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ O.OBJ# POBJN, NVL(IP.PART#, ICP.PART#) PN, O.SUBNAME PNAME, NVL(IP.ANALYZETIME, ICP.ANALYZETIME) LAST_ANALYZED, NVL(IP.FLAGS, ICP.FLAGS) FLAGS, :B4 REASON FROM SYS.USER$ U, SYS.OBJ$ O, SYS.INDPART$ IP, SYS.INDCOMPART$ ICP WHERE :B3 IS NULL AND U.NAME = :B2 AND O.OWNER# = U.USER# AND O.NAME = :B1 AND O.NAMESPACE = 4 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.TYPE# = 20 AND O.OBJ# = IP.OBJ#(+) AND O.OBJ# = ICP.OBJ#(+) UNION ALL SELECT * FROM ( SELECT /*+ leading(u o) */ O.OBJ# POBJN, NVL(IP.PART#, ICP.PART#) PN, O.SUBNAME PNAME, NVL(IP.ANALYZETIME,ICP.ANALYZETIME) LAST_ANALYZED, NVL(IP.FLAGS, ICP.FLAGS) FLAGS, :B4 REASON FROM SYS.USER$ U, SYS.OBJ$ O, SYS.INDPART$ IP, SYS.INDCOMPART$ ICP WHERE U.NAME = :B2 AND O.OWNER# = U.USER# AND O.NAME = :B1 AND O.NAMESPACE = 4 AND O.REMOTEOWNER IS NULL AND O.LINKNAME IS NULL AND O.SUBNAME = :B3 AND O.TYPE# = 20 AND O.OBJ# = IP.OBJ#(+) AND O.OBJ# = ICP.OBJ#(+) UNION ALL SELECT /*+ leading(u osp isp op) */ OP.OBJ# POBJN, ICP.PART# PN, OP.SUBNAME PNAME, ICP.ANALYZETIME LAST_ANALYZED, ICP.FLAGS FLAGS, :B4 REASON FROM SYS.USER$ U, SYS.OBJ$ OSP, SYS.INDSUBPART$ ISP, SYS.OBJ$ OP, SYS.INDCOMPART$ ICP WHERE U.NAME = :B2 AND OSP.OWNER# = U.USER# AND OSP.NAME = :B1 AND OSP.NAMESPACE = 4 AND OSP.REMOTEOWNER IS NULL AND OSP.LINKNAME IS NULL AND OSP.SUBNAME = :B3 AND OSP.TYPE# = 35 AND OSP.OBJ# = ISP.OBJ# AND OP.OBJ# = ISP.POBJ# AND OP.OBJ# = ICP.OBJ# ) WHERE ROWNUM < 2
END OF STMT
PARSE #139811585461376:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339419707
BINDS #139811585461376:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=1224 off=0
 kxsbbbfp=7f286ba39a90 bln=22 avl=02 flg=05
 value=64
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286ba39aa8 bln=128 avl=00 flg=01
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=152
 kxsbbbfp=7f286ba39b28 bln=128 avl=01 flg=01
 value="U"
 Bind#3
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=280
 kxsbbbfp=7f286ba39ba8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=408
 kxsbbbfp=7f286ba39c28 bln=22 avl=02 flg=01
 value=64
 Bind#5
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=432
 kxsbbbfp=7f286ba39c40 bln=128 avl=01 flg=01
 value="U"
 Bind#6
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=560
 kxsbbbfp=7f286ba39cc0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#7
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=688
 kxsbbbfp=7f286ba39d40 bln=128 avl=00 flg=01
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=816
 kxsbbbfp=7f286ba39dc0 bln=22 avl=02 flg=01
 value=64
 Bind#9
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=840
 kxsbbbfp=7f286ba39dd8 bln=128 avl=01 flg=01
 value="U"
 Bind#10
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=968
 kxsbbbfp=7f286ba39e58 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#11
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1096
 kxsbbbfp=7f286ba39ed8 bln=128 avl=00 flg=01
EXEC #139811585461376:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339420707
FETCH #139811585461376:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339420707
STAT #139811585461376 id=1 cnt=0 pid=0 pos=1 obj=0 op='UNION-ALL (cr=9 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585461376 id=2 cnt=0 pid=1 pos=1 obj=0 op='FILTER (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585461376 id=3 cnt=0 pid=2 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=5 pr=0 pw=0 str=1 time=0 us cost=4 size=199 card=1)'
STAT #139811585461376 id=4 cnt=0 pid=3 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=177 card=1)'
STAT #139811585461376 id=5 cnt=0 pid=4 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811585461376 id=6 cnt=1 pid=5 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811585461376 id=7 cnt=1 pid=6 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=8 cnt=0 pid=5 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=111 card=1)'
STAT #139811585461376 id=9 cnt=0 pid=4 pos=2 obj=822 op='TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=48 card=1)'
STAT #139811585461376 id=10 cnt=0 pid=9 pos=1 obj=826 op='INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=11 cnt=0 pid=3 pos=2 obj=800 op='TABLE ACCESS BY INDEX ROWID INDPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=22 card=1)'
STAT #139811585461376 id=12 cnt=0 pid=11 pos=1 obj=804 op='INDEX UNIQUE SCAN I_INDPART_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=13 cnt=0 pid=1 pos=2 obj=0 op='COUNT STOPKEY (cr=4 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585461376 id=14 cnt=0 pid=13 pos=1 obj=0 op='VIEW (cr=4 pr=0 pw=0 str=1 time=0 us cost=6 size=254 card=2)'
STAT #139811585461376 id=15 cnt=0 pid=14 pos=1 obj=0 op='UNION-ALL (cr=4 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585461376 id=16 cnt=0 pid=15 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=2 pr=0 pw=0 str=1 time=0 us cost=3 size=199 card=1)'
STAT #139811585461376 id=17 cnt=0 pid=16 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=177 card=1)'
STAT #139811585461376 id=18 cnt=0 pid=17 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=129 card=1)'
STAT #139811585461376 id=19 cnt=1 pid=18 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811585461376 id=20 cnt=1 pid=19 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=21 cnt=0 pid=18 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 str=1 time=0 us cost=1 size=111 card=1)'
STAT #139811585461376 id=22 cnt=0 pid=17 pos=2 obj=822 op='TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=48 card=1)'
STAT #139811585461376 id=23 cnt=0 pid=22 pos=1 obj=826 op='INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=24 cnt=0 pid=16 pos=2 obj=800 op='TABLE ACCESS BY INDEX ROWID INDPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=22 card=1)'
STAT #139811585461376 id=25 cnt=0 pid=24 pos=1 obj=804 op='INDEX UNIQUE SCAN I_INDPART_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=26 cnt=0 pid=15 pos=2 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=3 size=210 card=1)'
STAT #139811585461376 id=27 cnt=0 pid=26 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=3 size=210 card=1)'
STAT #139811585461376 id=28 cnt=0 pid=27 pos=1 obj=0 op='HASH JOIN (cr=2 pr=0 pw=0 str=1 time=0 us cost=3 size=162 card=1)'
STAT #139811585461376 id=29 cnt=0 pid=28 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=3 size=162 card=1)'
STAT #139811585461376 id=30 cnt=0 pid=29 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585461376 id=31 cnt=0 pid=30 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=155 card=1)'
STAT #139811585461376 id=32 cnt=0 pid=31 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=129 card=1)'
STAT #139811585461376 id=33 cnt=1 pid=32 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811585461376 id=34 cnt=1 pid=33 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=35 cnt=0 pid=32 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=0 pr=0 pw=0 str=1 time=0 us cost=1 size=111 card=1)'
STAT #139811585461376 id=36 cnt=0 pid=31 pos=2 obj=812 op='TABLE ACCESS BY INDEX ROWID INDSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=26 card=1)'
STAT #139811585461376 id=37 cnt=0 pid=36 pos=1 obj=816 op='INDEX UNIQUE SCAN I_INDSUBPART_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=38 cnt=0 pid=29 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=7 card=1)'
STAT #139811585461376 id=39 cnt=0 pid=38 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585461376 id=40 cnt=0 pid=28 pos=2 obj=40 op='INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=7 card=1)'
STAT #139811585461376 id=41 cnt=0 pid=27 pos=2 obj=826 op='INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585461376 id=42 cnt=0 pid=26 pos=2 obj=822 op='TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=48 card=1)'
CLOSE #139811585461376:c=0,e=0,dep=1,type=1,tim=3200339423706
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba39e58 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba39ed8 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339423706
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339423706
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339423706
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286ba39dd8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba39e58 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba39ed8 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339424706
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339424706
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339424706
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba39ed8 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339424706
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339424706
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339424706
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba39e58 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba39ed8 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339424706
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339424706
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339425706
=====================
PARSING IN CURSOR #139811585443608 len=610 dep=1 uid=0 oct=3 lid=0 tim=3200339425706 hv=2301314695 ad='81606bf8' sqlid='76rz8vf4kqjn7'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ :B2 FROM DUAL WHERE :B1 IS NULL UNION ALL SELECT TP.OBJ# FROM SYS.TABPART$ TP, SYS.INDPART$ IP WHERE TP.BO# = :B2 AND IP.PART# = TP.PART# AND IP.OBJ# = :B1 UNION ALL SELECT TP.OBJ# FROM SYS.TABCOMPART$ TP, SYS.INDCOMPART$ IP WHERE TP.BO# = :B2 AND IP.PART# = TP.PART# AND IP.OBJ# = :B1 UNION ALL SELECT TSP.OBJ# FROM SYS.TABSUBPART$ TSP, SYS.TABCOMPART$ TCP, SYS.INDSUBPART$ ISP, SYS.INDCOMPART$ ICP WHERE TCP.BO# = :B2 AND TSP.POBJ# = TCP.OBJ# AND ISP.SUBPART# = TSP.SUBPART# AND ICP.PART# = TCP.PART# AND ISP.POBJ# = ICP.OBJ# AND ISP.OBJ# = :B1 
END OF STMT
PARSE #139811585443608:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4116228867,tim=3200339425706
BINDS #139811585443608:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=192 off=0
 kxsbbbfp=7f286b574918 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286b574930 bln=22 avl=00 flg=01
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286b574948 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286b574960 bln=22 avl=00 flg=01
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286b574978 bln=22 avl=04 flg=01
 value=93045
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286b574990 bln=22 avl=00 flg=01
 Bind#6
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286b5749a8 bln=22 avl=04 flg=01
 value=93045
 Bind#7
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286b5749c0 bln=22 avl=00 flg=01
EXEC #139811585443608:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4116228867,tim=3200339425706
FETCH #139811585443608:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=4116228867,tim=3200339425706
STAT #139811585443608 id=1 cnt=1 pid=0 pos=1 obj=0 op='UNION-ALL (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585443608 id=2 cnt=1 pid=1 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585443608 id=3 cnt=1 pid=2 pos=1 obj=0 op='FAST DUAL (cr=0 pr=0 pw=0 str=1 time=0 us cost=2 size=0 card=1)'
STAT #139811585443608 id=4 cnt=0 pid=1 pos=2 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=1 time=0 us cost=2 size=25 card=1)'
STAT #139811585443608 id=5 cnt=0 pid=4 pos=1 obj=800 op='TABLE ACCESS BY INDEX ROWID INDPART$ (cr=0 pr=0 pw=0 str=1 time=0 us cost=1 size=10 card=1)'
STAT #139811585443608 id=6 cnt=0 pid=5 pos=1 obj=804 op='INDEX UNIQUE SCAN I_INDPART_OBJ$ (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585443608 id=7 cnt=0 pid=4 pos=2 obj=795 op='TABLE ACCESS BY INDEX ROWID TABPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=15 card=1)'
STAT #139811585443608 id=8 cnt=0 pid=7 pos=1 obj=798 op='INDEX UNIQUE SCAN I_TABPART_BOPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585443608 id=9 cnt=0 pid=1 pos=3 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=39 card=1)'
STAT #139811585443608 id=10 cnt=0 pid=9 pos=1 obj=822 op='TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=26 card=1)'
STAT #139811585443608 id=11 cnt=0 pid=10 pos=1 obj=826 op='INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585443608 id=12 cnt=0 pid=9 pos=2 obj=817 op='TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=13 card=1)'
STAT #139811585443608 id=13 cnt=0 pid=12 pos=1 obj=820 op='INDEX UNIQUE SCAN I_TABCOMPART_BOPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585443608 id=14 cnt=0 pid=1 pos=4 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=1 time=0 us cost=1 size=91 card=1)'
STAT #139811585443608 id=15 cnt=0 pid=14 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=78 card=1)'
STAT #139811585443608 id=16 cnt=0 pid=15 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=65 card=1)'
STAT #139811585443608 id=17 cnt=0 pid=16 pos=1 obj=812 op='TABLE ACCESS BY INDEX ROWID INDSUBPART$ (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=39 card=1)'
STAT #139811585443608 id=18 cnt=0 pid=17 pos=1 obj=816 op='INDEX UNIQUE SCAN I_INDSUBPART_OBJ$ (cr=0 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585443608 id=19 cnt=0 pid=16 pos=2 obj=822 op='TABLE ACCESS BY INDEX ROWID INDCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=26 card=1)'
STAT #139811585443608 id=20 cnt=0 pid=19 pos=1 obj=826 op='INDEX UNIQUE SCAN I_INDCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585443608 id=21 cnt=0 pid=15 pos=2 obj=817 op='TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=13 card=1)'
STAT #139811585443608 id=22 cnt=0 pid=21 pos=1 obj=820 op='INDEX UNIQUE SCAN I_TABCOMPART_BOPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585443608 id=23 cnt=0 pid=14 pos=2 obj=807 op='TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=13 card=1)'
STAT #139811585443608 id=24 cnt=0 pid=23 pos=1 obj=810 op='INDEX UNIQUE SCAN I_TABSUBPART_POBJSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
CLOSE #139811585443608:c=0,e=0,dep=1,type=3,tim=3200339427706
=====================
PARSING IN CURSOR #139811585442016 len=299 dep=1 uid=0 oct=3 lid=0 tim=3200339427706 hv=3437603731 ad='816067c8' sqlid='4g6pp0b6fbawm'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ ROWCNT, BLKCNT, ANALYZETIME FROM SYS.TAB$ WHERE OBJ# = :B2 AND BITAND(FLAGS, 16) != 0 AND :B1 = 'n' UNION ALL SELECT ROWCNT_KXTTST_TS, BLKCNT_KXTTST_TS, ANALYZETIME_KXTTST_TS FROM SYS.X$KXTTSTETS WHERE OBJ#_KXTTST_TS = :B2 AND :B1 = 'y'
END OF STMT
PARSE #139811585442016:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1130498780,tim=3200339427706
BINDS #139811585442016:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be2bf58 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bf2e518 bln=32 avl=01 flg=09
 value="n"
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be2bf28 bln=22 avl=04 flg=05
 value=93045
 Bind#3
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bf2e518 bln=32 avl=01 flg=09
 value="n"
EXEC #139811585442016:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1130498780,tim=3200339427706
FETCH #139811585442016:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1130498780,tim=3200339427706
STAT #139811585442016 id=1 cnt=1 pid=0 pos=1 obj=0 op='UNION-ALL (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585442016 id=2 cnt=1 pid=1 pos=1 obj=0 op='FILTER (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585442016 id=3 cnt=1 pid=2 pos=1 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=24 card=1)'
STAT #139811585442016 id=4 cnt=1 pid=3 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811585442016 id=5 cnt=0 pid=1 pos=2 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585442016 id=6 cnt=0 pid=5 pos=1 obj=0 op='FIXED TABLE FIXED INDEX X$KXTTSTETS (ind:1) (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=48 card=1)'
CLOSE #139811585442016:c=0,e=0,dep=1,type=3,tim=3200339427706
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b5749c0 bln=22 avl=05 flg=05
 value=16726844
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339427706
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339428706
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339428706
=====================
PARSING IN CURSOR #139811576300680 len=109 dep=1 uid=0 oct=3 lid=0 tim=3200339428706 hv=2610707087 ad='8161a5b8' sqlid='azfvzhkdtsfng'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ COUNT(*) FROM SYS.FIXED_OBJ$ WHERE OBJ# = :B1 
END OF STMT
PARSE #139811576300680:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=358207273,tim=3200339428706
BINDS #139811576300680:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be2bf58 bln=22 avl=04 flg=05
 value=93045
EXEC #139811576300680:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=358207273,tim=3200339428706
FETCH #139811576300680:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=1,dep=1,og=1,plh=358207273,tim=3200339428706
STAT #139811576300680 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811576300680 id=2 cnt=0 pid=1 pos=1 obj=72 op='INDEX UNIQUE SCAN I_FIXED_OBJ$_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=7 card=1)'
CLOSE #139811576300680:c=0,e=0,dep=1,type=3,tim=3200339428706
=====================
PARSING IN CURSOR #139811585440288 len=156 dep=1 uid=0 oct=3 lid=0 tim=3200339428706 hv=3793585038 ad='815e9578' sqlid='b8zju7mj1v0wf'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ T.PROPERTY FROM SYS.OBJ$ O, SYS.TAB$ T WHERE O.OBJ# = :B1 AND O.TYPE# = 2 AND O.OBJ# = T.OBJ#
END OF STMT
PARSE #139811585440288:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3704755223,tim=3200339428706
BINDS #139811585440288:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba39f40 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585440288:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3704755223,tim=3200339428706
FETCH #139811585440288:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=3704755223,tim=3200339428706
STAT #139811585440288 id=1 cnt=1 pid=0 pos=1 obj=0 op='MERGE JOIN CARTESIAN (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=21 card=1)'
STAT #139811585440288 id=2 cnt=1 pid=1 pos=1 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=12 card=1)'
STAT #139811585440288 id=3 cnt=1 pid=2 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811585440288 id=4 cnt=1 pid=1 pos=2 obj=0 op='BUFFER SORT (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=9 card=1)'
STAT #139811585440288 id=5 cnt=1 pid=4 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=9 card=1)'
CLOSE #139811585440288:c=0,e=0,dep=1,type=3,tim=3200339429706
=====================
PARSING IN CURSOR #139811581303304 len=759 dep=1 uid=0 oct=3 lid=0 tim=3200339429706 hv=1549335558 ad='81619d58' sqlid='54bagkdf5jz06'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ SUM(REASON) FROM (SELECT OBJ#, CASE WHEN BITAND(FLAGS, 16) != 16 THEN :B3 ELSE :B2 END REASON FROM SYS.TAB$ WHERE OBJ# = :B1 AND (BITAND(FLAGS,16) != 16 OR SAMPLESIZE <> ROWCNT) UNION ALL SELECT OBJ#, CASE WHEN BITAND(FLAGS, 2) != 2 THEN :B3 ELSE :B2 END REASON FROM SYS.TABPART$ WHERE OBJ# = :B1 AND (BITAND(FLAGS,2) != 2 OR SAMPLESIZE <> ROWCNT) UNION ALL SELECT OBJ#, CASE WHEN BITAND(FLAGS, 2) != 2 THEN :B3 ELSE :B2 END REASON FROM SYS.TABCOMPART$ T WHERE OBJ# = :B1 AND (BITAND(FLAGS,2) != 2 OR SAMPLESIZE <> ROWCNT) UNION ALL SELECT OBJ#, CASE WHEN BITAND(FLAGS, 2) != 2 THEN :B3 ELSE :B2 END REASON FROM SYS.TABSUBPART$ WHERE OBJ# = :B1 AND (BITAND(FLAGS,2) != 2) OR SAMPLESIZE <> ROWCNT)
END OF STMT
PARSE #139811581303304:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=305735784,tim=3200339429706
BINDS #139811581303304:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=288 off=0
 kxsbbbfp=7f286ba393d8 bln=22 avl=02 flg=05
 value=16
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286ba393f0 bln=22 avl=03 flg=01
 value=512
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286ba39408 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286ba39420 bln=22 avl=02 flg=01
 value=16
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286ba39438 bln=22 avl=03 flg=01
 value=512
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286ba39450 bln=22 avl=04 flg=01
 value=93045
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286ba39468 bln=22 avl=02 flg=01
 value=16
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286ba39480 bln=22 avl=03 flg=01
 value=512
 Bind#8
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286ba39498 bln=22 avl=04 flg=01
 value=93045
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286ba394b0 bln=22 avl=02 flg=01
 value=16
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286ba394c8 bln=22 avl=03 flg=01
 value=512
 Bind#11
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=264
 kxsbbbfp=7f286ba394e0 bln=22 avl=04 flg=01
 value=93045
EXEC #139811581303304:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=305735784,tim=3200339430706
FETCH #139811581303304:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=1,dep=1,og=1,plh=305735784,tim=3200339430706
STAT #139811581303304 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=9 pr=0 pw=0 str=1 time=0 us)'
STAT #139811581303304 id=2 cnt=0 pid=1 pos=1 obj=0 op='VIEW (cr=9 pr=0 pw=0 str=1 time=0 us cost=7 size=52 card=4)'
STAT #139811581303304 id=3 cnt=0 pid=2 pos=1 obj=0 op='UNION-ALL (cr=9 pr=0 pw=0 str=1 time=0 us)'
STAT #139811581303304 id=4 cnt=0 pid=3 pos=1 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=16 card=1)'
STAT #139811581303304 id=5 cnt=1 pid=4 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811581303304 id=6 cnt=0 pid=3 pos=2 obj=795 op='TABLE ACCESS BY INDEX ROWID TABPART$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=16 card=1)'
STAT #139811581303304 id=7 cnt=0 pid=6 pos=1 obj=799 op='INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811581303304 id=8 cnt=0 pid=3 pos=3 obj=817 op='TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=23 card=1)'
STAT #139811581303304 id=9 cnt=0 pid=8 pos=1 obj=821 op='INDEX UNIQUE SCAN I_TABCOMPART$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811581303304 id=10 cnt=0 pid=3 pos=4 obj=807 op='TABLE ACCESS FULL TABSUBPART$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=34 card=1)'
CLOSE #139811581303304:c=0,e=0,dep=1,type=3,tim=3200339430706
BINDS #139811583170840:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=152 off=0
 kxsbbbfp=7f286ba38448 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=128(52) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286ba38460 bln=128 avl=13 flg=01
 value="STALE_PERCENT"
EXEC #139811583170840:c=1000,e=999,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339431705
FETCH #139811583170840:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339431705
CLOSE #139811583170840:c=0,e=0,dep=1,type=3,tim=3200339431705
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(52) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba38460 bln=128 avl=13 flg=05
 value="STALE_PERCENT"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339431705
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339431705
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339431705
=====================
PARSING IN CURSOR #139811581300648 len=535 dep=1 uid=0 oct=3 lid=0 tim=3200339431705 hv=1036561841 ad='81619828' sqlid='0ks4u5nywjbdj'
SELECT /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ COUNT(*) FROM MON_MODS_ALL$ M, (SELECT ROWCNT, OBJ# BO# FROM TAB$ WHERE OBJ# = :B1 UNION ALL SELECT ROWCNT, BO# BO# FROM TABPART$ WHERE OBJ# = :B1 UNION ALL SELECT ROWCNT, BO# BO# FROM TABCOMPART$ WHERE OBJ# = :B1 UNION ALL SELECT T.ROWCNT, TCP.BO# BO# FROM TABSUBPART$ T, TABCOMPART$ TCP WHERE T.OBJ# = :B1 AND T.POBJ# = TCP.OBJ#) V WHERE M.OBJ# = :B1 AND (BITAND(M.FLAGS,:B3 ) = :B3 OR M.INSERTS+M.UPDATES+M.DELETES > :B2 /100 * NVL(V.ROWCNT, 0) OR M.DROP_SEGMENTS > 0 )
END OF STMT
PARSE #139811581300648:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1017082981,tim=3200339431705
BINDS #139811581300648:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=168 off=0
 kxsbbbfp=7f286ba38ad0 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286ba38ae8 bln=22 avl=04 flg=01
 value=93045
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286ba38b00 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286ba38b18 bln=22 avl=04 flg=01
 value=93045
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286ba38b30 bln=22 avl=04 flg=01
 value=93045
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286ba38b48 bln=22 avl=02 flg=01
 value=1
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286ba38b60 bln=22 avl=02 flg=01
 value=1
 Bind#7
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bbb6318 bln=22 avl=02 flg=09
 value=10
EXEC #139811581300648:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1017082981,tim=3200339431705
FETCH #139811581300648:c=1000,e=1000,p=0,cr=1,cu=0,mis=0,r=1,dep=1,og=1,plh=1017082981,tim=3200339432705
STAT #139811581300648 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811581300648 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=7 size=34 card=1)'
STAT #139811581300648 id=3 cnt=0 pid=2 pos=1 obj=660 op='TABLE ACCESS BY INDEX ROWID MON_MODS_ALL$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=21 card=1)'
STAT #139811581300648 id=4 cnt=0 pid=3 pos=1 obj=661 op='INDEX UNIQUE SCAN I_MON_MODS_ALL$_OBJ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811581300648 id=5 cnt=0 pid=2 pos=2 obj=0 op='VIEW (cr=0 pr=0 pw=0 str=0 time=0 us cost=6 size=13 card=1)'
STAT #139811581300648 id=6 cnt=0 pid=5 pos=1 obj=0 op='UNION-ALL (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811581300648 id=7 cnt=0 pid=6 pos=1 obj=4 op='TABLE ACCESS CLUSTER TAB$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=8 card=1)'
STAT #139811581300648 id=8 cnt=0 pid=7 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811581300648 id=9 cnt=0 pid=6 pos=2 obj=795 op='TABLE ACCESS BY INDEX ROWID TABPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=9 card=1)'
STAT #139811581300648 id=10 cnt=0 pid=9 pos=1 obj=799 op='INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811581300648 id=11 cnt=0 pid=6 pos=3 obj=817 op='TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=7 card=1)'
STAT #139811581300648 id=12 cnt=0 pid=11 pos=1 obj=821 op='INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811581300648 id=13 cnt=0 pid=6 pos=4 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=28 card=1)'
STAT #139811581300648 id=14 cnt=0 pid=13 pos=1 obj=807 op='TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=23 card=1)'
STAT #139811581300648 id=15 cnt=0 pid=14 pos=1 obj=811 op='INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811581300648 id=16 cnt=0 pid=13 pos=2 obj=821 op='INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=5 card=1)'
CLOSE #139811581300648:c=0,e=0,dep=1,type=3,tim=3200339432705
=====================
PARSING IN CURSOR #139811585621896 len=171 dep=1 uid=0 oct=3 lid=0 tim=3200339432705 hv=862702515 ad='789d70e0' sqlid='38243c4tqrkxm'
select u.name, o.name, o.namespace, o.type#, decode(bitand(i.property,1024),0,0,1), o.obj# from ind$ i,obj$ o,user$ u where i.obj#=:1 and o.obj#=i.bo# and o.owner#=u.user#
END OF STMT
PARSE #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339432705
BINDS #139811585621896:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38b60 bln=22 avl=04 flg=05
 value=93046
EXEC #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339433705
FETCH #139811585621896:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3848648847,tim=3200339433705
STAT #139811585621896 id=1 cnt=1 pid=0 pos=1 obj=0 op='HASH JOIN (cr=8 pr=0 pw=0 str=1 time=0 us cost=5 size=83 card=1)'
STAT #139811585621896 id=2 cnt=1 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=8 pr=0 pw=0 str=1 time=0 us cost=5 size=83 card=1)'
STAT #139811585621896 id=3 cnt=1 pid=2 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=6 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585621896 id=4 cnt=1 pid=3 pos=1 obj=0 op='NESTED LOOPS (cr=6 pr=0 pw=0 str=1 time=0 us cost=4 size=65 card=1)'
STAT #139811585621896 id=5 cnt=1 pid=4 pos=1 obj=19 op='TABLE ACCESS BY INDEX ROWID IND$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=14 card=1)'
STAT #139811585621896 id=6 cnt=1 pid=5 pos=1 obj=41 op='INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811585621896 id=7 cnt=1 pid=4 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=51 card=1)'
STAT #139811585621896 id=8 cnt=1 pid=7 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811585621896 id=9 cnt=1 pid=2 pos=2 obj=22 op='TABLE ACCESS CLUSTER USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811585621896 id=10 cnt=1 pid=9 pos=1 obj=11 op='INDEX UNIQUE SCAN I_USER# (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585621896 id=11 cnt=0 pid=1 pos=2 obj=22 op='TABLE ACCESS FULL USER$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=18 card=1)'
CLOSE #139811585621896:c=0,e=0,dep=1,type=1,tim=3200339433705
=====================
PARSING IN CURSOR #139811585513096 len=689 dep=1 uid=0 oct=3 lid=0 tim=3200339434705 hv=687577172 ad='817c5ce0' sqlid='5p1kuxnngr62n'
SELECT /*+ all_rows 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ C.NAME ICNAME,IC.POS# ICPOS,IC.SPARE1 ICFLAGS, C.PROPERTY ICPROP, CASE WHEN C.DEFLENGTH <= 32767 THEN C.DEFAULT$ ELSE NULL END ICEXPR, C.DEFLENGTH ICELEN FROM ICOL$ IC,COL$ C WHERE (:B2 IS NULL) AND IC.OBJ#=:B1 AND IC.BO#=C.OBJ# AND IC.INTCOL# = C.INTCOL# UNION ALL SELECT '"'||BO.NAME||'"."'||C.NAME||'"' ICNAME, IC.POS# ICPOS,IC.SPARE1 ICFLAGS, C.PROPERTY ICPROP, CASE WHEN C.DEFLENGTH <= 32767 THEN C.DEFAULT$ ELSE NULL END ICEXPR, C.DEFLENGTH ICELEN FROM ICOL$ IC,COL$ C, OBJ$ BO WHERE (:B2 IS NOT NULL) AND IC.OBJ#=:B1 AND IC.BO#=C.OBJ# AND IC.BO#=BO.OBJ# AND IC.SPARE2 = C.INTCOL# ORDER BY ICPOS
END OF STMT
PARSE #139811585513096:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1773246836,tim=3200339434705
BINDS #139811585513096:

Bind#0
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=112 off=0
 kxsbbbfp=7f286ba38b08 bln=32 avl=00 flg=05
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=32
 kxsbbbfp=7f286ba38b28 bln=22 avl=04 flg=01
 value=93046
 Bind#2
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=56
 kxsbbbfp=7f286ba38b40 bln=32 avl=00 flg=01
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286ba38b60 bln=22 avl=04 flg=01
 value=93046
EXEC #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1773246836,tim=3200339434705
WAIT #139811584786576: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339434705
FETCH #139811585513096:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=1773246836,tim=3200339434705
STAT #139811585513096 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT ORDER BY (cr=5 pr=0 pw=0 str=1 time=0 us cost=8 size=185 card=3)'
STAT #139811585513096 id=2 cnt=1 pid=1 pos=1 obj=0 op='UNION-ALL (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585513096 id=3 cnt=1 pid=2 pos=1 obj=0 op='FILTER (cr=5 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585513096 id=4 cnt=1 pid=3 pos=1 obj=0 op='HASH JOIN (cr=5 pr=0 pw=0 str=1 time=0 us cost=4 size=98 card=2)'
STAT #139811585513096 id=5 cnt=1 pid=4 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=4 size=98 card=2)'
STAT #139811585513096 id=6 cnt=1 pid=5 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585513096 id=7 cnt=1 pid=6 pos=1 obj=20 op='TABLE ACCESS BY INDEX ROWID BATCHED ICOL$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=40 card=2)'
STAT #139811585513096 id=8 cnt=1 pid=7 pos=1 obj=42 op='INDEX RANGE SCAN I_ICOL1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=2)'
STAT #139811585513096 id=9 cnt=1 pid=5 pos=2 obj=21 op='TABLE ACCESS CLUSTER COL$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=29 card=1)'
STAT #139811585513096 id=10 cnt=0 pid=4 pos=2 obj=21 op='TABLE ACCESS FULL COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=29 card=1)'
STAT #139811585513096 id=11 cnt=0 pid=2 pos=2 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585513096 id=12 cnt=0 pid=11 pos=1 obj=0 op='HASH JOIN (cr=0 pr=0 pw=0 str=0 time=0 us cost=4 size=87 card=1)'
STAT #139811585513096 id=13 cnt=0 pid=12 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=4 size=87 card=1)'
STAT #139811585513096 id=14 cnt=0 pid=13 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=4 size=87 card=1)'
STAT #139811585513096 id=15 cnt=0 pid=14 pos=1 obj=0 op='STATISTICS COLLECTOR (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585513096 id=16 cnt=0 pid=15 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=47 card=1)'
STAT #139811585513096 id=17 cnt=0 pid=16 pos=1 obj=20 op='TABLE ACCESS BY INDEX ROWID BATCHED ICOL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=36 card=2)'
STAT #139811585513096 id=18 cnt=0 pid=17 pos=1 obj=42 op='INDEX RANGE SCAN I_ICOL1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=2)'
STAT #139811585513096 id=19 cnt=0 pid=16 pos=2 obj=21 op='TABLE ACCESS BY INDEX ROWID COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=29 card=1)'
STAT #139811585513096 id=20 cnt=0 pid=19 pos=1 obj=50 op='INDEX UNIQUE SCAN I_COL3 (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585513096 id=21 cnt=0 pid=14 pos=2 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585513096 id=22 cnt=0 pid=13 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=40 card=1)'
STAT #139811585513096 id=23 cnt=0 pid=12 pos=2 obj=40 op='INDEX FAST FULL SCAN I_OBJ5 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=40 card=1)'
CLOSE #139811585513096:c=0,e=0,dep=1,type=3,tim=3200339435705
=====================
PARSING IN CURSOR #139811585520112 len=6655 dep=1 uid=0 oct=3 lid=0 tim=3200339435705 hv=2123136645 ad='8161fd18' sqlid='4bugmu5z8szn5'
SELECT /*+ ordered push_pred(v) 
 OPT_PARAM('_parallel_syspls_obey_force' 'false') */ U.NAME, OT.NAME, DECODE(OT.TYPE#, 34, V.COMPART, OT.SUBNAME) PART, DECODE(OT.TYPE#, 34, OT.SUBNAME, NULL) SPART, V.COL, V.GLOB_ST, V.USER_ST, V.DIST, V.DENS, V.SDIST, V.SSIZE, V.NCNT, V.TSTAMP, V.CLEN, V.MINVAL, V.MAXVAL, V.NMIN, V.NMAX, V.DMIN, V.DMAX, V.CCNT, V.BVAL, V.EVAL, V.EAVAL, V.HISTFLG, V.RPCNT, V.FLAGS FROM SYS.USER$ U, SYS.OBJ$ OT, (SELECT /*+ no_or_expand ordered push_pred(hg) */ C.OBJ# OBJ#, 2 TYPE#, NULL COMPART, C.NAME COL, BITAND(H.SPARE2_KXTTST_CS, 2) GLOB_ST, BITAND(H.SPARE2_KXTTST_CS, 1) USER_ST, H.DISTCNT_KXTTST_CS DIST, H.DENSITY_KXTTST_CS DENS, H.SPARE1_KXTTST_CS SDIST, H.SAMPLE_SIZE_KXTTST_CS SSIZE, H.NULL_CNT_KXTTST_CS NCNT, H.TIMESTAMP#_KXTTST_CS TSTAMP, H.AVGCLN_KXTTST_CS CLEN, H.LOWVAL_KXTTST_CS MINVAL, H.HIVAL_KXTTST_CS MAXVAL, H.MINIMUM_KXTTST_CS NMIN, H.MAXIMUM_KXTTST_CS NMAX, NULL DMIN, NULL DMAX, H.CACHE_CNT_KXTTST_CS CCNT, HG.BUCKET_KXTTST_HS BVAL, HG.ENDPOINT_KXTTST_HS EVAL, HG.EPVALUE_RAW_KXTTST_HS EAVAL, BITAND(H.SPARE2_KXTTST_CS, 4) + DECODE(BITAND(H.SPARE2_KXTTST_CS, 16), 0, 0, 1024) + DECODE(BITAND(H.SPARE2_KXTTST_CS, 32), 0, 0, 4096) + DECODE(BITAND(H.SPARE2_KXTTST_CS, 64), 0, 0, 8192) + DECODE(BITAND(H.SPARE2_KXTTST_CS, 128), 0, 0, 16384) + 2048 HISTFLG, HG.EP_REPEAT_COUNT_KXTTST_HS RPCNT, NULL FLAGS FROM SYS.COL$ C, SYS.X$KXTTSTECS H, (SELECT * FROM SYS.X$KXTTSTEHS WHERE :B1 = 'y') HG WHERE :B4 IS NULL AND (:B3 IS NULL OR C.NAME = :B3 ) AND H.OBJ#_KXTTST_CS = C.OBJ# AND H.INTCOL#_KXTTST_CS = C.INTCOL# AND HG.OBJ#_KXTTST_HS(+) = H.OBJ#_KXTTST_CS AND HG.INTCOL#_KXTTST_HS(+) = H.INTCOL#_KXTTST_CS AND :B2 = 'y' UNION ALL SELECT /*+ no_or_expand ordered push_pred(hg) */ C.OBJ# OBJ#, 2 TYPE#, NULL COMPART, C.NAME, BITAND(H.SPARE2, 2) + DECODE(BITAND(H.SPARE2, 8), 0, 0, 128) + DECODE(BITAND(H.SPARE2, 256), 0, 0, 65536) + DECODE(BITAND(H.SPARE2, 512), 0, 0, 131072), BITAND(H.SPARE2, 1 ), H.DISTCNT, H.DENSITY, H.SPARE1, H.SAMPLE_SIZE, H.NULL_CNT, H.TIMESTAMP#, H.AVGCLN, H.LOWVAL, H.HIVAL, H.MINIMUM, H.MAXIMUM, NULL, NULL, H.CACHE_CNT, HG.BUCKET, HG.ENDPOINT, CASE WHEN HG.EPVALUE IS NOT NULL THEN UTL_RAW.CAST_TO_RAW(HG.EPVALUE) ELSE HG.EPVALUE_RAW END EPVALUE_RAW, BITAND(H.SPARE2, 4) + DECODE(BITAND(H.SPARE2, 16), 0, 0, 1024) + DECODE(BITAND(H.SPARE2, 32), 0, 0, 4096) + DECODE(BITAND(H.SPARE2, 64), 0, 0, 8192) + DECODE(BITAND(H.SPARE2, 128), 0, 0, 16384) , HG.EP_REPEAT_COUNT, NULL FROM SYS.COL$ C, SYS. "_HIST_HEAD_DEC" H, (SELECT * FROM SYS. "_HISTGRM_DEC" WHERE :B1 = 'y') HG WHERE :B4 IS NULL AND (:B3 IS NULL OR C.NAME = :B3 ) AND C.OBJ# = H.OBJ# AND C.INTCOL# = H.INTCOL# AND H.OBJ# = HG.OBJ#(+) AND H.INTCOL# = HG.INTCOL#(+) AND :B2 = 'n' UNION ALL SELECT /*+ no_or_expand ordered push_pred(hg) */ TP.OBJ# OBJ#, 19 TYPE#, NULL COMPART, C.NAME, BITAND(H.SPARE2, 2) + DECODE(BITAND(H.SPARE2, 8), 0, 0, 128) + DECODE(BITAND(H.SPARE2, 256), 0, 0, 65536) + DECODE(BITAND(H.SPARE2, 512), 0, 0, 131072), BITAND(H.SPARE2, 1 ), H.DISTCNT, H.DENSITY, H.SPARE1, H.SAMPLE_SIZE, H.NULL_CNT, H.TIMESTAMP#, H.AVGCLN, H.LOWVAL, H.HIVAL, H.MINIMUM, H.MAXIMUM, NULL, NULL, H.CACHE_CNT, HG.BUCKET, HG.ENDPOINT, CASE WHEN HG.EPVALUE IS NOT NULL THEN UTL_RAW.CAST_TO_RAW(HG.EPVALUE) ELSE HG.EPVALUE_RAW END EPVALUE_RAW, BITAND(H.SPARE2, 4) + DECODE(BITAND(H.SPARE2, 16), 0, 0, 1024) + DECODE(BITAND(H.SPARE2, 32), 0, 0, 4096) + DECODE(BITAND(H.SPARE2, 64), 0, 0, 8192) + DECODE(BITAND(H.SPARE2, 128), 0, 0, 16384) , HG.EP_REPEAT_COUNT, NULL FROM SYS.TABPART$ TP, SYS.OBJ$ OP, SYS.COL$ C, SYS. "_HIST_HEAD_DEC" H, (SELECT * FROM SYS. "_HISTGRM_DEC" WHERE :B1 = 'y') HG WHERE TP.OBJ# = OP.OBJ# AND ((:B4 IS NULL AND :B5 IS NOT NULL) OR OP.SUBNAME = :B4 ) AND TP.BO# = C.OBJ# AND (:B3 IS NULL OR C.NAME = :B3 ) AND TP.OBJ# = H.OBJ# AND C.INTCOL# = H.INTCOL# AND H.OBJ# = HG.OBJ#(+) AND H.INTCOL# = HG.INTCOL#(+) AND :B2 = 'n' UNION ALL SELECT /*+ no_or_expand ordered push_pred(hg) */ TP.OBJ# OBJ#, 19 TYPE#, NULL COMPART, C.NAME, BITAND(H.SPARE2, 2) + DECODE(BITAND(H.SPARE2, 8), 0, 0, 128) + DECODE(BITAND(H.SPARE2, 256), 0, 0, 65536) + DECODE(BITAND(H.SPARE2, 512), 0, 0, 131072), BITAND(H.SPARE2, 1 ), H.DISTCNT, H.DENSITY, H.SPARE1, H.SAMPLE_SIZE, H.NULL_CNT, H.TIMESTAMP#, H.AVGCLN, H.LOWVAL, H.HIVAL, H.MINIMUM, H.MAXIMUM, NULL, NULL, H.CACHE_CNT, HG.BUCKET, HG.ENDPOINT, CASE WHEN HG.EPVALUE IS NOT NULL THEN UTL_RAW.CAST_TO_RAW(HG.EPVALUE) ELSE HG.EPVALUE_RAW END EPVALUE_RAW, BITAND(H.SPARE2, 4) + DECODE(BITAND(H.SPARE2, 16), 0, 0, 1024) + DECODE(BITAND(H.SPARE2, 32), 0, 0, 4096) + DECODE(BITAND(H.SPARE2, 64), 0, 0, 8192) + DECODE(BITAND(H.SPARE2, 128), 0, 0, 16384) , HG.EP_REPEAT_COUNT, NULL FROM SYS.TABCOMPART$ TP, SYS.OBJ$ OP, SYS.COL$ C, SYS. "_HIST_HEAD_DEC" H, (SELECT * FROM SYS. "_HISTGRM_DEC" WHERE :B1 = 'y') HG WHERE TP.OBJ# = OP.OBJ# AND ((:B4 IS NULL AND :B5 IS NOT NULL) OR OP.SUBNAME = :B4 ) AND C.OBJ# = TP.BO# AND (:B3 IS NULL OR C.NAME = :B3 ) AND H.OBJ# = OP.OBJ# AND H.INTCOL# = C.INTCOL# AND HG.OBJ#(+) = H.OBJ# AND HG.INTCOL#(+) = H.INTCOL# AND :B2 = 'n' UNION ALL SELECT /*+ no_or_expand ordered push_pred(hg) */ TS.OBJ# OBJ#, 34 TYPE#, OP.SUBNAME COMPART, C.NAME, BITAND(H.SPARE2, 2) + DECODE(BITAND(H.SPARE2, 8), 0, 0, 128) + DECODE(BITAND(H.SPARE2, 256), 0, 0, 65536) + DECODE(BITAND(H.SPARE2, 512), 0, 0, 131072), BITAND(H.SPARE2, 1 ), H.DISTCNT, H.DENSITY, H.SPARE1, H.SAMPLE_SIZE, H.NULL_CNT, H.TIMESTAMP#, H.AVGCLN, H.LOWVAL, H.HIVAL, H.MINIMUM, H.MAXIMUM, NULL, NULL, H.CACHE_CNT, HG.BUCKET, HG.ENDPOINT, CASE WHEN HG.EPVALUE IS NOT NULL THEN UTL_RAW.CAST_TO_RAW(HG.EPVALUE) ELSE HG.EPVALUE_RAW END EPVALUE_RAW, BITAND(H.SPARE2, 4) + DECODE(BITAND(H.SPARE2, 16), 0, 0, 1024) + DECODE(BITAND(H.SPARE2, 32), 0, 0, 4096) + DECODE(BITAND(H.SPARE2, 64), 0, 0, 8192) + DECODE(BITAND(H.SPARE2, 128), 0, 0, 16384) , HG.EP_REPEAT_COUNT, NULL FROM SYS.TABSUBPART$ TS, SYS.OBJ$ OS, SYS.TABCOMPART$ TP, SYS.OBJ$ OP, SYS.COL$ C, SYS. "_HIST_HEAD_DEC" H, (SELECT * FROM SYS. "_HISTGRM_DEC" WHERE :B1 = 'y') HG WHERE TS.OBJ# = OS.OBJ# AND TS.POBJ# = TP.OBJ# AND TP.OBJ# = OP.OBJ# AND ((:B4 IS NULL AND :B5 IS NOT NULL) OR (OP.SUBNAME = :B4 AND :B5 IS NOT NULL) OR OS.SUBNAME = :B4 ) AND C.OBJ# = TP.BO# AND (:B3 IS NULL OR C.NAME = :B3 ) AND H.OBJ# = TS.OBJ# AND H.INTCOL# = C.INTCOL# AND HG.OBJ#(+) = H.OBJ# AND HG.INTCOL#(+) = H.INTCOL# AND :B2 = 'n') V WHERE U.NAME = :B7 AND U.USER# = OT.OWNER# AND OT.NAME = :B6 AND OT.NAMESPACE = 1 AND OT.REMOTEOWNER IS NULL AND OT.LINKNAME IS NULL AND (:B5 IS NOT NULL OR SYS_OP_MAP_NONNULL(OT.SUBNAME) = SYS_OP_MAP_NONNULL(:B4 )) AND OT.TYPE# IN (2, 19, 34) AND OT.OBJ# = V.OBJ# AND OT.TYPE# = V.TYPE# ORDER BY 1,2,3,4,5,22
END OF STMT
PARSE #139811585520112:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=546928428,tim=3200339435705
BINDS #139811585520112:

Bind#0
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=2336 off=0
 kxsbbbfp=7f286b7f8478 bln=32 avl=01 flg=05
 value="n"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=32
 kxsbbbfp=7f286b7f8498 bln=128 avl=00 flg=01
 Bind#2
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=160
 kxsbbbfp=7f286b7f8518 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#3
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=192
 kxsbbbfp=7f286b7f8538 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#4
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=224
 kxsbbbfp=7f286b7f8558 bln=32 avl=01 flg=01
 value="n"
 Bind#5
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b7f8578 bln=32 avl=01 flg=01
 value="n"
 Bind#6
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286b7f8598 bln=128 avl=00 flg=01
 Bind#7
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=416
 kxsbbbfp=7f286b7f8618 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#8
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=448
 kxsbbbfp=7f286b7f8638 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#9
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=480
 kxsbbbfp=7f286b7f8658 bln=32 avl=01 flg=01
 value="n"
 Bind#10
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=512
 kxsbbbfp=7f286b7f8678 bln=32 avl=01 flg=01
 value="n"
 Bind#11
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=544
 kxsbbbfp=7f286b7f8698 bln=128 avl=00 flg=01
 Bind#12
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=672
 kxsbbbfp=7f286b7f8718 bln=32 avl=00 flg=01
 Bind#13
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=704
 kxsbbbfp=7f286b7f8738 bln=128 avl=00 flg=01
 Bind#14
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=832
 kxsbbbfp=7f286b7f87b8 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#15
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=864
 kxsbbbfp=7f286b7f87d8 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#16
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=896
 kxsbbbfp=7f286b7f87f8 bln=32 avl=01 flg=01
 value="n"
 Bind#17
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=928
 kxsbbbfp=7f286b7f8818 bln=32 avl=01 flg=01
 value="n"
 Bind#18
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=960
 kxsbbbfp=7f286b7f8838 bln=128 avl=00 flg=01
 Bind#19
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1088
 kxsbbbfp=7f286b7f88b8 bln=32 avl=00 flg=01
 Bind#20
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1120
 kxsbbbfp=7f286b7f88d8 bln=128 avl=00 flg=01
 Bind#21
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1248
 kxsbbbfp=7f286b7f8958 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#22
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1280
 kxsbbbfp=7f286b7f8978 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#23
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1312
 kxsbbbfp=7f286b7f8998 bln=32 avl=01 flg=01
 value="n"
 Bind#24
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1344
 kxsbbbfp=7f286b7f89b8 bln=32 avl=01 flg=01
 value="n"
 Bind#25
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1376
 kxsbbbfp=7f286b7f89d8 bln=128 avl=00 flg=01
 Bind#26
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1504
 kxsbbbfp=7f286b7f8a58 bln=32 avl=00 flg=01
 Bind#27
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1536
 kxsbbbfp=7f286b7f8a78 bln=128 avl=00 flg=01
 Bind#28
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1664
 kxsbbbfp=7f286b7f8af8 bln=32 avl=00 flg=01
 Bind#29
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1696
 kxsbbbfp=7f286b7f8b18 bln=128 avl=00 flg=01
 Bind#30
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1824
 kxsbbbfp=7f286b7f8b98 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#31
 oacdty=01 mxl=32(05) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1856
 kxsbbbfp=7f286b7f8bb8 bln=32 avl=05 flg=01
 value="ORDID"
 Bind#32
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1888
 kxsbbbfp=7f286b7f8bd8 bln=32 avl=01 flg=01
 value="n"
 Bind#33
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1920
 kxsbbbfp=7f286b7f8bf8 bln=128 avl=01 flg=01
 value="U"
 Bind#34
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2048
 kxsbbbfp=7f286b7f8c78 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#35
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2176
 kxsbbbfp=7f286b7f8cf8 bln=32 avl=00 flg=01
 Bind#36
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2208
 kxsbbbfp=7f286b7f8d18 bln=128 avl=00 flg=01
EXEC #139811585520112:c=1999,e=2000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=546928428,tim=3200339437705
FETCH #139811585520112:c=0,e=0,p=0,cr=15,cu=0,mis=0,r=1,dep=1,og=1,plh=546928428,tim=3200339437705
STAT #139811585520112 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT ORDER BY (cr=15 pr=0 pw=0 str=1 time=0 us cost=40 size=3485 card=1)'
STAT #139811585520112 id=2 cnt=1 pid=1 pos=1 obj=0 op='NESTED LOOPS (cr=15 pr=0 pw=0 str=1 time=0 us cost=39 size=3485 card=1)'
STAT #139811585520112 id=3 cnt=1 pid=2 pos=1 obj=0 op='NESTED LOOPS (cr=5 pr=0 pw=0 str=1 time=0 us cost=3 size=129 card=1)'
STAT #139811585520112 id=4 cnt=1 pid=3 pos=1 obj=22 op='TABLE ACCESS BY INDEX ROWID USER$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811585520112 id=5 cnt=1 pid=4 pos=1 obj=46 op='INDEX UNIQUE SCAN I_USER1 (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585520112 id=6 cnt=1 pid=3 pos=2 obj=37 op='INDEX RANGE SCAN I_OBJ2 (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=111 card=1)'
STAT #139811585520112 id=7 cnt=1 pid=2 pos=2 obj=0 op='VIEW (cr=10 pr=0 pw=0 str=1 time=0 us cost=36 size=3356 card=1)'
STAT #139811585520112 id=8 cnt=1 pid=7 pos=1 obj=0 op='UNION ALL PUSHED PREDICATE (cr=10 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585520112 id=9 cnt=0 pid=8 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585520112 id=10 cnt=0 pid=9 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=331 card=1)'
STAT #139811585520112 id=11 cnt=0 pid=10 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=254 card=1)'
STAT #139811585520112 id=12 cnt=0 pid=11 pos=1 obj=21 op='TABLE ACCESS CLUSTER COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=21 card=1)'
STAT #139811585520112 id=13 cnt=0 pid=12 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=14 cnt=0 pid=11 pos=2 obj=0 op='FIXED TABLE FIXED INDEX X$KXTTSTECS (ind:1) (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=233 card=1)'
STAT #139811585520112 id=15 cnt=0 pid=10 pos=2 obj=0 op='VIEW PUSHED PREDICATE (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=77 card=1)'
STAT #139811585520112 id=16 cnt=0 pid=15 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585520112 id=17 cnt=0 pid=16 pos=1 obj=0 op='FIXED TABLE FIXED INDEX X$KXTTSTEHS (ind:1) (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=99 card=1)'
STAT #139811585520112 id=18 cnt=1 pid=8 pos=2 obj=0 op='FILTER (cr=6 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585520112 id=19 cnt=1 pid=18 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=6 pr=0 pw=0 str=1 time=0 us cost=6 size=53460 card=33)'
STAT #139811585520112 id=20 cnt=1 pid=19 pos=1 obj=0 op='NESTED LOOPS (cr=6 pr=0 pw=0 str=1 time=0 us cost=4 size=73 card=1)'
STAT #139811585520112 id=21 cnt=1 pid=20 pos=1 obj=21 op='TABLE ACCESS CLUSTER COL$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=21 card=1)'
STAT #139811585520112 id=22 cnt=1 pid=21 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=23 cnt=1 pid=20 pos=2 obj=68 op='TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=52 card=1)'
STAT #139811585520112 id=24 cnt=1 pid=23 pos=1 obj=70 op='INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=25 cnt=0 pid=19 pos=2 obj=0 op='VIEW PUSHED PREDICATE (cr=0 pr=0 pw=0 str=1 time=0 us cost=2 size=1547 card=1)'
STAT #139811585520112 id=26 cnt=0 pid=25 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585520112 id=27 cnt=0 pid=26 pos=1 obj=66 op='TABLE ACCESS CLUSTER HISTGRM$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=99 card=3)'
STAT #139811585520112 id=28 cnt=0 pid=27 pos=1 obj=65 op='INDEX UNIQUE SCAN I_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=29 cnt=0 pid=8 pos=3 obj=0 op='FILTER (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585520112 id=30 cnt=0 pid=29 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=2 pr=0 pw=0 str=1 time=0 us cost=9 size=1637 card=1)'
STAT #139811585520112 id=31 cnt=0 pid=30 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=7 size=90 card=1)'
STAT #139811585520112 id=32 cnt=0 pid=31 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=5 size=38 card=1)'
STAT #139811585520112 id=33 cnt=0 pid=32 pos=1 obj=0 op='NESTED LOOPS (cr=2 pr=0 pw=0 str=1 time=0 us cost=4 size=17 card=1)'
STAT #139811585520112 id=34 cnt=0 pid=33 pos=1 obj=795 op='TABLE ACCESS BY INDEX ROWID TABPART$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=2 size=10 card=1)'
STAT #139811585520112 id=35 cnt=0 pid=34 pos=1 obj=799 op='INDEX UNIQUE SCAN I_TABPART_OBJ$ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=36 cnt=0 pid=33 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=7 card=1)'
STAT #139811585520112 id=37 cnt=0 pid=36 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=38 cnt=0 pid=32 pos=2 obj=21 op='TABLE ACCESS CLUSTER COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=21 card=1)'
STAT #139811585520112 id=39 cnt=0 pid=38 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585520112 id=40 cnt=0 pid=31 pos=2 obj=68 op='TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=52 card=1)'
STAT #139811585520112 id=41 cnt=0 pid=40 pos=1 obj=70 op='INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=42 cnt=0 pid=30 pos=2 obj=0 op='VIEW PUSHED PREDICATE (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=1547 card=1)'
STAT #139811585520112 id=43 cnt=0 pid=42 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585520112 id=44 cnt=0 pid=43 pos=1 obj=66 op='TABLE ACCESS CLUSTER HISTGRM$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=99 card=3)'
STAT #139811585520112 id=45 cnt=0 pid=44 pos=1 obj=65 op='INDEX UNIQUE SCAN I_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=46 cnt=0 pid=8 pos=4 obj=0 op='FILTER (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585520112 id=47 cnt=0 pid=46 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=1 pr=0 pw=0 str=1 time=0 us cost=8 size=1637 card=1)'
STAT #139811585520112 id=48 cnt=0 pid=47 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=6 size=90 card=1)'
STAT #139811585520112 id=49 cnt=0 pid=48 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=4 size=38 card=1)'
STAT #139811585520112 id=50 cnt=0 pid=49 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=3 size=17 card=1)'
STAT #139811585520112 id=51 cnt=0 pid=50 pos=1 obj=817 op='TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=10 card=1)'
STAT #139811585520112 id=52 cnt=0 pid=51 pos=1 obj=821 op='INDEX UNIQUE SCAN I_TABCOMPART$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585520112 id=53 cnt=0 pid=50 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=7 card=1)'
STAT #139811585520112 id=54 cnt=0 pid=53 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=55 cnt=0 pid=49 pos=2 obj=21 op='TABLE ACCESS CLUSTER COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=21 card=1)'
STAT #139811585520112 id=56 cnt=0 pid=55 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585520112 id=57 cnt=0 pid=48 pos=2 obj=68 op='TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=52 card=1)'
STAT #139811585520112 id=58 cnt=0 pid=57 pos=1 obj=70 op='INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=59 cnt=0 pid=47 pos=2 obj=0 op='VIEW PUSHED PREDICATE (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=1547 card=1)'
STAT #139811585520112 id=60 cnt=0 pid=59 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585520112 id=61 cnt=0 pid=60 pos=1 obj=66 op='TABLE ACCESS CLUSTER HISTGRM$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=99 card=3)'
STAT #139811585520112 id=62 cnt=0 pid=61 pos=1 obj=65 op='INDEX UNIQUE SCAN I_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=63 cnt=0 pid=8 pos=5 obj=0 op='FILTER (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811585520112 id=64 cnt=0 pid=63 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=1 pr=0 pw=0 str=1 time=0 us cost=11 size=1654 card=1)'
STAT #139811585520112 id=65 cnt=0 pid=64 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=9 size=107 card=1)'
STAT #139811585520112 id=66 cnt=0 pid=65 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=7 size=55 card=1)'
STAT #139811585520112 id=67 cnt=0 pid=66 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=6 size=34 card=1)'
STAT #139811585520112 id=68 cnt=0 pid=67 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=4 size=27 card=1)'
STAT #139811585520112 id=69 cnt=0 pid=68 pos=1 obj=0 op='NESTED LOOPS (cr=1 pr=0 pw=0 str=1 time=0 us cost=3 size=17 card=1)'
STAT #139811585520112 id=70 cnt=0 pid=69 pos=1 obj=807 op='TABLE ACCESS BY INDEX ROWID TABSUBPART$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=10 card=1)'
STAT #139811585520112 id=71 cnt=0 pid=70 pos=1 obj=811 op='INDEX UNIQUE SCAN I_TABSUBPART$_OBJ$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811585520112 id=72 cnt=0 pid=69 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=7 card=1)'
STAT #139811585520112 id=73 cnt=0 pid=72 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=74 cnt=0 pid=68 pos=2 obj=817 op='TABLE ACCESS BY INDEX ROWID TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=10 card=1)'
STAT #139811585520112 id=75 cnt=0 pid=74 pos=1 obj=821 op='INDEX UNIQUE SCAN I_TABCOMPART$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585520112 id=76 cnt=0 pid=67 pos=2 obj=18 op='TABLE ACCESS BY INDEX ROWID BATCHED OBJ$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=7 card=1)'
STAT #139811585520112 id=77 cnt=0 pid=76 pos=1 obj=36 op='INDEX RANGE SCAN I_OBJ1 (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=78 cnt=0 pid=66 pos=2 obj=21 op='TABLE ACCESS CLUSTER COL$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=21 card=1)'
STAT #139811585520112 id=79 cnt=0 pid=78 pos=1 obj=3 op='INDEX UNIQUE SCAN I_OBJ# (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811585520112 id=80 cnt=0 pid=65 pos=2 obj=68 op='TABLE ACCESS BY INDEX ROWID BATCHED HIST_HEAD$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=52 card=1)'
STAT #139811585520112 id=81 cnt=0 pid=80 pos=1 obj=70 op='INDEX RANGE SCAN I_HH_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
STAT #139811585520112 id=82 cnt=0 pid=64 pos=2 obj=0 op='VIEW PUSHED PREDICATE (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=1547 card=1)'
STAT #139811585520112 id=83 cnt=0 pid=82 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811585520112 id=84 cnt=0 pid=83 pos=1 obj=66 op='TABLE ACCESS CLUSTER HISTGRM$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=99 card=3)'
STAT #139811585520112 id=85 cnt=0 pid=84 pos=1 obj=65 op='INDEX UNIQUE SCAN I_OBJ#_INTCOL# (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=0 card=1)'
CLOSE #139811585520112:c=0,e=0,dep=1,type=1,tim=3200339442704
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37b48 bln=22 avl=04 flg=05
 value=6163600
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339442704
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339442704
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339442704
BINDS #139811585513096:

Bind#0
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=112 off=0
 kxsbbbfp=7f286ba37af0 bln=32 avl=00 flg=05
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=32
 kxsbbbfp=7f286ba37b10 bln=22 avl=04 flg=01
 value=93046
 Bind#2
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=56
 kxsbbbfp=7f286ba37b28 bln=32 avl=00 flg=01
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286ba37b48 bln=22 avl=04 flg=01
 value=93046
EXEC #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1773246836,tim=3200339442704
FETCH #139811585513096:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=1773246836,tim=3200339442704
CLOSE #139811585513096:c=0,e=0,dep=1,type=3,tim=3200339442704
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339443704
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339443704
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339443704
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339443704
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339443704
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339443704
BINDS #139811587214928:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=304 off=0
 kxsbbbfp=7f286ba37a30 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37ab0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286ba37b30 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=280
 kxsbbbfp=7f286ba37b48 bln=22 avl=02 flg=01
 value=2
EXEC #139811587214928:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339443704
FETCH #139811587214928:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=4066817437,tim=3200339443704
CLOSE #139811587214928:c=0,e=0,dep=1,type=3,tim=3200339443704
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286ba379e0 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37a60 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba37ae0 bln=128 avl=19 flg=01
 value="TABLE_CACHED_BLOCKS"
EXEC #139811585036504:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339444704
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339444704
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339444704
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37ae0 bln=128 avl=19 flg=05
 value="TABLE_CACHED_BLOCKS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339444704
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339444704
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339444704
WAIT #139811585518728: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339445704
=====================
PARSING IN CURSOR #139811585518728 len=412 dep=1 uid=114 oct=3 lid=114 tim=3200339446704 hv=4132020475 ad='734e72b0' sqlid='7s8xajzv4m87v'
select /*+ no_parallel_index(t, "ORDS") dbms_stats cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) no_monitoring xmlindex_sel_idx_tbl opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad no_expand index(t,"ORDS") */ count(*) as nrw,count(distinct sys_op_lbid(93046,'L',t.rowid)) as nlb,null as ndk,sys_op_countchg(substrb(t.rowid,1,15),1) as clf from "U"."ORDS" t where "ORDID" is not null
END OF STMT
PARSE #139811585518728:c=1999,e=2000,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=1,plh=1555459389,tim=3200339446704
EXEC #139811585518728:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1555459389,tim=3200339446704
FETCH #139811585518728:c=6999,e=6999,p=0,cr=21,cu=0,mis=0,r=1,dep=1,og=1,plh=1555459389,tim=3200339453703
STAT #139811585518728 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT GROUP BY (cr=21 pr=0 pw=0 str=1 time=6999 us)'
STAT #139811585518728 id=2 cnt=10000 pid=1 pos=1 obj=93046 op='INDEX FULL SCAN ORDS (cr=21 pr=0 pw=0 str=1 time=0 us cost=21 size=120000 card=10000)'
CLOSE #139811585518728:c=0,e=0,dep=1,type=3,tim=3200339454703
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37b48 bln=22 avl=05 flg=05
 value=5099019
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339454703
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339454703
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339454703
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339454703
XCTEND rlbk=0, rd_only=1, tim=3200339454703
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339454703
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339454703
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba37a60 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37ae0 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339454703
FETCH #139811576305848:c=1000,e=1000,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339455703
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339455703
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339455703
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339455703
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339455703
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339455703
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339455703
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339455703
BINDS #139811587214928:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=304 off=0
 kxsbbbfp=7f286ba37a30 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37ab0 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286ba37b30 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=280
 kxsbbbfp=7f286ba37b48 bln=22 avl=02 flg=01
 value=2
EXEC #139811587214928:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339455703
FETCH #139811587214928:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=4066817437,tim=3200339455703
CLOSE #139811587214928:c=0,e=0,dep=1,type=3,tim=3200339455703
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286ba379e0 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37a60 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba37ae0 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=1000,e=999,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339456702
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339456702
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339456702
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37ae0 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339456702
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339456702
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339456702
CLOSE #139811583547104:c=0,e=0,dep=1,type=3,tim=3200339456702
PARSE #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339456702
BINDS #139811583547104:

Bind#0
 oacdty=01 mxl=32(25) mxlc=00 mal=00 scl=00 pre=00
 oacflg=21 fl2=0000 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286be715c0 bln=32 avl=25 flg=05
 value="WAIT_TIME_TO_UPDATE_STATS"
EXEC #139811583547104:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339457702
FETCH #139811583547104:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339457702
PARSE #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339457702
BINDS #139811585621896:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38b60 bln=22 avl=04 flg=05
 value=93046
EXEC #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339457702
FETCH #139811585621896:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3848648847,tim=3200339457702
CLOSE #139811585621896:c=0,e=0,dep=1,type=3,tim=3200339457702
=====================
PARSING IN CURSOR #139811583197744 len=264 dep=1 uid=0 oct=2 lid=0 tim=3200339457702 hv=1572374720 ad='789c35d0' sqlid='9f5qcupfvj260'
insert /* QOSH:SAVE_STAS */ into sys.wri$_optstat_ind_history (obj#,rowcnt,leafcnt,distkey, lblkkey, dblkkey,clufac,blevel,analyzetime,samplesize,guessq,cachedblk, cachehit,logicalread,savtime,flags) values (:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,:16)
END OF STMT
PARSE #139811583197744:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339457702
BINDS #139811583197744:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38b60 bln=22 avl=04 flg=05
 value=93046
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38ad8 bln=24 avl=02 flg=05
 value=10000
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38aa8 bln=24 avl=02 flg=05
 value=20
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38a78 bln=24 avl=02 flg=05
 value=10000
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38a48 bln=24 avl=02 flg=05
 value=1
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38a18 bln=24 avl=02 flg=05
 value=1
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba389e8 bln=24 avl=02 flg=05
 value=31
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba389b8 bln=24 avl=02 flg=05
 value=1
 Bind#8
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=18 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=7f286c8efa2c bln=08 avl=07 flg=09
 value="2/11/2018 14:23:22"
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38988 bln=24 avl=02 flg=05
 value=10000
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38958 bln=24 avl=01 flg=05
 value=0
 Bind#11
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38928 bln=24 avl=00 flg=05
 Bind#12
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba388f8 bln=24 avl=00 flg=05
 Bind#13
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba388c8 bln=24 avl=00 flg=05
 Bind#14
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=08 fl2=9000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=7f286ba38b08 bln=16 avl=13 flg=05
 value=11-FEB-18 02.25.26.301108000 PM -05:00
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba38b30 bln=24 avl=02 flg=05
 value=10
EXEC #139811583197744:c=1000,e=1000,p=0,cr=1,cu=8,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339458702
STAT #139811583197744 id=1 cnt=0 pid=0 pos=1 obj=0 op='LOAD TABLE CONVENTIONAL WRI$_OPTSTAT_IND_HISTORY (cr=1 pr=0 pw=0 str=1 time=0 us)'
CLOSE #139811583197744:c=0,e=0,dep=1,type=1,tim=3200339458702
PARSE #139811585728712:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2453887050,tim=3200339458702
BINDS #139811585728712:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2f40 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585728712:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=2453887050,tim=3200339459702
CLOSE #139811585728712:c=0,e=0,dep=1,type=3,tim=3200339459702
PARSE #139811585714216:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667651180,tim=3200339459702
BINDS #139811585714216:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2de0 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585714216:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=0,dep=1,og=1,plh=2667651180,tim=3200339459702
CLOSE #139811585714216:c=0,e=0,dep=1,type=3,tim=3200339459702
BINDS #139811587211816:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bfd2d98 bln=22 avl=02 flg=05
 value=4
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2db0 bln=22 avl=02 flg=01
 value=7
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2dc8 bln=22 avl=03 flg=01
 value=354
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2de0 bln=22 avl=01 flg=01
 value=0
 Bind#4
 No oacdef for this bind.
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2d68 bln=22 avl=01 flg=05
 value=0
 Bind#6
 No oacdef for this bind.
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
 kxsbbbfp=7f286bfd2d08 bln=22 avl=02 flg=05
 value=3
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2d20 bln=22 avl=02 flg=01
 value=3
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2d38 bln=22 avl=01 flg=01
 value=0
 Bind#10
 No oacdef for this bind.
 Bind#11
 oacdty=01 mxl=128(38) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=6cf1285c bln=128 avl=38 flg=09
 value="--------------------------------------"
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=264 off=0
 kxsbbbfp=7f286bfd2be8 bln=22 avl=06 flg=05
 value=1073742353
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c00 bln=22 avl=02 flg=01
 value=10
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c18 bln=22 avl=02 flg=01
 value=40
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2c30 bln=22 avl=02 flg=01
 value=1
 Bind#16
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2c48 bln=22 avl=03 flg=01
 value=255
 Bind#17
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2c60 bln=22 avl=02 flg=01
 value=10000
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bfd2c78 bln=22 avl=02 flg=01
 value=35
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286bfd2c90 bln=22 avl=01 flg=01
 value=0
 Bind#20
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286bfd2ca8 bln=22 avl=01 flg=01
 value=0
 Bind#21
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286bfd2cc0 bln=22 avl=01 flg=01
 value=0
 Bind#22
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286bfd2cd8 bln=22 avl=02 flg=01
 value=17
 Bind#23
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6cf12960 bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#24
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bfd2b70 bln=22 avl=02 flg=05
 value=10000
 Bind#25
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2b88 bln=22 avl=02 flg=01
 value=3
 Bind#26
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2ba0 bln=22 avl=06 flg=01
 value=536870912
 Bind#27
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2bb8 bln=22 avl=02 flg=01
 value=1
 Bind#28
 No oacdef for this bind.
 Bind#29
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2b40 bln=22 avl=02 flg=05
 value=1
 Bind#30
 No oacdef for this bind.
 Bind#31
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=144 off=0
 kxsbbbfp=7f286bfd2a98 bln=22 avl=04 flg=05
 value=93045
 Bind#32
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2ab0 bln=22 avl=01 flg=01
 value=0
 Bind#33
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2ac8 bln=22 avl=01 flg=01
 value=0
 Bind#34
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2ae0 bln=22 avl=01 flg=01
 value=0
 Bind#35
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2af8 bln=22 avl=03 flg=01
 value=736
 Bind#36
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2b10 bln=22 avl=01 flg=01
 value=0
 Bind#37
 No oacdef for this bind.
 Bind#38
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#39
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6cf129f6 bln=07 avl=07 flg=09
 value="2/11/2018 19:23:5"
 Bind#40
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a68 bln=22 avl=01 flg=05
 value=0
 Bind#41
 No oacdef for this bind.
 Bind#42
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a38 bln=22 avl=01 flg=05
 value=0
 Bind#43
 No oacdef for this bind.
 Bind#44
 oacdty=180 mxl=11(00) mxlc=00 mal=00 scl=09 pre=00
 oacflg=10 fl2=8000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=00000000 bln=11 avl=00 flg=09
 Bind#45
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bfd29f0 bln=22 avl=01 flg=05
 value=0
 Bind#46
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2a08 bln=22 avl=04 flg=01
 value=93045
EXEC #139811587211816:c=1999,e=2000,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2918346288,tim=3200339461702
CLOSE #139811587211816:c=0,e=0,dep=1,type=3,tim=3200339461702
=====================
PARSING IN CURSOR #139811576653664 len=36 dep=1 uid=0 oct=7 lid=0 tim=3200339461702 hv=1784203153 ad='789bf528' sqlid='3axxxnjp5jjwj'
delete from ind_stats$ where obj#=:1
END OF STMT
PARSE #139811576653664:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1596536394,tim=3200339461702
BINDS #139811576653664:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2de0 bln=22 avl=04 flg=05
 value=93046
EXEC #139811576653664:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=1596536394,tim=3200339461702
STAT #139811576653664 id=1 cnt=0 pid=0 pos=1 obj=0 op='DELETE IND_STATS$ (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811576653664 id=2 cnt=0 pid=1 pos=1 obj=76 op='INDEX UNIQUE SCAN I_IND_STATS$_OBJ# (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=13 card=1)'
CLOSE #139811576653664:c=0,e=0,dep=1,type=1,tim=3200339461702
=====================
PARSING IN CURSOR #139811583186984 len=533 dep=1 uid=0 oct=6 lid=0 tim=3200339462702 hv=625199886 ad='789bb280' sqlid='gg8cpx0kn7ksf'
update ind$ set ts#=:2,file#=:3,block#=:4,intcols=:5,type#=:6,flags=:7,property=:8,pctfree$=:9,initrans=:10,maxtrans=:11,blevel=:12,leafcnt=:13,distkey=:14,lblkkey=:15,dblkkey=:16,clufac=:17,cols=:18,analyzetime=:19,samplesize=:20,dataobj#=:21,degree=decode(:22,1,null,:22),instances=decode(:23,1,null,:23),rowcnt=:24,pctthres$=:31*256+:25, indmethod#=:26, trunccnt=:27,evaledition#=decode(:33,1,null,:33),unusablebefore#=decode(:34,0,null,:34),unusablebeginning#=decode(:35,0,null,:35),spare4=:29,spare2=:30,spare6=:32 where obj#=:1
END OF STMT
PARSE #139811583186984:c=999,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,plh=2580332476,tim=3200339462702
BINDS #139811583186984:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=408 off=0
 kxsbbbfp=7f286bfd2c60 bln=22 avl=02 flg=05
 value=4
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c78 bln=22 avl=02 flg=01
 value=7
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c90 bln=22 avl=03 flg=01
 value=394
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2ca8 bln=22 avl=02 flg=01
 value=1
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2cc0 bln=22 avl=02 flg=01
 value=1
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2cd8 bln=22 avl=03 flg=01
 value=2050
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bfd2cf0 bln=22 avl=03 flg=01
 value=4097
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286bfd2d08 bln=22 avl=02 flg=01
 value=10
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286bfd2d20 bln=22 avl=02 flg=01
 value=2
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286bfd2d38 bln=22 avl=03 flg=01
 value=255
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286bfd2d50 bln=22 avl=02 flg=01
 value=1
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=264
 kxsbbbfp=7f286bfd2d68 bln=22 avl=02 flg=01
 value=20
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=288
 kxsbbbfp=7f286bfd2d80 bln=22 avl=02 flg=01
 value=10000
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=312
 kxsbbbfp=7f286bfd2d98 bln=22 avl=02 flg=01
 value=1
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=336
 kxsbbbfp=7f286bfd2db0 bln=22 avl=02 flg=01
 value=1
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=360
 kxsbbbfp=7f286bfd2dc8 bln=22 avl=02 flg=01
 value=31
 Bind#16
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=384
 kxsbbbfp=7f286bfd2de0 bln=22 avl=02 flg=01
 value=1
 Bind#17
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=b3a27910 bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
 kxsbbbfp=7f286bfd2c00 bln=22 avl=02 flg=05
 value=10000
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c18 bln=22 avl=04 flg=01
 value=93046
 Bind#20
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c30 bln=22 avl=02 flg=01
 value=1
 Bind#21
 No oacdef for this bind.
 Bind#22
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2bd0 bln=22 avl=02 flg=05
 value=1
 Bind#23
 No oacdef for this bind.
 Bind#24
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=144 off=0
 kxsbbbfp=7f286bfd2b28 bln=22 avl=02 flg=05
 value=10000
 Bind#25
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2b40 bln=22 avl=00 flg=01
 Bind#26
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2b58 bln=22 avl=00 flg=01
 Bind#27
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2b70 bln=22 avl=01 flg=01
 value=0
 Bind#28
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2b88 bln=22 avl=00 flg=01
 Bind#29
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2ba0 bln=22 avl=01 flg=01
 value=0
 Bind#30
 No oacdef for this bind.
 Bind#31
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2af8 bln=22 avl=01 flg=05
 value=0
 Bind#32
 No oacdef for this bind.
 Bind#33
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2ac8 bln=22 avl=01 flg=05
 value=0
 Bind#34
 No oacdef for this bind.
 Bind#35
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#36
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a98 bln=22 avl=00 flg=05
 Bind#37
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=b3a27ab6 bln=07 avl=07 flg=09
 value="2/11/2018 19:23:6"
 Bind#38
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a68 bln=22 avl=04 flg=05
 value=93046
EXEC #139811583186984:c=1000,e=1000,p=0,cr=2,cu=1,mis=0,r=1,dep=1,og=4,plh=2580332476,tim=3200339463702
STAT #139811583186984 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE IND$ (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583186984 id=2 cnt=1 pid=1 pos=1 obj=41 op='INDEX UNIQUE SCAN I_IND1 (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=90 card=1)'
CLOSE #139811583186984:c=0,e=0,dep=1,type=3,tim=3200339463702
=====================
PARSING IN CURSOR #139811583140072 len=232 dep=1 uid=0 oct=6 lid=0 tim=3200339464701 hv=3103504081 ad='815e6d98' sqlid='0m9b1dywgrdqj'
UPDATE /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ WRI$_OPTSTAT_OPR_TASKS SET STATUS = :B7 , END_TIME = SYSTIMESTAMP, TARGET_SIZE = :B6 , ACTIONS = :B5 , NOTES = :B4 , FLAGS = :B3 WHERE OP_ID = :B2 AND TARGET_OBJN = :B1 
END OF STMT
PARSE #139811583140072:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=938624260,tim=3200339464701
BINDS #139811583140072:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be98760 bln=22 avl=02 flg=09
 value=2
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc920 bln=22 avl=02 flg=09
 value=20
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bf2cb98 bln=22 avl=01 flg=09
 value=0
 Bind#3
 oacdty=01 mxl=128(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=00000000 bln=128 avl=00 flg=09
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc970 bln=22 avl=01 flg=09
 value=0
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc7f0 bln=22 avl=03 flg=09
 value=7327
 Bind#6
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc8f0 bln=22 avl=04 flg=09
 value=93046
EXEC #139811583140072:c=0,e=1000,p=0,cr=2,cu=9,mis=0,r=1,dep=1,og=1,plh=938624260,tim=3200339465701
STAT #139811583140072 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE WRI$_OPTSTAT_OPR_TASKS (cr=2 pr=0 pw=0 str=1 time=1000 us)'
STAT #139811583140072 id=2 cnt=1 pid=1 pos=1 obj=678 op='INDEX RANGE SCAN I_WRI$_OPTSTAT_OPR_TASKS_OPOBJ (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=126 card=1)'
CLOSE #139811583140072:c=0,e=0,dep=1,type=3,tim=3200339465701
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339465701
XCTEND rlbk=0, rd_only=0, tim=3200339465701
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=1,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339465701
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339465701
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339465701
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339465701
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339465701
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339466701
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339466701
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339466701
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba37c38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37cb8 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
EXEC #139811576305848:c=1000,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339466701
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339466701
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339466701
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339467701
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339467701
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339467701
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339467701
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339467701
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339467701
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc036f8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc03778 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339467701
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339467701
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339467701
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba37c38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37cb8 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
EXEC #139811576305848:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339468701
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339468701
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339468701
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339468701
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339468701
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339468701
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339468701
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339468701
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339468701
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc036f8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc03778 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339469701
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339469701
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339469701
BINDS #139811576316184:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=512 off=0
 kxsbbbfp=7f286ba37b38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37bb8 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba37c38 bln=128 avl=01 flg=01
 value="U"
 Bind#3
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=384
 kxsbbbfp=7f286ba37cb8 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
EXEC #139811576316184:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1163018545,tim=3200339469701
FETCH #139811576316184:c=0,e=0,p=0,cr=17,cu=0,mis=0,r=1,dep=1,og=1,plh=1163018545,tim=3200339469701
CLOSE #139811576316184:c=0,e=0,dep=1,type=3,tim=3200339469701
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=999,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339470701
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339470701
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339470701
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339470701
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339470701
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339470701
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=11 flg=01
 value="INCREMENTAL"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339470701
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339470701
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339470701
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=11 flg=05
 value="INCREMENTAL"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339471701
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339471701
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339471701
BINDS #139811576313752:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bc037c8 bln=22 avl=04 flg=05
 value=93047
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc037e0 bln=22 avl=04 flg=01
 value=93047
EXEC #139811576313752:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=444875925,tim=3200339471701
FETCH #139811576313752:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=1,dep=1,og=1,plh=444875925,tim=3200339471701
CLOSE #139811576313752:c=0,e=0,dep=1,type=3,tim=3200339471701
PARSE #139811592690400:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339471701
BINDS #139811592690400:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2f40 bln=22 avl=03 flg=05
 value=7327
 Bind#1
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=56 off=0
 kxsbbbfp=7f286bfd2ef0 bln=22 avl=02 flg=05
 value=1
 Bind#3
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2f08 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.26.315106000 PM -05:00
 Bind#4
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=40
 kxsbbbfp=7f286bfd2f18 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.26.315106000 PM -05:00
 Bind#5
 oacdty=01 mxl=32(14) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bc20864 bln=32 avl=14 flg=09
 value="U.CATEGORY_IDX"
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=112 off=0
 kxsbbbfp=7f286bfd2e68 bln=22 avl=02 flg=05
 value=6
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2e80 bln=22 avl=01 flg=01
 value=0
 Bind#8
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2e98 bln=08 avl=08 flg=01
 value=0D
 Bind#9
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=56
 kxsbbbfp=7f286bfd2ea0 bln=08 avl=08 flg=01
 value=0D
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=64
 kxsbbbfp=7f286bfd2ea8 bln=22 avl=01 flg=01
 value=0
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286bfd2ec0 bln=22 avl=02 flg=01
 value=3
 Bind#12
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bfd2e20 bln=22 avl=01 flg=05
 value=0
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2e38 bln=22 avl=04 flg=01
 value=93047
EXEC #139811592690400:c=1000,e=999,p=0,cr=0,cu=12,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339472700
CLOSE #139811592690400:c=0,e=0,dep=1,type=3,tim=3200339472700
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37d20 bln=22 avl=05 flg=05
 value=8917507
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339473700
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339473700
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339473700
PARSE #139811585461376:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339473700
BINDS #139811585461376:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=1224 off=0
 kxsbbbfp=7f286ba37870 bln=22 avl=02 flg=05
 value=64
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286ba37888 bln=128 avl=00 flg=01
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=152
 kxsbbbfp=7f286ba37908 bln=128 avl=01 flg=01
 value="U"
 Bind#3
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=280
 kxsbbbfp=7f286ba37988 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=408
 kxsbbbfp=7f286ba37a08 bln=22 avl=02 flg=01
 value=64
 Bind#5
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=432
 kxsbbbfp=7f286ba37a20 bln=128 avl=01 flg=01
 value="U"
 Bind#6
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=560
 kxsbbbfp=7f286ba37aa0 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
 Bind#7
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=688
 kxsbbbfp=7f286ba37b20 bln=128 avl=00 flg=01
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=816
 kxsbbbfp=7f286ba37ba0 bln=22 avl=02 flg=01
 value=64
 Bind#9
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=840
 kxsbbbfp=7f286ba37bb8 bln=128 avl=01 flg=01
 value="U"
 Bind#10
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=968
 kxsbbbfp=7f286ba37c38 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
 Bind#11
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1096
 kxsbbbfp=7f286ba37cb8 bln=128 avl=00 flg=01
EXEC #139811585461376:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339474700
FETCH #139811585461376:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339474700
CLOSE #139811585461376:c=0,e=0,dep=1,type=3,tim=3200339474700
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc036f8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc03778 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339474700
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339474700
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339475700
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286ba37bb8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37c38 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba37cb8 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339475700
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339475700
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339475700
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc03778 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339475700
FETCH #139811585569480:c=0,e=1000,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339476700
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339476700
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba37c38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37cb8 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339476700
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339476700
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339476700
BINDS #139811585443608:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=192 off=0
 kxsbbbfp=7f286bc03738 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc03750 bln=22 avl=00 flg=01
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bc03768 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bc03780 bln=22 avl=00 flg=01
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bc03798 bln=22 avl=04 flg=01
 value=93045
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bc037b0 bln=22 avl=00 flg=01
 Bind#6
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bc037c8 bln=22 avl=04 flg=01
 value=93045
 Bind#7
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286bc037e0 bln=22 avl=00 flg=01
EXEC #139811585443608:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4116228867,tim=3200339476700
FETCH #139811585443608:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=4116228867,tim=3200339477700
CLOSE #139811585443608:c=0,e=0,dep=1,type=3,tim=3200339477700
BINDS #139811585442016:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bf2e518 bln=32 avl=01 flg=09
 value="n"
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37cf0 bln=22 avl=04 flg=05
 value=93045
 Bind#3
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bf2e518 bln=32 avl=01 flg=09
 value="n"
EXEC #139811585442016:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1130498780,tim=3200339477700
FETCH #139811585442016:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1130498780,tim=3200339477700
CLOSE #139811585442016:c=0,e=0,dep=1,type=3,tim=3200339477700
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc037e0 bln=22 avl=05 flg=05
 value=16726844
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339477700
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339477700
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339477700
BINDS #139811576300680:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=05
 value=93045
EXEC #139811576300680:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=358207273,tim=3200339477700
FETCH #139811576300680:c=1000,e=1000,p=0,cr=2,cu=0,mis=0,r=1,dep=1,og=1,plh=358207273,tim=3200339478700
CLOSE #139811576300680:c=0,e=0,dep=1,type=3,tim=3200339478700
BINDS #139811585440288:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc037e0 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585440288:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3704755223,tim=3200339478700
FETCH #139811585440288:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=3704755223,tim=3200339478700
CLOSE #139811585440288:c=0,e=0,dep=1,type=3,tim=3200339478700
BINDS #139811581303304:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=288 off=0
 kxsbbbfp=7f286ba37c18 bln=22 avl=02 flg=05
 value=16
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286ba37c30 bln=22 avl=03 flg=01
 value=512
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286ba37c48 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286ba37c60 bln=22 avl=02 flg=01
 value=16
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286ba37c78 bln=22 avl=03 flg=01
 value=512
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286ba37c90 bln=22 avl=04 flg=01
 value=93045
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286ba37ca8 bln=22 avl=02 flg=01
 value=16
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286ba37cc0 bln=22 avl=03 flg=01
 value=512
 Bind#8
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286ba37cd8 bln=22 avl=04 flg=01
 value=93045
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286ba37cf0 bln=22 avl=02 flg=01
 value=16
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286ba37d08 bln=22 avl=03 flg=01
 value=512
 Bind#11
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=264
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=01
 value=93045
EXEC #139811581303304:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=305735784,tim=3200339479700
FETCH #139811581303304:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=1,dep=1,og=1,plh=305735784,tim=3200339479700
CLOSE #139811581303304:c=0,e=0,dep=1,type=3,tim=3200339479700
BINDS #139811583170840:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=152 off=0
 kxsbbbfp=7f286bc03760 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=128(52) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286bc03778 bln=128 avl=13 flg=01
 value="STALE_PERCENT"
EXEC #139811583170840:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339479700
FETCH #139811583170840:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339479700
CLOSE #139811583170840:c=0,e=0,dep=1,type=3,tim=3200339479700
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(52) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=13 flg=05
 value="STALE_PERCENT"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339479700
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339479700
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339479700
BINDS #139811581300648:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=168 off=0
 kxsbbbfp=7f286bc03750 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bc03768 bln=22 avl=04 flg=01
 value=93045
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bc03780 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bc03798 bln=22 avl=04 flg=01
 value=93045
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bc037b0 bln=22 avl=04 flg=01
 value=93045
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bc037c8 bln=22 avl=02 flg=01
 value=1
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bc037e0 bln=22 avl=02 flg=01
 value=1
 Bind#7
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bbb6318 bln=22 avl=02 flg=09
 value=10
EXEC #139811581300648:c=999,e=999,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1017082981,tim=3200339480699
FETCH #139811581300648:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=1,dep=1,og=1,plh=1017082981,tim=3200339480699
CLOSE #139811581300648:c=0,e=0,dep=1,type=3,tim=3200339480699
PARSE #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339480699
BINDS #139811585621896:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc037e0 bln=22 avl=04 flg=05
 value=93047
EXEC #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339480699
FETCH #139811585621896:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3848648847,tim=3200339480699
CLOSE #139811585621896:c=0,e=0,dep=1,type=3,tim=3200339480699
BINDS #139811585513096:

Bind#0
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=112 off=0
 kxsbbbfp=7f286ba37cc8 bln=32 avl=00 flg=05
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=32
 kxsbbbfp=7f286ba37ce8 bln=22 avl=04 flg=01
 value=93047
 Bind#2
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=56
 kxsbbbfp=7f286ba37d00 bln=32 avl=00 flg=01
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=01
 value=93047
EXEC #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1773246836,tim=3200339481699
FETCH #139811585513096:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=1773246836,tim=3200339481699
CLOSE #139811585513096:c=0,e=0,dep=1,type=3,tim=3200339481699
PARSE #139811585520112:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=546928428,tim=3200339481699
BINDS #139811585520112:

Bind#0
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=2336 off=0
 kxsbbbfp=7f286b7f8478 bln=32 avl=01 flg=05
 value="n"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=32
 kxsbbbfp=7f286b7f8498 bln=128 avl=00 flg=01
 Bind#2
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=160
 kxsbbbfp=7f286b7f8518 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#3
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=192
 kxsbbbfp=7f286b7f8538 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#4
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=224
 kxsbbbfp=7f286b7f8558 bln=32 avl=01 flg=01
 value="n"
 Bind#5
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b7f8578 bln=32 avl=01 flg=01
 value="n"
 Bind#6
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286b7f8598 bln=128 avl=00 flg=01
 Bind#7
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=416
 kxsbbbfp=7f286b7f8618 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#8
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=448
 kxsbbbfp=7f286b7f8638 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#9
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=480
 kxsbbbfp=7f286b7f8658 bln=32 avl=01 flg=01
 value="n"
 Bind#10
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=512
 kxsbbbfp=7f286b7f8678 bln=32 avl=01 flg=01
 value="n"
 Bind#11
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=544
 kxsbbbfp=7f286b7f8698 bln=128 avl=00 flg=01
 Bind#12
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=672
 kxsbbbfp=7f286b7f8718 bln=32 avl=00 flg=01
 Bind#13
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=704
 kxsbbbfp=7f286b7f8738 bln=128 avl=00 flg=01
 Bind#14
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=832
 kxsbbbfp=7f286b7f87b8 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#15
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=864
 kxsbbbfp=7f286b7f87d8 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#16
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=896
 kxsbbbfp=7f286b7f87f8 bln=32 avl=01 flg=01
 value="n"
 Bind#17
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=928
 kxsbbbfp=7f286b7f8818 bln=32 avl=01 flg=01
 value="n"
 Bind#18
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=960
 kxsbbbfp=7f286b7f8838 bln=128 avl=00 flg=01
 Bind#19
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1088
 kxsbbbfp=7f286b7f88b8 bln=32 avl=00 flg=01
 Bind#20
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1120
 kxsbbbfp=7f286b7f88d8 bln=128 avl=00 flg=01
 Bind#21
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1248
 kxsbbbfp=7f286b7f8958 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#22
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1280
 kxsbbbfp=7f286b7f8978 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#23
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1312
 kxsbbbfp=7f286b7f8998 bln=32 avl=01 flg=01
 value="n"
 Bind#24
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1344
 kxsbbbfp=7f286b7f89b8 bln=32 avl=01 flg=01
 value="n"
 Bind#25
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1376
 kxsbbbfp=7f286b7f89d8 bln=128 avl=00 flg=01
 Bind#26
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1504
 kxsbbbfp=7f286b7f8a58 bln=32 avl=00 flg=01
 Bind#27
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1536
 kxsbbbfp=7f286b7f8a78 bln=128 avl=00 flg=01
 Bind#28
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1664
 kxsbbbfp=7f286b7f8af8 bln=32 avl=00 flg=01
 Bind#29
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1696
 kxsbbbfp=7f286b7f8b18 bln=128 avl=00 flg=01
 Bind#30
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1824
 kxsbbbfp=7f286b7f8b98 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#31
 oacdty=01 mxl=32(10) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1856
 kxsbbbfp=7f286b7f8bb8 bln=32 avl=10 flg=01
 value="CATEGORYID"
 Bind#32
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1888
 kxsbbbfp=7f286b7f8bd8 bln=32 avl=01 flg=01
 value="n"
 Bind#33
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1920
 kxsbbbfp=7f286b7f8bf8 bln=128 avl=01 flg=01
 value="U"
 Bind#34
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2048
 kxsbbbfp=7f286b7f8c78 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#35
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2176
 kxsbbbfp=7f286b7f8cf8 bln=32 avl=00 flg=01
 Bind#36
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2208
 kxsbbbfp=7f286b7f8d18 bln=128 avl=00 flg=01
EXEC #139811585520112:c=2000,e=2000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=546928428,tim=3200339483699
FETCH #139811585520112:c=0,e=0,p=0,cr=15,cu=0,mis=0,r=1,dep=1,og=1,plh=546928428,tim=3200339483699
CLOSE #139811585520112:c=0,e=0,dep=1,type=3,tim=3200339483699
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bc037e0 bln=22 avl=04 flg=05
 value=6163600
EXEC #139811583407544:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339484699
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339484699
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339484699
BINDS #139811585513096:

Bind#0
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=112 off=0
 kxsbbbfp=7f286ba37cc8 bln=32 avl=00 flg=05
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=32
 kxsbbbfp=7f286ba37ce8 bln=22 avl=04 flg=01
 value=93047
 Bind#2
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=56
 kxsbbbfp=7f286ba37d00 bln=32 avl=00 flg=01
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=01
 value=93047
EXEC #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1773246836,tim=3200339484699
FETCH #139811585513096:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=1773246836,tim=3200339484699
CLOSE #139811585513096:c=0,e=0,dep=1,type=3,tim=3200339484699
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339484699
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339484699
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339485699
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339485699
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339485699
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339485699
BINDS #139811587214928:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=304 off=0
 kxsbbbfp=7f286bc036c8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc03748 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286bc037c8 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=280
 kxsbbbfp=7f286bc037e0 bln=22 avl=02 flg=01
 value=2
EXEC #139811587214928:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339485699
FETCH #139811587214928:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=4066817437,tim=3200339485699
CLOSE #139811587214928:c=0,e=0,dep=1,type=3,tim=3200339485699
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286ba37bb8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37c38 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba37cb8 bln=128 avl=19 flg=01
 value="TABLE_CACHED_BLOCKS"
EXEC #139811585036504:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339486699
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339486699
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339486699
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bc03778 bln=128 avl=19 flg=05
 value="TABLE_CACHED_BLOCKS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339486699
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339486699
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339486699
WAIT #139811581305144: nam='PGA memory operation' ela= 0 p1=65536 p2=1 p3=0 obj#=-1 tim=3200339487699
=====================
PARSING IN CURSOR #139811581305144 len=433 dep=1 uid=114 oct=3 lid=114 tim=3200339488698 hv=3559830279 ad='783e3830' sqlid='42c7pbza2xcs7'
select /*+ no_parallel_index(t, "CATEGORY_IDX") dbms_stats cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) no_monitoring xmlindex_sel_idx_tbl opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad no_expand index(t,"CATEGORY_IDX") */ count(*) as nrw,count(distinct sys_op_lbid(93047,'L',t.rowid)) as nlb,null as ndk,sys_op_countchg(substrb(t.rowid,1,15),1) as clf from "U"."ORDS" t where "CATEGORYID" is not null
END OF STMT
PARSE #139811581305144:c=1999,e=1999,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=1,plh=922533501,tim=3200339488698
EXEC #139811581305144:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=922533501,tim=3200339489698
FETCH #139811581305144:c=8998,e=8999,p=0,cr=22,cu=0,mis=0,r=1,dep=1,og=1,plh=922533501,tim=3200339498697
STAT #139811581305144 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT GROUP BY (cr=22 pr=0 pw=0 str=1 time=8999 us)'
STAT #139811581305144 id=2 cnt=10000 pid=1 pos=1 obj=93047 op='INDEX FULL SCAN CATEGORY_IDX (cr=22 pr=0 pw=0 str=1 time=0 us cost=22 size=120000 card=10000)'
CLOSE #139811581305144:c=0,e=0,dep=1,type=3,tim=3200339498697
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37d20 bln=22 avl=05 flg=05
 value=5099019
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339498697
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339499697
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339499697
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339499697
XCTEND rlbk=0, rd_only=1, tim=3200339499697
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339499697
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339499697
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286bc036f8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc03778 bln=128 avl=12 flg=01
 value="CATEGORY_IDX"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339499697
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339499697
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339500697
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339500697
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339500697
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339500697
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339500697
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339500697
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339500697
BINDS #139811587214928:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=304 off=0
 kxsbbbfp=7f286ba37c08 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37c88 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286ba37d08 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=280
 kxsbbbfp=7f286ba37d20 bln=22 avl=02 flg=01
 value=2
EXEC #139811587214928:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339501697
FETCH #139811587214928:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=4066817437,tim=3200339501697
CLOSE #139811587214928:c=0,e=0,dep=1,type=3,tim=3200339501697
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286bc03678 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286bc036f8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286bc03778 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339501697
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339501697
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339501697
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339502697
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339502697
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339502697
CLOSE #139811583547104:c=0,e=0,dep=1,type=3,tim=3200339502697
PARSE #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339502697
BINDS #139811583547104:

Bind#0
 oacdty=01 mxl=32(25) mxlc=00 mal=00 scl=00 pre=00
 oacflg=21 fl2=0000 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286be715c0 bln=32 avl=25 flg=05
 value="WAIT_TIME_TO_UPDATE_STATS"
EXEC #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339502697
FETCH #139811583547104:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339502697
PARSE #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339502697
BINDS #139811585621896:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e6b0 bln=22 avl=04 flg=05
 value=93047
EXEC #139811585621896:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339503697
FETCH #139811585621896:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3848648847,tim=3200339503697
CLOSE #139811585621896:c=0,e=0,dep=1,type=3,tim=3200339503697
PARSE #139811583197744:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339503697
BINDS #139811583197744:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e6b0 bln=22 avl=04 flg=05
 value=93047
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e628 bln=24 avl=02 flg=05
 value=10000
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e5f8 bln=24 avl=02 flg=05
 value=21
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e5c8 bln=24 avl=02 flg=05
 value=1000
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e598 bln=24 avl=02 flg=05
 value=1
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e568 bln=24 avl=02 flg=05
 value=10
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e538 bln=24 avl=02 flg=05
 value=10000
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e508 bln=24 avl=02 flg=05
 value=1
 Bind#8
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=18 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=7f286c8efa2c bln=08 avl=07 flg=09
 value="2/11/2018 14:23:22"
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e4d8 bln=24 avl=02 flg=05
 value=10000
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e4a8 bln=24 avl=01 flg=05
 value=0
 Bind#11
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e478 bln=24 avl=00 flg=05
 Bind#12
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e448 bln=24 avl=00 flg=05
 Bind#13
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e418 bln=24 avl=00 flg=05
 Bind#14
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=08 fl2=9000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=7f286b97e658 bln=16 avl=13 flg=05
 value=11-FEB-18 02.25.26.346102000 PM -05:00
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e680 bln=24 avl=02 flg=05
 value=10
EXEC #139811583197744:c=1000,e=999,p=0,cr=0,cu=7,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339504696
CLOSE #139811583197744:c=0,e=0,dep=1,type=3,tim=3200339504696
PARSE #139811585728712:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2453887050,tim=3200339504696
BINDS #139811585728712:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2f40 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585728712:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=2453887050,tim=3200339504696
CLOSE #139811585728712:c=0,e=0,dep=1,type=3,tim=3200339504696
PARSE #139811585714216:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667651180,tim=3200339505696
BINDS #139811585714216:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2de0 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585714216:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=0,dep=1,og=1,plh=2667651180,tim=3200339505696
CLOSE #139811585714216:c=0,e=0,dep=1,type=3,tim=3200339505696
BINDS #139811587211816:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bfd2d98 bln=22 avl=02 flg=05
 value=4
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2db0 bln=22 avl=02 flg=01
 value=7
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2dc8 bln=22 avl=03 flg=01
 value=354
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2de0 bln=22 avl=01 flg=01
 value=0
 Bind#4
 No oacdef for this bind.
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2d68 bln=22 avl=01 flg=05
 value=0
 Bind#6
 No oacdef for this bind.
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
 kxsbbbfp=7f286bfd2d08 bln=22 avl=02 flg=05
 value=3
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2d20 bln=22 avl=02 flg=01
 value=3
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2d38 bln=22 avl=01 flg=01
 value=0
 Bind#10
 No oacdef for this bind.
 Bind#11
 oacdty=01 mxl=128(38) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=6cf1285c bln=128 avl=38 flg=09
 value="--------------------------------------"
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=264 off=0
 kxsbbbfp=7f286bfd2be8 bln=22 avl=06 flg=05
 value=1073742353
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c00 bln=22 avl=02 flg=01
 value=10
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c18 bln=22 avl=02 flg=01
 value=40
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2c30 bln=22 avl=02 flg=01
 value=1
 Bind#16
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2c48 bln=22 avl=03 flg=01
 value=255
 Bind#17
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2c60 bln=22 avl=02 flg=01
 value=10000
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bfd2c78 bln=22 avl=02 flg=01
 value=35
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286bfd2c90 bln=22 avl=01 flg=01
 value=0
 Bind#20
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286bfd2ca8 bln=22 avl=01 flg=01
 value=0
 Bind#21
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286bfd2cc0 bln=22 avl=01 flg=01
 value=0
 Bind#22
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286bfd2cd8 bln=22 avl=02 flg=01
 value=17
 Bind#23
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6cf12960 bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#24
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bfd2b70 bln=22 avl=02 flg=05
 value=10000
 Bind#25
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2b88 bln=22 avl=02 flg=01
 value=3
 Bind#26
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2ba0 bln=22 avl=06 flg=01
 value=536870912
 Bind#27
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2bb8 bln=22 avl=02 flg=01
 value=1
 Bind#28
 No oacdef for this bind.
 Bind#29
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2b40 bln=22 avl=02 flg=05
 value=1
 Bind#30
 No oacdef for this bind.
 Bind#31
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=144 off=0
 kxsbbbfp=7f286bfd2a98 bln=22 avl=04 flg=05
 value=93045
 Bind#32
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2ab0 bln=22 avl=01 flg=01
 value=0
 Bind#33
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2ac8 bln=22 avl=01 flg=01
 value=0
 Bind#34
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2ae0 bln=22 avl=01 flg=01
 value=0
 Bind#35
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2af8 bln=22 avl=03 flg=01
 value=736
 Bind#36
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2b10 bln=22 avl=01 flg=01
 value=0
 Bind#37
 No oacdef for this bind.
 Bind#38
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#39
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6cf129f6 bln=07 avl=07 flg=09
 value="2/11/2018 19:23:5"
 Bind#40
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a68 bln=22 avl=01 flg=05
 value=0
 Bind#41
 No oacdef for this bind.
 Bind#42
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a38 bln=22 avl=01 flg=05
 value=0
 Bind#43
 No oacdef for this bind.
 Bind#44
 oacdty=180 mxl=11(00) mxlc=00 mal=00 scl=09 pre=00
 oacflg=10 fl2=8000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=00000000 bln=11 avl=00 flg=09
 Bind#45
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bfd29f0 bln=22 avl=01 flg=05
 value=0
 Bind#46
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2a08 bln=22 avl=04 flg=01
 value=93045
EXEC #139811587211816:c=2000,e=2000,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2918346288,tim=3200339507696
CLOSE #139811587211816:c=0,e=0,dep=1,type=3,tim=3200339507696
PARSE #139811576653664:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1596536394,tim=3200339507696
BINDS #139811576653664:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2de0 bln=22 avl=04 flg=05
 value=93047
EXEC #139811576653664:c=1000,e=1000,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=1596536394,tim=3200339508696
CLOSE #139811576653664:c=0,e=0,dep=1,type=3,tim=3200339508696
BINDS #139811583186984:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=408 off=0
 kxsbbbfp=7f286bfd2c60 bln=22 avl=02 flg=05
 value=4
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c78 bln=22 avl=02 flg=01
 value=7
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c90 bln=22 avl=03 flg=01
 value=426
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2ca8 bln=22 avl=02 flg=01
 value=1
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2cc0 bln=22 avl=02 flg=01
 value=1
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2cd8 bln=22 avl=03 flg=01
 value=2050
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bfd2cf0 bln=22 avl=01 flg=01
 value=0
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286bfd2d08 bln=22 avl=02 flg=01
 value=10
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286bfd2d20 bln=22 avl=02 flg=01
 value=2
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286bfd2d38 bln=22 avl=03 flg=01
 value=255
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286bfd2d50 bln=22 avl=02 flg=01
 value=1
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=264
 kxsbbbfp=7f286bfd2d68 bln=22 avl=02 flg=01
 value=21
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=288
 kxsbbbfp=7f286bfd2d80 bln=22 avl=02 flg=01
 value=1000
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=312
 kxsbbbfp=7f286bfd2d98 bln=22 avl=02 flg=01
 value=1
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=336
 kxsbbbfp=7f286bfd2db0 bln=22 avl=02 flg=01
 value=10
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=360
 kxsbbbfp=7f286bfd2dc8 bln=22 avl=02 flg=01
 value=10000
 Bind#16
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=384
 kxsbbbfp=7f286bfd2de0 bln=22 avl=02 flg=01
 value=1
 Bind#17
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=b3a270a0 bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
 kxsbbbfp=7f286bfd2c00 bln=22 avl=02 flg=05
 value=10000
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c18 bln=22 avl=04 flg=01
 value=93047
 Bind#20
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c30 bln=22 avl=02 flg=01
 value=1
 Bind#21
 No oacdef for this bind.
 Bind#22
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2bd0 bln=22 avl=02 flg=05
 value=1
 Bind#23
 No oacdef for this bind.
 Bind#24
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=144 off=0
 kxsbbbfp=7f286bfd2b28 bln=22 avl=02 flg=05
 value=10000
 Bind#25
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2b40 bln=22 avl=00 flg=01
 Bind#26
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2b58 bln=22 avl=00 flg=01
 Bind#27
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2b70 bln=22 avl=01 flg=01
 value=0
 Bind#28
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2b88 bln=22 avl=00 flg=01
 Bind#29
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2ba0 bln=22 avl=01 flg=01
 value=0
 Bind#30
 No oacdef for this bind.
 Bind#31
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2af8 bln=22 avl=01 flg=05
 value=0
 Bind#32
 No oacdef for this bind.
 Bind#33
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2ac8 bln=22 avl=01 flg=05
 value=0
 Bind#34
 No oacdef for this bind.
 Bind#35
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#36
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a98 bln=22 avl=00 flg=05
 Bind#37
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=b3a27246 bln=07 avl=07 flg=09
 value="2/11/2018 19:23:6"
 Bind#38
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a68 bln=22 avl=04 flg=05
 value=93047
EXEC #139811583186984:c=1999,e=2000,p=0,cr=2,cu=1,mis=0,r=1,dep=1,og=4,plh=2580332476,tim=3200339510696
CLOSE #139811583186984:c=0,e=0,dep=1,type=3,tim=3200339510696
BINDS #139811583140072:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be98760 bln=22 avl=02 flg=09
 value=2
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc920 bln=22 avl=02 flg=09
 value=21
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bf2cb98 bln=22 avl=01 flg=09
 value=0
 Bind#3
 oacdty=01 mxl=128(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=00000000 bln=128 avl=00 flg=09
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc970 bln=22 avl=01 flg=09
 value=0
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc7f0 bln=22 avl=03 flg=09
 value=7327
 Bind#6
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc8f0 bln=22 avl=04 flg=09
 value=93047
EXEC #139811583140072:c=0,e=1000,p=0,cr=2,cu=9,mis=0,r=1,dep=1,og=1,plh=938624260,tim=3200339511696
CLOSE #139811583140072:c=0,e=0,dep=1,type=3,tim=3200339511696
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339511696
XCTEND rlbk=0, rd_only=0, tim=3200339511696
EXEC #139811585628848:c=999,e=0,p=0,cr=0,cu=1,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339511696
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339511696
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339512695
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339512695
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339512695
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339512695
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339512695
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339512695
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba37c38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37cb8 bln=128 avl=10 flg=01
 value="STATUS_IDX"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339512695
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339512695
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339513695
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b97e548 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e5c8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b97e648 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339513695
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339513695
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339513695
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339513695
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339513695
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339513695
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286b97e5c8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e648 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339514695
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339514695
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339514695
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba37c38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37cb8 bln=128 avl=10 flg=01
 value="STATUS_IDX"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339514695
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339514695
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339514695
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b97e548 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e5c8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b97e648 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339515695
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339515695
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339515695
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339515695
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339515695
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339515695
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286b97e5c8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e648 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339515695
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339515695
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339515695
BINDS #139811576316184:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=512 off=0
 kxsbbbfp=7f286ba37b38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37bb8 bln=128 avl=10 flg=01
 value="STATUS_IDX"
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba37c38 bln=128 avl=01 flg=01
 value="U"
 Bind#3
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=384
 kxsbbbfp=7f286ba37cb8 bln=128 avl=10 flg=01
 value="STATUS_IDX"
EXEC #139811576316184:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1163018545,tim=3200339516695
FETCH #139811576316184:c=0,e=0,p=0,cr=17,cu=0,mis=0,r=1,dep=1,og=1,plh=1163018545,tim=3200339516695
CLOSE #139811576316184:c=0,e=0,dep=1,type=3,tim=3200339516695
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b97e548 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e5c8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b97e648 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339516695
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339516695
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339517695
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(28) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339517695
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339517695
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339517695
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b97e548 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e5c8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b97e648 bln=128 avl=11 flg=01
 value="INCREMENTAL"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339517695
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339517695
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339517695
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(44) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=11 flg=05
 value="INCREMENTAL"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339517695
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339518695
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339518695
BINDS #139811576313752:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286b97e698 bln=22 avl=04 flg=05
 value=93048
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286b97e6b0 bln=22 avl=04 flg=01
 value=93048
EXEC #139811576313752:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=444875925,tim=3200339518695
FETCH #139811576313752:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=1,dep=1,og=1,plh=444875925,tim=3200339518695
CLOSE #139811576313752:c=0,e=0,dep=1,type=3,tim=3200339518695
PARSE #139811592690400:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339518695
BINDS #139811592690400:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2f40 bln=22 avl=03 flg=05
 value=7327
 Bind#1
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=56 off=0
 kxsbbbfp=7f286bfd2ef0 bln=22 avl=02 flg=05
 value=1
 Bind#3
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2f08 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.26.362100000 PM -05:00
 Bind#4
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=00 fl2=9000001 frm=00 csi=00 siz=0 off=40
 kxsbbbfp=7f286bfd2f18 bln=13 avl=13 flg=01
 value=11-FEB-18 02.25.26.362100000 PM -05:00
 Bind#5
 oacdty=01 mxl=32(12) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bc20864 bln=32 avl=12 flg=09
 value="U.STATUS_IDX"
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=112 off=0
 kxsbbbfp=7f286bfd2e68 bln=22 avl=02 flg=05
 value=6
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2e80 bln=22 avl=01 flg=01
 value=0
 Bind#8
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2e98 bln=08 avl=08 flg=01
 value=0D
 Bind#9
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=56
 kxsbbbfp=7f286bfd2ea0 bln=08 avl=08 flg=01
 value=0D
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=64
 kxsbbbfp=7f286bfd2ea8 bln=22 avl=01 flg=01
 value=0
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286bfd2ec0 bln=22 avl=02 flg=01
 value=4
 Bind#12
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bfd2e20 bln=22 avl=01 flg=05
 value=0
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2e38 bln=22 avl=04 flg=01
 value=93048
EXEC #139811592690400:c=999,e=999,p=0,cr=0,cu=12,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339520694
CLOSE #139811592690400:c=0,e=0,dep=1,type=3,tim=3200339520694
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37d20 bln=22 avl=05 flg=05
 value=8917507
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339520694
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339520694
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339520694
PARSE #139811585461376:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339520694
BINDS #139811585461376:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=1224 off=0
 kxsbbbfp=7f286ba37870 bln=22 avl=02 flg=05
 value=64
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286ba37888 bln=128 avl=00 flg=01
 Bind#2
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=152
 kxsbbbfp=7f286ba37908 bln=128 avl=01 flg=01
 value="U"
 Bind#3
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=280
 kxsbbbfp=7f286ba37988 bln=128 avl=10 flg=01
 value="STATUS_IDX"
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=408
 kxsbbbfp=7f286ba37a08 bln=22 avl=02 flg=01
 value=64
 Bind#5
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=432
 kxsbbbfp=7f286ba37a20 bln=128 avl=01 flg=01
 value="U"
 Bind#6
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=560
 kxsbbbfp=7f286ba37aa0 bln=128 avl=10 flg=01
 value="STATUS_IDX"
 Bind#7
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=688
 kxsbbbfp=7f286ba37b20 bln=128 avl=00 flg=01
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=816
 kxsbbbfp=7f286ba37ba0 bln=22 avl=02 flg=01
 value=64
 Bind#9
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=840
 kxsbbbfp=7f286ba37bb8 bln=128 avl=01 flg=01
 value="U"
 Bind#10
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=968
 kxsbbbfp=7f286ba37c38 bln=128 avl=10 flg=01
 value="STATUS_IDX"
 Bind#11
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1096
 kxsbbbfp=7f286ba37cb8 bln=128 avl=00 flg=01
EXEC #139811585461376:c=0,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339521694
FETCH #139811585461376:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=0,dep=1,og=1,plh=3275028636,tim=3200339521694
CLOSE #139811585461376:c=0,e=0,dep=1,type=3,tim=3200339521694
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286b97e5c8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e648 bln=128 avl=10 flg=01
 value="STATUS_IDX"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339522694
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339522694
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339522694
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286ba37bb8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37c38 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba37cb8 bln=128 avl=23 flg=01
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339522694
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339522694
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339522694
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(92) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b97e648 bln=128 avl=23 flg=05
 value="GLOBAL_TEMP_TABLE_STATS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339523694
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339523694
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339523694
BINDS #139811585522384:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286ba37c38 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37cb8 bln=128 avl=04 flg=01
 value="ORDS"
EXEC #139811585522384:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3095026863,tim=3200339523694
FETCH #139811585522384:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3095026863,tim=3200339523694
CLOSE #139811585522384:c=0,e=0,dep=1,type=3,tim=3200339523694
BINDS #139811585443608:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=192 off=0
 kxsbbbfp=7f286b97e608 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286b97e620 bln=22 avl=00 flg=01
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286b97e638 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286b97e650 bln=22 avl=00 flg=01
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286b97e668 bln=22 avl=04 flg=01
 value=93045
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286b97e680 bln=22 avl=00 flg=01
 Bind#6
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286b97e698 bln=22 avl=04 flg=01
 value=93045
 Bind#7
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286b97e6b0 bln=22 avl=00 flg=01
EXEC #139811585443608:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4116228867,tim=3200339524694
FETCH #139811585443608:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=4116228867,tim=3200339524694
CLOSE #139811585443608:c=0,e=0,dep=1,type=3,tim=3200339524694
BINDS #139811585442016:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bf2e518 bln=32 avl=01 flg=09
 value="n"
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37cf0 bln=22 avl=04 flg=05
 value=93045
 Bind#3
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bf2e518 bln=32 avl=01 flg=09
 value="n"
EXEC #139811585442016:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1130498780,tim=3200339524694
FETCH #139811585442016:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1130498780,tim=3200339524694
CLOSE #139811585442016:c=0,e=0,dep=1,type=3,tim=3200339524694
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e6b0 bln=22 avl=05 flg=05
 value=16726844
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339524694
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339525694
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339525694
BINDS #139811576300680:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=05
 value=93045
EXEC #139811576300680:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=358207273,tim=3200339525694
FETCH #139811576300680:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=1,dep=1,og=1,plh=358207273,tim=3200339525694
CLOSE #139811576300680:c=0,e=0,dep=1,type=3,tim=3200339525694
BINDS #139811585440288:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e6b0 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585440288:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3704755223,tim=3200339525694
FETCH #139811585440288:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=3704755223,tim=3200339525694
CLOSE #139811585440288:c=0,e=0,dep=1,type=3,tim=3200339525694
BINDS #139811581303304:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=288 off=0
 kxsbbbfp=7f286ba37c18 bln=22 avl=02 flg=05
 value=16
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286ba37c30 bln=22 avl=03 flg=01
 value=512
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286ba37c48 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286ba37c60 bln=22 avl=02 flg=01
 value=16
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286ba37c78 bln=22 avl=03 flg=01
 value=512
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286ba37c90 bln=22 avl=04 flg=01
 value=93045
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286ba37ca8 bln=22 avl=02 flg=01
 value=16
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286ba37cc0 bln=22 avl=03 flg=01
 value=512
 Bind#8
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286ba37cd8 bln=22 avl=04 flg=01
 value=93045
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286ba37cf0 bln=22 avl=02 flg=01
 value=16
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286ba37d08 bln=22 avl=03 flg=01
 value=512
 Bind#11
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=264
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=01
 value=93045
EXEC #139811581303304:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=305735784,tim=3200339526694
FETCH #139811581303304:c=0,e=0,p=0,cr=9,cu=0,mis=0,r=1,dep=1,og=1,plh=305735784,tim=3200339526694
CLOSE #139811581303304:c=0,e=0,dep=1,type=3,tim=3200339526694
BINDS #139811583170840:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=152 off=0
 kxsbbbfp=7f286b97e630 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=01 mxl=128(52) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=24
 kxsbbbfp=7f286b97e648 bln=128 avl=13 flg=01
 value="STALE_PERCENT"
EXEC #139811583170840:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339526694
FETCH #139811583170840:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=324713838,tim=3200339526694
CLOSE #139811583170840:c=0,e=0,dep=1,type=3,tim=3200339527694
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(52) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=13 flg=05
 value="STALE_PERCENT"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339527694
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339527694
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339527694
BINDS #139811581300648:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=168 off=0
 kxsbbbfp=7f286b97e620 bln=22 avl=04 flg=05
 value=93045
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286b97e638 bln=22 avl=04 flg=01
 value=93045
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286b97e650 bln=22 avl=04 flg=01
 value=93045
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286b97e668 bln=22 avl=04 flg=01
 value=93045
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286b97e680 bln=22 avl=04 flg=01
 value=93045
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286b97e698 bln=22 avl=02 flg=01
 value=1
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286b97e6b0 bln=22 avl=02 flg=01
 value=1
 Bind#7
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bbb6318 bln=22 avl=02 flg=09
 value=10
EXEC #139811581300648:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1017082981,tim=3200339527694
FETCH #139811581300648:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=1,dep=1,og=1,plh=1017082981,tim=3200339527694
CLOSE #139811581300648:c=0,e=0,dep=1,type=3,tim=3200339528693
PARSE #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339528693
BINDS #139811585621896:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e6b0 bln=22 avl=04 flg=05
 value=93048
EXEC #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339528693
FETCH #139811585621896:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3848648847,tim=3200339528693
CLOSE #139811585621896:c=0,e=0,dep=1,type=3,tim=3200339528693
BINDS #139811585513096:

Bind#0
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=112 off=0
 kxsbbbfp=7f286ba37cc8 bln=32 avl=00 flg=05
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=32
 kxsbbbfp=7f286ba37ce8 bln=22 avl=04 flg=01
 value=93048
 Bind#2
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=56
 kxsbbbfp=7f286ba37d00 bln=32 avl=00 flg=01
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=01
 value=93048
EXEC #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1773246836,tim=3200339528693
FETCH #139811585513096:c=1000,e=1000,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=1773246836,tim=3200339529693
CLOSE #139811585513096:c=0,e=0,dep=1,type=3,tim=3200339529693
PARSE #139811585520112:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=546928428,tim=3200339529693
BINDS #139811585520112:

Bind#0
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=2336 off=0
 kxsbbbfp=7f286b7f8478 bln=32 avl=01 flg=05
 value="n"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=32
 kxsbbbfp=7f286b7f8498 bln=128 avl=00 flg=01
 Bind#2
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=160
 kxsbbbfp=7f286b7f8518 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#3
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=192
 kxsbbbfp=7f286b7f8538 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#4
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=224
 kxsbbbfp=7f286b7f8558 bln=32 avl=01 flg=01
 value="n"
 Bind#5
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b7f8578 bln=32 avl=01 flg=01
 value="n"
 Bind#6
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=288
 kxsbbbfp=7f286b7f8598 bln=128 avl=00 flg=01
 Bind#7
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=416
 kxsbbbfp=7f286b7f8618 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#8
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=448
 kxsbbbfp=7f286b7f8638 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#9
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=480
 kxsbbbfp=7f286b7f8658 bln=32 avl=01 flg=01
 value="n"
 Bind#10
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=512
 kxsbbbfp=7f286b7f8678 bln=32 avl=01 flg=01
 value="n"
 Bind#11
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=544
 kxsbbbfp=7f286b7f8698 bln=128 avl=00 flg=01
 Bind#12
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=672
 kxsbbbfp=7f286b7f8718 bln=32 avl=00 flg=01
 Bind#13
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=704
 kxsbbbfp=7f286b7f8738 bln=128 avl=00 flg=01
 Bind#14
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=832
 kxsbbbfp=7f286b7f87b8 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#15
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=864
 kxsbbbfp=7f286b7f87d8 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#16
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=896
 kxsbbbfp=7f286b7f87f8 bln=32 avl=01 flg=01
 value="n"
 Bind#17
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=928
 kxsbbbfp=7f286b7f8818 bln=32 avl=01 flg=01
 value="n"
 Bind#18
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=960
 kxsbbbfp=7f286b7f8838 bln=128 avl=00 flg=01
 Bind#19
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1088
 kxsbbbfp=7f286b7f88b8 bln=32 avl=00 flg=01
 Bind#20
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1120
 kxsbbbfp=7f286b7f88d8 bln=128 avl=00 flg=01
 Bind#21
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1248
 kxsbbbfp=7f286b7f8958 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#22
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1280
 kxsbbbfp=7f286b7f8978 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#23
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1312
 kxsbbbfp=7f286b7f8998 bln=32 avl=01 flg=01
 value="n"
 Bind#24
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1344
 kxsbbbfp=7f286b7f89b8 bln=32 avl=01 flg=01
 value="n"
 Bind#25
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1376
 kxsbbbfp=7f286b7f89d8 bln=128 avl=00 flg=01
 Bind#26
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1504
 kxsbbbfp=7f286b7f8a58 bln=32 avl=00 flg=01
 Bind#27
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1536
 kxsbbbfp=7f286b7f8a78 bln=128 avl=00 flg=01
 Bind#28
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1664
 kxsbbbfp=7f286b7f8af8 bln=32 avl=00 flg=01
 Bind#29
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1696
 kxsbbbfp=7f286b7f8b18 bln=128 avl=00 flg=01
 Bind#30
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1824
 kxsbbbfp=7f286b7f8b98 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#31
 oacdty=01 mxl=32(06) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1856
 kxsbbbfp=7f286b7f8bb8 bln=32 avl=06 flg=01
 value="STATUS"
 Bind#32
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1888
 kxsbbbfp=7f286b7f8bd8 bln=32 avl=01 flg=01
 value="n"
 Bind#33
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=1920
 kxsbbbfp=7f286b7f8bf8 bln=128 avl=01 flg=01
 value="U"
 Bind#34
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2048
 kxsbbbfp=7f286b7f8c78 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#35
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2176
 kxsbbbfp=7f286b7f8cf8 bln=32 avl=00 flg=01
 Bind#36
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=2208
 kxsbbbfp=7f286b7f8d18 bln=128 avl=00 flg=01
EXEC #139811585520112:c=1999,e=2000,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=546928428,tim=3200339531693
FETCH #139811585520112:c=0,e=0,p=0,cr=15,cu=0,mis=0,r=1,dep=1,og=1,plh=546928428,tim=3200339531693
CLOSE #139811585520112:c=0,e=0,dep=1,type=3,tim=3200339531693
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e6b0 bln=22 avl=04 flg=05
 value=6163600
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339532693
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339532693
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339532693
BINDS #139811585513096:

Bind#0
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=112 off=0
 kxsbbbfp=7f286ba37cc8 bln=32 avl=00 flg=05
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=32
 kxsbbbfp=7f286ba37ce8 bln=22 avl=04 flg=01
 value=93048
 Bind#2
 oacdty=01 mxl=32(01) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=56
 kxsbbbfp=7f286ba37d00 bln=32 avl=00 flg=01
 Bind#3
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=88
 kxsbbbfp=7f286ba37d20 bln=22 avl=04 flg=01
 value=93048
EXEC #139811585513096:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1773246836,tim=3200339532693
FETCH #139811585513096:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=1773246836,tim=3200339532693
CLOSE #139811585513096:c=0,e=0,dep=1,type=3,tim=3200339532693
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339533693
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339533693
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339533693
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339533693
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339533693
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339533693
BINDS #139811587214928:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=304 off=0
 kxsbbbfp=7f286b97e598 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e618 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286b97e698 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=280
 kxsbbbfp=7f286b97e6b0 bln=22 avl=02 flg=01
 value=2
EXEC #139811587214928:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339533693
FETCH #139811587214928:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=4066817437,tim=3200339533693
CLOSE #139811587214928:c=0,e=0,dep=1,type=3,tim=3200339533693
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286ba37bb8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37c38 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286ba37cb8 bln=128 avl=19 flg=01
 value="TABLE_CACHED_BLOCKS"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339534693
FETCH #139811585036504:c=0,e=0,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339534693
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339534693
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286b97e648 bln=128 avl=19 flg=05
 value="TABLE_CACHED_BLOCKS"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339534693
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339534693
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339534693
=====================
PARSING IN CURSOR #139811583210376 len=425 dep=1 uid=114 oct=3 lid=114 tim=3200339536692 hv=1872693727 ad='783e3e90' sqlid='9u93y6jrty2fz'
select /*+ no_parallel_index(t, "STATUS_IDX") dbms_stats cursor_sharing_exact use_weak_name_resl dynamic_sampling(0) no_monitoring xmlindex_sel_idx_tbl opt_param('optimizer_inmemory_aware' 'false') no_substrb_pad no_expand index(t,"STATUS_IDX") */ count(*) as nrw,count(distinct sys_op_lbid(93048,'L',t.rowid)) as nlb,null as ndk,sys_op_countchg(substrb(t.rowid,1,15),1) as clf from "U"."ORDS" t where "STATUS" is not null
END OF STMT
PARSE #139811583210376:c=2000,e=1999,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=1,plh=2641725950,tim=3200339536692
EXEC #139811583210376:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2641725950,tim=3200339537692
FETCH #139811583210376:c=8998,e=8999,p=0,cr=29,cu=0,mis=0,r=1,dep=1,og=1,plh=2641725950,tim=3200339546691
STAT #139811583210376 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT GROUP BY (cr=29 pr=0 pw=0 str=1 time=8999 us)'
STAT #139811583210376 id=2 cnt=10000 pid=1 pos=1 obj=93048 op='INDEX FULL SCAN STATUS_IDX (cr=29 pr=0 pw=0 str=1 time=0 us cost=29 size=120000 card=10000)'
CLOSE #139811583210376:c=0,e=0,dep=1,type=3,tim=3200339546691
BINDS #139811583407544:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286ba37d20 bln=22 avl=05 flg=05
 value=5099019
EXEC #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667441017,tim=3200339546691
FETCH #139811583407544:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=2667441017,tim=3200339546691
CLOSE #139811583407544:c=0,e=0,dep=1,type=3,tim=3200339546691
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339546691
XCTEND rlbk=0, rd_only=1, tim=3200339547691
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339547691
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339547691
BINDS #139811576305848:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=256 off=0
 kxsbbbfp=7f286b97e5c8 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e648 bln=128 avl=10 flg=01
 value="STATUS_IDX"
EXEC #139811576305848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1853893377,tim=3200339547691
FETCH #139811576305848:c=0,e=0,p=0,cr=13,cu=0,mis=0,r=1,dep=1,og=1,plh=1853893377,tim=3200339547691
CLOSE #139811576305848:c=0,e=0,dep=1,type=3,tim=3200339547691
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339547691
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339547691
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339547691
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339547691
FETCH #139811585033520:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339548691
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339548691
BINDS #139811587214928:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=304 off=0
 kxsbbbfp=7f286ba37c08 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286ba37c88 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=256
 kxsbbbfp=7f286ba37d08 bln=22 avl=02 flg=01
 value=1
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=00 csi=00 siz=0 off=280
 kxsbbbfp=7f286ba37d20 bln=22 avl=02 flg=01
 value=2
EXEC #139811587214928:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4066817437,tim=3200339548691
FETCH #139811587214928:c=0,e=0,p=0,cr=5,cu=0,mis=0,r=1,dep=1,og=1,plh=4066817437,tim=3200339548691
CLOSE #139811587214928:c=0,e=0,dep=1,type=3,tim=3200339548691
BINDS #139811585036504:

Bind#0
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=384 off=0
 kxsbbbfp=7f286b97e548 bln=128 avl=01 flg=05
 value="U"
 Bind#1
 oacdty=01 mxl=128(128) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=128
 kxsbbbfp=7f286b97e5c8 bln=128 avl=04 flg=01
 value="ORDS"
 Bind#2
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=0 off=256
 kxsbbbfp=7f286b97e648 bln=128 avl=07 flg=01
 value="PUBLISH"
EXEC #139811585036504:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339548691
FETCH #139811585036504:c=1000,e=1000,p=0,cr=6,cu=0,mis=0,r=0,dep=1,og=1,plh=4291532097,tim=3200339549691
CLOSE #139811585036504:c=0,e=0,dep=1,type=3,tim=3200339549691
BINDS #139811585569480:

Bind#0
 oacdty=01 mxl=128(30) mxlc=00 mal=00 scl=00 pre=00
 oacflg=03 fl2=1206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286ba37cb8 bln=128 avl=07 flg=05
 value="PUBLISH"
EXEC #139811585569480:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339549691
FETCH #139811585569480:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339549691
CLOSE #139811585569480:c=0,e=0,dep=1,type=3,tim=3200339549691
CLOSE #139811583547104:c=0,e=0,dep=1,type=3,tim=3200339549691
PARSE #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339549691
BINDS #139811583547104:

Bind#0
 oacdty=01 mxl=32(25) mxlc=00 mal=00 scl=00 pre=00
 oacflg=21 fl2=0000 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bc53fb0 bln=32 avl=25 flg=05
 value="WAIT_TIME_TO_UPDATE_STATS"
EXEC #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339549691
FETCH #139811583547104:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339549691
PARSE #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339550691
BINDS #139811585621896:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e6b0 bln=22 avl=04 flg=05
 value=93048
EXEC #139811585621896:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=3848648847,tim=3200339550691
FETCH #139811585621896:c=0,e=0,p=0,cr=8,cu=0,mis=0,r=1,dep=1,og=1,plh=3848648847,tim=3200339550691
CLOSE #139811585621896:c=0,e=0,dep=1,type=3,tim=3200339550691
PARSE #139811583197744:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=0,tim=3200339550691
BINDS #139811583197744:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e6b0 bln=22 avl=04 flg=05
 value=93048
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e628 bln=24 avl=02 flg=05
 value=10000
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e5f8 bln=24 avl=02 flg=05
 value=28
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e5c8 bln=24 avl=02 flg=05
 value=2
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e598 bln=24 avl=02 flg=05
 value=14
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e568 bln=24 avl=02 flg=05
 value=16
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e538 bln=24 avl=02 flg=05
 value=32
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e508 bln=24 avl=02 flg=05
 value=1
 Bind#8
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=18 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=7f286c8efa2c bln=08 avl=07 flg=09
 value="2/11/2018 14:23:22"
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e4d8 bln=24 avl=02 flg=05
 value=10000
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e4a8 bln=24 avl=01 flg=05
 value=0
 Bind#11
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e478 bln=24 avl=00 flg=05
 Bind#12
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e448 bln=24 avl=00 flg=05
 Bind#13
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e418 bln=24 avl=00 flg=05
 Bind#14
 oacdty=181 mxl=13(13) mxlc=00 mal=00 scl=09 pre=00
 oacflg=08 fl2=9000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=7f286b97e658 bln=16 avl=13 flg=05
 value=11-FEB-18 02.25.26.394096000 PM -05:00
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=08 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286b97e680 bln=24 avl=02 flg=05
 value=10
EXEC #139811583197744:c=1000,e=2000,p=0,cr=0,cu=7,mis=0,r=1,dep=1,og=1,plh=0,tim=3200339552691
CLOSE #139811583197744:c=0,e=0,dep=1,type=3,tim=3200339552691
PARSE #139811585728712:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2453887050,tim=3200339552691
BINDS #139811585728712:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2f40 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585728712:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=2453887050,tim=3200339552691
CLOSE #139811585728712:c=0,e=0,dep=1,type=3,tim=3200339552691
PARSE #139811585714216:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2667651180,tim=3200339552691
BINDS #139811585714216:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2de0 bln=22 avl=04 flg=05
 value=93045
EXEC #139811585714216:c=0,e=0,p=0,cr=2,cu=0,mis=0,r=0,dep=1,og=1,plh=2667651180,tim=3200339552691
CLOSE #139811585714216:c=0,e=0,dep=1,type=3,tim=3200339552691
BINDS #139811587211816:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bfd2d98 bln=22 avl=02 flg=05
 value=4
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2db0 bln=22 avl=02 flg=01
 value=7
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2dc8 bln=22 avl=03 flg=01
 value=354
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2de0 bln=22 avl=01 flg=01
 value=0
 Bind#4
 No oacdef for this bind.
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2d68 bln=22 avl=01 flg=05
 value=0
 Bind#6
 No oacdef for this bind.
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
 kxsbbbfp=7f286bfd2d08 bln=22 avl=02 flg=05
 value=3
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2d20 bln=22 avl=02 flg=01
 value=3
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2d38 bln=22 avl=01 flg=01
 value=0
 Bind#10
 No oacdef for this bind.
 Bind#11
 oacdty=01 mxl=128(38) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=6cf1285c bln=128 avl=38 flg=09
 value="--------------------------------------"
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=264 off=0
 kxsbbbfp=7f286bfd2be8 bln=22 avl=06 flg=05
 value=1073742353
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c00 bln=22 avl=02 flg=01
 value=10
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c18 bln=22 avl=02 flg=01
 value=40
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2c30 bln=22 avl=02 flg=01
 value=1
 Bind#16
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2c48 bln=22 avl=03 flg=01
 value=255
 Bind#17
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2c60 bln=22 avl=02 flg=01
 value=10000
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bfd2c78 bln=22 avl=02 flg=01
 value=35
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286bfd2c90 bln=22 avl=01 flg=01
 value=0
 Bind#20
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286bfd2ca8 bln=22 avl=01 flg=01
 value=0
 Bind#21
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286bfd2cc0 bln=22 avl=01 flg=01
 value=0
 Bind#22
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286bfd2cd8 bln=22 avl=02 flg=01
 value=17
 Bind#23
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6cf12960 bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#24
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=96 off=0
 kxsbbbfp=7f286bfd2b70 bln=22 avl=02 flg=05
 value=10000
 Bind#25
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2b88 bln=22 avl=02 flg=01
 value=3
 Bind#26
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2ba0 bln=22 avl=06 flg=01
 value=536870912
 Bind#27
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2bb8 bln=22 avl=02 flg=01
 value=1
 Bind#28
 No oacdef for this bind.
 Bind#29
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2b40 bln=22 avl=02 flg=05
 value=1
 Bind#30
 No oacdef for this bind.
 Bind#31
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=144 off=0
 kxsbbbfp=7f286bfd2a98 bln=22 avl=04 flg=05
 value=93045
 Bind#32
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2ab0 bln=22 avl=01 flg=01
 value=0
 Bind#33
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2ac8 bln=22 avl=01 flg=01
 value=0
 Bind#34
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2ae0 bln=22 avl=01 flg=01
 value=0
 Bind#35
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2af8 bln=22 avl=03 flg=01
 value=736
 Bind#36
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2b10 bln=22 avl=01 flg=01
 value=0
 Bind#37
 No oacdef for this bind.
 Bind#38
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#39
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=6cf129f6 bln=07 avl=07 flg=09
 value="2/11/2018 19:23:5"
 Bind#40
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a68 bln=22 avl=01 flg=05
 value=0
 Bind#41
 No oacdef for this bind.
 Bind#42
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a38 bln=22 avl=01 flg=05
 value=0
 Bind#43
 No oacdef for this bind.
 Bind#44
 oacdty=180 mxl=11(00) mxlc=00 mal=00 scl=09 pre=00
 oacflg=10 fl2=8000001 frm=00 csi=00 siz=16 off=0
 kxsbbbfp=00000000 bln=11 avl=00 flg=09
 Bind#45
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=48 off=0
 kxsbbbfp=7f286bfd29f0 bln=22 avl=01 flg=05
 value=0
 Bind#46
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2a08 bln=22 avl=04 flg=01
 value=93045
EXEC #139811587211816:c=2000,e=2999,p=0,cr=3,cu=1,mis=0,r=1,dep=1,og=4,plh=2918346288,tim=3200339555690
CLOSE #139811587211816:c=0,e=0,dep=1,type=3,tim=3200339555690
PARSE #139811576653664:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1596536394,tim=3200339555690
BINDS #139811576653664:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2de0 bln=22 avl=04 flg=05
 value=93048
EXEC #139811576653664:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=1596536394,tim=3200339555690
CLOSE #139811576653664:c=0,e=0,dep=1,type=3,tim=3200339555690
BINDS #139811583186984:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=408 off=0
 kxsbbbfp=7f286bfd2c60 bln=22 avl=02 flg=05
 value=4
 Bind#1
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c78 bln=22 avl=02 flg=01
 value=7
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c90 bln=22 avl=03 flg=01
 value=458
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2ca8 bln=22 avl=02 flg=01
 value=1
 Bind#4
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2cc0 bln=22 avl=02 flg=01
 value=1
 Bind#5
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2cd8 bln=22 avl=03 flg=01
 value=2050
 Bind#6
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=144
 kxsbbbfp=7f286bfd2cf0 bln=22 avl=01 flg=01
 value=0
 Bind#7
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=168
 kxsbbbfp=7f286bfd2d08 bln=22 avl=02 flg=01
 value=10
 Bind#8
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=192
 kxsbbbfp=7f286bfd2d20 bln=22 avl=02 flg=01
 value=2
 Bind#9
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=216
 kxsbbbfp=7f286bfd2d38 bln=22 avl=03 flg=01
 value=255
 Bind#10
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=240
 kxsbbbfp=7f286bfd2d50 bln=22 avl=02 flg=01
 value=1
 Bind#11
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=264
 kxsbbbfp=7f286bfd2d68 bln=22 avl=02 flg=01
 value=28
 Bind#12
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=288
 kxsbbbfp=7f286bfd2d80 bln=22 avl=02 flg=01
 value=2
 Bind#13
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=312
 kxsbbbfp=7f286bfd2d98 bln=22 avl=02 flg=01
 value=14
 Bind#14
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=336
 kxsbbbfp=7f286bfd2db0 bln=22 avl=02 flg=01
 value=16
 Bind#15
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=360
 kxsbbbfp=7f286bfd2dc8 bln=22 avl=02 flg=01
 value=32
 Bind#16
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=384
 kxsbbbfp=7f286bfd2de0 bln=22 avl=02 flg=01
 value=1
 Bind#17
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=b3a1dc18 bln=07 avl=07 flg=09
 value="2/11/2018 14:25:26"
 Bind#18
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=72 off=0
 kxsbbbfp=7f286bfd2c00 bln=22 avl=02 flg=05
 value=10000
 Bind#19
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2c18 bln=22 avl=04 flg=01
 value=93048
 Bind#20
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2c30 bln=22 avl=02 flg=01
 value=1
 Bind#21
 No oacdef for this bind.
 Bind#22
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2bd0 bln=22 avl=02 flg=05
 value=1
 Bind#23
 No oacdef for this bind.
 Bind#24
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=144 off=0
 kxsbbbfp=7f286bfd2b28 bln=22 avl=02 flg=05
 value=10000
 Bind#25
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfd2b40 bln=22 avl=00 flg=01
 Bind#26
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=48
 kxsbbbfp=7f286bfd2b58 bln=22 avl=00 flg=01
 Bind#27
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=72
 kxsbbbfp=7f286bfd2b70 bln=22 avl=01 flg=01
 value=0
 Bind#28
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=96
 kxsbbbfp=7f286bfd2b88 bln=22 avl=00 flg=01
 Bind#29
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=120
 kxsbbbfp=7f286bfd2ba0 bln=22 avl=01 flg=01
 value=0
 Bind#30
 No oacdef for this bind.
 Bind#31
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2af8 bln=22 avl=01 flg=05
 value=0
 Bind#32
 No oacdef for this bind.
 Bind#33
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2ac8 bln=22 avl=01 flg=05
 value=0
 Bind#34
 No oacdef for this bind.
 Bind#35
 oacdty=01 mxl=32(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=00000000 bln=32 avl=00 flg=09
 Bind#36
 oacdty=02 mxl=22(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a98 bln=22 avl=00 flg=05
 Bind#37
 oacdty=12 mxl=07(07) mxlc=00 mal=00 scl=00 pre=00
 oacflg=10 fl2=0001 frm=00 csi=00 siz=8 off=0
 kxsbbbfp=b3a1ddbe bln=07 avl=07 flg=09
 value="2/11/2018 19:23:6"
 Bind#38
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfd2a68 bln=22 avl=04 flg=05
 value=93048
EXEC #139811583186984:c=1999,e=2000,p=0,cr=2,cu=1,mis=0,r=1,dep=1,og=4,plh=2580332476,tim=3200339558690
CLOSE #139811583186984:c=0,e=0,dep=1,type=3,tim=3200339558690
BINDS #139811583140072:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be98760 bln=22 avl=02 flg=09
 value=2
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc920 bln=22 avl=02 flg=09
 value=28
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bf2cb98 bln=22 avl=01 flg=09
 value=0
 Bind#3
 oacdty=01 mxl=128(00) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=00000000 bln=128 avl=00 flg=09
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc970 bln=22 avl=01 flg=09
 value=0
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc7f0 bln=22 avl=03 flg=09
 value=7327
 Bind#6
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc8f0 bln=22 avl=04 flg=09
 value=93048
EXEC #139811583140072:c=1000,e=1000,p=0,cr=2,cu=9,mis=0,r=1,dep=1,og=1,plh=938624260,tim=3200339559690
CLOSE #139811583140072:c=0,e=0,dep=1,type=3,tim=3200339559690
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339559690
XCTEND rlbk=0, rd_only=0, tim=3200339559690
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=1,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339559690
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339559690
=====================
PARSING IN CURSOR #139811583490344 len=956 dep=1 uid=0 oct=2 lid=0 tim=3200339559690 hv=861111593 ad='7f0fd078' sqlid='3wh9htctp7199'
insert /* KSXM:TAKE_SNPSHOT */ into sys.optstat_snapshot$ (obj#, inserts, updates, deletes, timestamp, flags) (select m.obj#, m.inserts, m.updates, m.deletes, systimestamp, dbms_stats_advisor.compute_volatile_flag( m.obj#, m.flags, :flags, m.inserts, m.updates, m.deletes, s.inserts, s.updates, s.deletes, null, nvl(to_number(p.valchar), :global_stale_pcnt), s.gather) flags from sys.mon_mods_all$ m, (select si.obj#, max(si.inserts) inserts, max(si.updates) updates, max(si.deletes) deletes, decode(bitand(max(si.flags), :gather_flag), 0, 'NO_GATHER', 'GATHER') gather, max(si.timestamp) timestamp from sys.optstat_snapshot$ si, (select obj#, max(timestamp) ts from sys.optstat_snapshot$ group by obj#) sm where si.obj# = sm.obj# and si.timestamp = sm.ts group by si.obj#) s, sys.optstat_user_prefs$ p where m.obj# = s.obj#(+) and m.obj# = p.obj#(+) and pname(+) = 'STALE_PERCENT' and m.obj# = :objn) 
END OF STMT
PARSE #139811583490344:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=49397900,tim=3200339559690
CLOSE #139811583547104:c=0,e=0,dep=1,type=3,tim=3200339560690
PARSE #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339560690
BINDS #139811583547104:

Bind#0
 oacdty=01 mxl=32(13) mxlc=00 mal=00 scl=00 pre=00
 oacflg=21 fl2=0000 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bc53fb0 bln=32 avl=13 flg=05
 value="STALE_PERCENT"
EXEC #139811583547104:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1097271556,tim=3200339560690
FETCH #139811583547104:c=0,e=0,p=0,cr=3,cu=0,mis=0,r=1,dep=1,og=1,plh=1097271556,tim=3200339560690
BINDS #139811583490344:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=80 off=0
 kxsbbbfp=7f286bfca788 bln=22 avl=02 flg=05
 value=32
 Bind#1
 oacdty=101 mxl=08(08) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=24
 kxsbbbfp=7f286bfca7a0 bln=08 avl=08 flg=01
 value=1.0E+001D
 Bind#2
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=32
 kxsbbbfp=7f286bfca7a8 bln=22 avl=02 flg=01
 value=32
 Bind#3
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=0 off=56
 kxsbbbfp=7f286bfca7c0 bln=22 avl=04 flg=01
 value=93045
EXEC #139811583490344:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=49397900,tim=3200339560690
STAT #139811583490344 id=1 cnt=0 pid=0 pos=1 obj=0 op='LOAD TABLE CONVENTIONAL OPTSTAT_SNAPSHOT$ (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583490344 id=2 cnt=0 pid=1 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=1 pr=0 pw=0 str=1 time=0 us cost=151 size=107 card=1)'
STAT #139811583490344 id=3 cnt=0 pid=2 pos=1 obj=0 op='NESTED LOOPS OUTER (cr=1 pr=0 pw=0 str=1 time=0 us cost=2 size=60 card=1)'
STAT #139811583490344 id=4 cnt=0 pid=3 pos=1 obj=660 op='TABLE ACCESS BY INDEX ROWID MON_MODS_ALL$ (cr=1 pr=0 pw=0 str=1 time=0 us cost=1 size=18 card=1)'
STAT #139811583490344 id=5 cnt=0 pid=4 pos=1 obj=661 op='INDEX UNIQUE SCAN I_MON_MODS_ALL$_OBJ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=0 card=1)'
STAT #139811583490344 id=6 cnt=0 pid=3 pos=2 obj=680 op='TABLE ACCESS BY INDEX ROWID OPTSTAT_USER_PREFS$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=1 size=42 card=1)'
STAT #139811583490344 id=7 cnt=0 pid=6 pos=1 obj=681 op='INDEX UNIQUE SCAN I_USER_PREFS$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=0 size=0 card=1)'
STAT #139811583490344 id=8 cnt=0 pid=2 pos=2 obj=0 op='VIEW PUSHED PREDICATE (cr=0 pr=0 pw=0 str=0 time=0 us cost=149 size=47 card=1)'
STAT #139811583490344 id=9 cnt=0 pid=8 pos=1 obj=0 op='SORT GROUP BY (cr=0 pr=0 pw=0 str=0 time=0 us cost=149 size=47 card=1)'
STAT #139811583490344 id=10 cnt=0 pid=9 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811583490344 id=11 cnt=0 pid=10 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=149 size=47 card=1)'
STAT #139811583490344 id=12 cnt=0 pid=11 pos=1 obj=0 op='NESTED LOOPS (cr=0 pr=0 pw=0 str=0 time=0 us cost=149 size=47 card=1)'
STAT #139811583490344 id=13 cnt=0 pid=12 pos=1 obj=0 op='VIEW (cr=0 pr=0 pw=0 str=0 time=0 us cost=146 size=20 card=1)'
STAT #139811583490344 id=14 cnt=0 pid=13 pos=1 obj=0 op='SORT GROUP BY (cr=0 pr=0 pw=0 str=0 time=0 us cost=146 size=18 card=1)'
STAT #139811583490344 id=15 cnt=0 pid=14 pos=1 obj=0 op='FILTER (cr=0 pr=0 pw=0 str=0 time=0 us)'
STAT #139811583490344 id=16 cnt=0 pid=15 pos=1 obj=702 op='TABLE ACCESS BY INDEX ROWID BATCHED OPTSTAT_SNAPSHOT$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=146 size=2736 card=152)'
STAT #139811583490344 id=17 cnt=0 pid=16 pos=1 obj=703 op='INDEX RANGE SCAN I_OPTSTAT_SNAPSHOT$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=3 size=0 card=152)'
STAT #139811583490344 id=18 cnt=0 pid=12 pos=2 obj=703 op='INDEX RANGE SCAN I_OPTSTAT_SNAPSHOT$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=2 size=0 card=1)'
STAT #139811583490344 id=19 cnt=0 pid=11 pos=2 obj=702 op='TABLE ACCESS BY INDEX ROWID OPTSTAT_SNAPSHOT$ (cr=0 pr=0 pw=0 str=0 time=0 us cost=3 size=27 card=1)'
CLOSE #139811583490344:c=0,e=0,dep=1,type=1,tim=3200339562689
=====================
PARSING IN CURSOR #139811583489120 len=100 dep=1 uid=0 oct=6 lid=0 tim=3200339562689 hv=4116162234 ad='81190f48' sqlid='ajkubg7upg9pu'
update /* KSXM:TIME_UPD */ optstat_hist_control$ set sval2 = systimestamp where sname = :param_name
END OF STMT
PARSE #139811583489120:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=61158906,tim=3200339562689
BINDS #139811583489120:

Bind#0
 oacdty=01 mxl=32(17) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=01 csi=873 siz=32 off=0
 kxsbbbfp=7f286bfca7b8 bln=32 avl=17 flg=05
 value="SNAPSHOT_UPD_TIME"
EXEC #139811583489120:c=0,e=0,p=0,cr=3,cu=2,mis=0,r=1,dep=1,og=1,plh=61158906,tim=3200339562689
STAT #139811583489120 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE OPTSTAT_HIST_CONTROL$ (cr=3 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583489120 id=2 cnt=1 pid=1 pos=1 obj=679 op='TABLE ACCESS FULL OPTSTAT_HIST_CONTROL$ (cr=3 pr=0 pw=0 str=1 time=0 us cost=2 size=30 card=1)'
CLOSE #139811583489120:c=0,e=0,dep=1,type=1,tim=3200339562689
=====================
PARSING IN CURSOR #139811586960224 len=89 dep=1 uid=0 oct=7 lid=0 tim=3200339562689 hv=3876600641 ad='7f0f4450' sqlid='2vj9903mj0fu1'
delete /* KSXM:DEL_DML_INF *//*+ index(mm) */ from sys.mon_mods_all$ mm where obj# = :1
END OF STMT
PARSE #139811586960224:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=4196728193,tim=3200339562689
BINDS #139811586960224:

Bind#0
 oacdty=02 mxl=22(22) mxlc=00 mal=00 scl=00 pre=00
 oacflg=00 fl2=1000001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bfcac48 bln=22 avl=04 flg=05
 value=93045
EXEC #139811586960224:c=0,e=0,p=0,cr=1,cu=0,mis=0,r=0,dep=1,og=1,plh=4196728193,tim=3200339563689
STAT #139811586960224 id=1 cnt=0 pid=0 pos=1 obj=0 op='DELETE MON_MODS_ALL$ (cr=1 pr=0 pw=0 str=1 time=0 us)'
STAT #139811586960224 id=2 cnt=0 pid=1 pos=1 obj=661 op='INDEX UNIQUE SCAN I_MON_MODS_ALL$_OBJ (cr=1 pr=0 pw=0 str=1 time=0 us cost=0 size=5 card=1)'
CLOSE #139811586960224:c=0,e=0,dep=1,type=1,tim=3200339563689
BINDS #139811583140072:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be98760 bln=22 avl=02 flg=09
 value=2
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc920 bln=22 avl=02 flg=09
 value=35
 Bind#2
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be5b2e8 bln=22 avl=02 flg=09
 value=1
 Bind#3
 oacdty=01 mxl=128(64) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=01 csi=873 siz=128 off=0
 kxsbbbfp=7f286bf38f70 bln=128 avl=64 flg=09
 value="<notes><histograms>STATUS;</histograms><xstats></xstats></notes>"
 Bind#4
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc970 bln=22 avl=01 flg=09
 value=0
 Bind#5
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc7f0 bln=22 avl=03 flg=09
 value=7327
 Bind#6
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc8f0 bln=22 avl=04 flg=09
 value=93045
EXEC #139811583140072:c=1000,e=1000,p=0,cr=2,cu=9,mis=0,r=1,dep=1,og=1,plh=938624260,tim=3200339564689
CLOSE #139811583140072:c=0,e=0,dep=1,type=3,tim=3200339564689
XCTEND rlbk=0, rd_only=0, tim=3200339564689
EXEC #139811585628848:c=1000,e=0,p=0,cr=0,cu=1,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339564689
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339564689
EXEC #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339564689
FETCH #139811584780192:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339564689
CLOSE #139811584780192:c=0,e=0,dep=1,type=3,tim=3200339564689
EXEC #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=1805486652,tim=3200339565689
FETCH #139811585033520:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=1,dep=1,og=1,plh=1805486652,tim=3200339565689
CLOSE #139811585033520:c=0,e=0,dep=1,type=3,tim=3200339565689
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339565689
XCTEND rlbk=0, rd_only=1, tim=3200339565689
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339565689
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339565689
=====================
PARSING IN CURSOR #139811583404400 len=138 dep=1 uid=0 oct=6 lid=0 tim=3200339565689 hv=113741489 ad='815e70c8' sqlid='0kygk503cg3pj'
UPDATE /*+ OPT_PARAM('_parallel_syspls_obey_force' 'false') */ WRI$_OPTSTAT_OPR SET STATUS = :B2 , END_TIME = SYSTIMESTAMP WHERE ID = :B1 
END OF STMT
PARSE #139811583404400:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=1,plh=2375226716,tim=3200339565689
BINDS #139811583404400:

Bind#0
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286be98760 bln=22 avl=02 flg=09
 value=2
 Bind#1
 oacdty=02 mxl=22(21) mxlc=00 mal=00 scl=00 pre=00
 oacflg=13 fl2=206001 frm=00 csi=00 siz=24 off=0
 kxsbbbfp=7f286bdcc7f0 bln=22 avl=03 flg=09
 value=7327
EXEC #139811583404400:c=0,e=0,p=0,cr=2,cu=3,mis=0,r=1,dep=1,og=1,plh=2375226716,tim=3200339565689
STAT #139811583404400 id=1 cnt=0 pid=0 pos=1 obj=0 op='UPDATE WRI$_OPTSTAT_OPR (cr=2 pr=0 pw=0 str=1 time=0 us)'
STAT #139811583404400 id=2 cnt=1 pid=1 pos=1 obj=672 op='INDEX RANGE SCAN I_WRI$_OPTSTAT_OPR_ID (cr=2 pr=0 pw=0 str=1 time=0 us cost=1 size=20 card=1)'
CLOSE #139811583404400:c=0,e=0,dep=1,type=3,tim=3200339565689
PARSE #139811585628848:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339566689
XCTEND rlbk=0, rd_only=0, tim=3200339566689
EXEC #139811585628848:c=0,e=0,p=0,cr=0,cu=1,mis=0,r=0,dep=1,og=0,plh=0,tim=3200339566689
CLOSE #139811585628848:c=0,e=0,dep=1,type=3,tim=3200339566689
EXEC #139811584786576:c=343947,e=431947,p=0,cr=1774,cu=217,mis=0,r=1,dep=0,og=1,plh=0,tim=3200339566689
WAIT #139811584786576: nam='SQL*Net message to client' ela= 0 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=3200339566689
WAIT #139811584786576: nam='SQL*Net message from client' ela= 1000 driver id=1650815232 #bytes=1 p3=0 obj#=-1 tim=3200339567689
CLOSE #139811584786576:c=0,e=0,dep=0,type=1,tim=3200339567689
=====================
PARSING IN CURSOR #139811584782168 len=55 dep=0 uid=114 oct=42 lid=114 tim=3200339567689 hv=2217940283 ad='0' sqlid='06nvwn223659v'
alter session set events '10046 trace name context off'
END OF STMT
PARSE #139811584782168:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,plh=0,tim=3200339567689
EXEC #139811584782168:c=1000,e=1000,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,plh=0,tim=3200339568689

*** TRACE CONTINUES IN FILE /u01/app/oracle/diag/rdbms/db12201/db12201/trace/db12201_ora_20607_STATUS.trc ***