Validation of Sort Sizes in an Oracle10g Database Michael R. Ault This test was constructed as a repeatable test case to show that the principles set forth in Don Burleson’s article Undocumented secrets for super-sizing your PGA are correct in most of the cases that I see as an Oracle tuning consultant. . Test Plan: 1. Establish test parameters: This test is designed to show the affects of varying the settings of pga_aggregate_target, “_pga_max_size” and “_smm_px_max_size” on a users sort area size for both serial and parallel queries. 2. Methodology: a. Establish a large enough table that will ensure all test sorts will spill to disk, thus ensuring the maximum sort area is utilized b. Using the table from (a.) run repeated tests with varying set points for the parameters in a 10g database and utilize the v$workarea tables to view the changes in sort areas for both serial and parallel sorts. c. Values to be checked: a. Pga_aggregate_target of 1 gigabyte with default values for all undocumented parameters with a serial sort. b. Pga_aggregate_target of 4 gigabytes with default values for all undocumented parameters with a serial sort. c. Pga_aggregate_target of 4 gigabytes with “_pga_max_size” set to 200 megabytes and default for all other undocumented parameters with a serial sort. d. Pga_aggregate_target of 4 gigabytes with “_pga_max_size” set to 200 megabytes and “_smm_px_max_size” set to 333, varying the degree of parallel for the test query from 2 to 7. d. Correlate the values and generate test documentation with findings. Test System The test is being accomplished utilizing a 3.0 gigahertz hyper threading P4 based system running the RedHat 3 kernel and utilizing the 10.1.0.3 release of Oracle. The test system runs against an 8 disk Nstore disk array that is in a RAID1 configuration with 1 128K stripe width; all disks participate in the stripe. The total available capacity is 120 gigabytes of external storage with two additional internal drives each with 110 gigabytes of formatted capacity. The internal drives are used for the operating system and programs as well as swap area. The external drive array is utilized strictly for Oracle data. ASM is not being utilized. Test Table The test table consists of the columns shown in Figure 1 and contains simulated health record related data. desc test_pga Name Null? ----------------------------------------- -------NAME CODE1 CODE2 DISTRICT_NAME MONTH CODE3 CODE_3_DESC FIRST_DATE SEC_DATE COUNT1 COUNT2 COUNT3 Type ---------------------------VARCHAR2(128) VARCHAR2(4) VARCHAR2(4) VARCHAR2(30) VARCHAR2(6) VARCHAR2(9) VARCHAR2(30) DATE DATE NUMBER NUMBER NUMBER Figure 1: Test Table Columns The table size and row count data are shown in Figure 2: SQL> select table_name,num_rows,(blocks*8192)/(1024*1024) meg, avg_row_len from user_tables where table_name='TEST_PGA'; TABLE_NAME NUM_ROWS MEG AVG_ROW_LEN ------------------------------ ---------- ---------- ----------TEST_PGA 4547752 624.78125 124 Figure 2: Test Table Size Data With a size of over 624 megabytes this table should provide maximum sort segment sizing with the test SQL statement shown in Figure 3 for both serial and parallel sorts. SQL for serial tests: select * from test_pga order by district_name,name / SQL for parallel tests: select /*+ parallel(test_pga 7) */ * from test_pga order by district_name,name / Figure 3: Test SQL Statements The degree of parallel in the PARALLEL hint in the test SQL will be varied between 2 and 7 during the test. Figure 4 shows the validation of the Oracle version and options used during the test. SQL> select * from v$version; BANNER ---------------------------------------------------------------Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Prod PL/SQL Release 10.1.0.3.0 - Production CORE 10.1.0.3.0 Production TNS for Linux: Version 10.1.0.3.0 - Production NLSRTL Version 10.1.0.3.0 – Production Figure 4: Test System Oracle Verification Figure 5 shows the operating system version validate data. [oracle@aultlinux3 test]$ uname -a Linux aultlinux3 2.6.9-5.ELsmp #1 SMP Wed Jan 5 19:30:39 EST 2005 i686 i686 i386 GNU/Linux Figure 5: OS Validation Appendix A contains the full list of documented and undocumented parameters form the start of the test. Figure 6 shows the baseline startup statistics from the test system. SQL> ORACLE instance started. Total System Global Area 1073741824 bytes Fixed Size 782568 bytes Variable Size 355208984 bytes Database Buffers 717225984 bytes Redo Buffers 524288 bytes Database mounted. Database opened. Figure 6: Startup Statistics Figure 7 shows all non-default initialization parameters at the start of testing. Mon Sep 05 page 1 Non-Default Initialization Parameters NUM TYPE NAME ---- ----- ------------------------------------317 6 __db_cache_size 96 6 __java_pool_size 94 6 __large_pool_size 92 6 __shared_pool_size 779 2 audit_trail 751 2 background_dump_dest 389 2 compatible 296 2 control_files 754 309 668 465 787 2 3 2 3 2 core_dump_dest db_block_size db_domain db_file_multiblock_read_count db_name VALUE ---------------------717225984 8388608 4194304 234881024 TRUE /home/oracle/admin/test/bdump 10.1.0.2.0 /home/oracle/oradata/test/con trol01.ctl, /home/oracle/orada ta/test/control02.ctl, /home/ oracle/oradata/test/control03 .ctl /home/oracle/admin/test/cdump 8192 32 test 479 2 db_recovery_file_dest 480 331 675 6 db_recovery_file_dest_size 3 db_writer_processes 2 dispatchers 119 706 790 939 20 662 52 285 807 98 608 609 752 3 3 3 6 3 2 6 6 2 6 2 2 2 enqueue_resources job_queue_processes open_cursors pga_aggregate_target processes remote_login_passwordfile sga_max_size sga_target star_transformation_enabled streams_pool_size undo_management undo_tablespace user_dump_dest /home/oracle/flash_recovery_ar ea 2147483648 7 (PROTOCOL=TCP) (SERVICE=testX DB) 3000 10 300 1073741824 600 EXCLUSIVE 1073741824 1073741824 TRUE 104857600 AUTO UNDOTBSP2 /home/oracle/admin/test/udump 30 rows selected. Figure 7: Non-Default Initialization Parameters The test results will be captured by procedure and placed into the test_results table: desc test_results Name Null? ----------------------------------------- -------SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW Type ------------------NUMBER NUMBER NUMBER NUMBER NUMBER NUMBER VARCHAR2(12) The following procedure will be used to populate the test results table: create or replace procedure get_results as x boolean; i integer; begin x:=true; while x loop insert into test_results SELECT sid, work_area_size, expected_size, actual_mem_used, max_mem_used, tempseg_size, to_char(sysdate,'ddmmyyhh24miss') FROM V$SQL_WORKAREA_ACTIVE WHERE operation_type='SORT'; commit; select count(*) into i from V$SQL_WORKAREA_ACTIVE WHERE operation_type='SORT'; if i=0 then x:=false; end if; dbms_lock.sleep(1); end loop; end; / The procedure selects results into the test results table every second while it still sees sorts occurring. This is a test environment dedicated to this test so no other users will be present on the system. In a busy system the procedure would have to be modified to allow for the proper SIDS to be captured. The TEST_RESULTS table will be truncated after each test run (the results will be moved to an excel spreadsheet for analysis). This concludes the documentation of the test platform and start conditions for the test. Results The results show close agreement with the predicted behavior. The two sets of tests involved serial sort behavior and parallel sort behavior. Serial Sort Behavior For the serial sort test Chart 1 shows the results in graphic form. Predicted Verses Actual Sort Size 250 Megabytes 200 150 100 50 0 1g 4g PGA_AGGREGATE_TARGET 4g 400 pms Predicted Actual Chart 1: Predicted Verses Actual Sort Size (Serial Sorts) The data used to compile chart one is shown in Table 1 and was derived by taking the maximum sort memory utilized from the results for a specific test. All serial test results are in Appendix B. PAT/PMS 1g Default PMS 4g Default PMS 4g 400M PMS Predicted 51.2 100 200 Actual 45.5 97.578125 172.890625 Table 1: Predicted Verses Actual Data Chart While we didn’t achieve the full 200 megabytes expected, we still increased available sort size by a factor of 3.8, very close to the predicted factor of 4. Parallel Sort Behavior Parallel sort area size behavior under different settings of DOP and a constant 4 Gigabyte (actually 4g-1 byte) PGA_AGGREGATE_TARGET and 333 megabyte setting for “_smm_px_max_size” also tracked with predictions within expected overhead margins. Chart 2 shows the actual results verses predicted results for the parallel query testing. Memory (Meg) Predicted Verses Actual Size for Differing DOP 180 160 140 120 100 80 60 40 20 0 DOP 2 DOP 3 DOP 4 DOP 5 DOP 6 Degree of Parallel DOP 7 Predicted Size Actual Size Chart 2: Actual Verses Predicted Sort Size for Various DOP Settings Predicted sizes were calculated by dividing the “_smm_px_max_size” setting by the degree of parallel. Actual sizes were taken form the results data for the maximum sort memory size value for the parallel sessions. Table 2 shows the numerical data for Chart 2. DOP DOP 2 DOP 3 DOP 4 DOP 5 DOP 6 DOP 7 Predicted Sort Size 166.5 111 83.25 66.6 55.5 47.57143 Actual Sort Size 142.8828125 97.578125 80.6328125 55.0625 55.0625 42.4140625 Table 2: Actual Verses Predicted Values for Various DOP Settings Notice that a DOP of 5 or 6 resulted in the same memory setting for sorts. Also notice that the actual size of 80.63 is very close to the predicted setting of 83.25 (84 if a ceiling function is used) for a DOP of 4. The complete results for all DOP tests are in Appendix C. Appendix A: All Initialization Parameters In this appendix I list all of the initialization parameters, both documented and undocumented for the TEST environment. Documented Initialization Parameters Mon Sep 05 page INIT.ORA PARAMETER LISTING NUM TYPE NAME ---- ----- ------------------------------------660 1 O7_DICTIONARY_ACCESSIBILITY 317 6 __db_cache_size 96 6 __java_pool_size 94 6 __large_pool_size 92 6 __shared_pool_size 208 3 active_instance_count #### 3 aq_tm_processes 450 3 archive_lag_target #### 2 asm_diskgroups #### 2 asm_diskstring #### 3 asm_power_limit 761 2 audit_file_dest VALUE -----------------------------FALSE 717225984 8388608 4194304 234881024 0 0 1 /home/oracle/DBHome1/rdbms/aud it 666 779 750 751 167 712 802 349 350 679 469 472 180 672 389 303 296 1 2 2 2 1 3 1 2 2 3 1 3 2 3 2 3 2 audit_sys_operations audit_trail background_core_dump background_dump_dest backup_tape_io_slaves bitmap_merge_area_size blank_trimming buffer_pool_keep buffer_pool_recycle circuits cluster_database cluster_database_instances cluster_interconnects commit_point_strength compatible control_file_record_keep_time control_files FALSE TRUE partial /home/oracle/admin/test/bdump FALSE 1048576 FALSE 754 42 711 653 714 690 323 320 324 321 322 304 630 308 2 3 3 2 2 1 6 6 6 6 6 3 1 1 core_dump_dest cpu_count create_bitmap_area_size create_stored_outlines cursor_sharing cursor_space_for_time db_16k_cache_size db_2k_cache_size db_32k_cache_size db_4k_cache_size db_8k_cache_size db_block_buffers db_block_checking db_block_checksum /home/oracle/admin/test/cdump 2 8388608 FALSE 1 1 10.1.0.2.0 7 /home/oracle/oradata/test/con trol01.ctl, /home/oracle/orada ta/test/control02.ctl, /home/ oracle/oradata/test/control03 .ctl EXACT FALSE 0 0 0 0 0 0 FALSE TRUE 1 Mon Sep 05 page INIT.ORA PARAMETER LISTING NUM TYPE NAME ---- ----- ------------------------------------309 3 db_block_size 378 2 db_cache_advice 318 6 db_cache_size 473 2 db_create_file_dest 474 2 db_create_online_log_dest_1 475 2 db_create_online_log_dest_2 476 2 db_create_online_log_dest_3 477 2 db_create_online_log_dest_4 478 2 db_create_online_log_dest_5 668 2 db_domain 465 3 db_file_multiblock_read_count 301 2 db_file_name_convert 464 3 db_files 557 3 db_flashback_retention_target 325 6 db_keep_cache_size 787 2 db_name 479 2 db_recovery_file_dest VALUE -----------------------------8192 ON 0 480 326 789 331 163 576 #### 6 6 2 3 3 1 2 2147483648 0 test 7 0 FALSE /home/oracle/DBHome1/dbs/dr1hf dwh.dat #### 2 dg_broker_config_file2 /home/oracle/DBHome1/dbs/dr2hf dwh.dat #### 160 675 1 dg_broker_start 1 disk_asynch_io 2 dispatchers FALSE TRUE (PROTOCOL=TCP) (SERVICE=testX DB) 670 575 #### 119 45 440 441 522 523 625 185 152 154 778 3 3 1 3 2 2 2 3 3 2 1 2 2 2 60 2924 FALSE 3000 db_recovery_file_dest_size db_recycle_cache_size db_unique_name db_writer_processes dbwr_io_slaves ddl_wait_for_locks dg_broker_config_file1 distributed_lock_timeout dml_locks drs_start enqueue_resources event fal_client fal_server fast_start_io_target fast_start_mttr_target fast_start_parallel_rollback file_mapping fileio_network_adapters filesystemio_options fixed_date 32 200 1440 0 test /home/oracle/flash_recovery_ar ea 0 0 LOW FALSE none 2 Mon Sep 05 page INIT.ORA PARAMETER LISTING NUM TYPE NAME ---- ----- ------------------------------------486 2 gc_files_to_locks 197 3 gcs_server_processes 667 2 global_context_pool_size 669 1 global_names 739 3 hash_area_size 58 3 hi_shared_memory_address #### 1 hs_autoregister 791 4 ifile 44 2 instance_groups 673 2 instance_name 585 3 instance_number 113 2 instance_type 104 3 java_max_sessionspace_size 97 6 java_pool_size 103 3 java_soft_sessionspace_limit 706 3 job_queue_processes 95 6 large_pool_size 654 2 ldap_directory_access 25 3 license_max_sessions 663 3 license_max_users 26 3 license_sessions_warning 681 2 local_listener 19 2 lock_name_space 61 1 lock_sga 397 2 log_archive_config 405 2 log_archive_dest 407 2 log_archive_dest_1 416 2 log_archive_dest_10 408 2 log_archive_dest_2 409 2 log_archive_dest_3 410 2 log_archive_dest_4 411 2 log_archive_dest_5 412 2 log_archive_dest_6 413 2 log_archive_dest_7 414 2 log_archive_dest_8 415 2 log_archive_dest_9 417 2 log_archive_dest_state_1 426 2 log_archive_dest_state_10 418 2 log_archive_dest_state_2 419 2 log_archive_dest_state_3 420 2 log_archive_dest_state_4 421 2 log_archive_dest_state_5 422 2 log_archive_dest_state_6 423 2 log_archive_dest_state_7 424 2 log_archive_dest_state_8 425 2 log_archive_dest_state_9 406 2 log_archive_duplex_dest 434 2 log_archive_format 433 1 log_archive_local_first 427 3 log_archive_max_processes VALUE -----------------------------0 FALSE 131072 0 TRUE test 0 RDBMS 0 0 0 10 0 NONE 0 0 0 FALSE enable enable enable enable enable enable enable enable enable enable %t_%s_%r.dbf TRUE 2 3 Mon Sep 05 page INIT.ORA PARAMETER LISTING NUM TYPE NAME ---- ----- ------------------------------------430 3 log_archive_min_succeed_dest 399 1 log_archive_start 432 3 log_archive_trace 445 3 log_buffer 447 3 log_checkpoint_interval 448 3 log_checkpoint_timeout 528 1 log_checkpoints_to_alert 302 2 log_file_name_convert 538 3 logmnr_max_persistent_sessions 387 3 max_commit_propagation_delay 678 3 max_dispatchers 753 2 max_dump_file_size 657 3 max_enabled_roles 677 3 max_shared_servers 140 2 nls_calendar 146 2 nls_comp 137 2 nls_currency 136 2 nls_date_format 135 2 nls_date_language 145 2 nls_dual_currency 139 2 nls_iso_currency 132 2 nls_language 147 2 nls_length_semantics 148 2 nls_nchar_conv_excp 138 2 nls_numeric_characters 134 2 nls_sort 133 2 nls_territory 141 2 nls_time_format 143 2 nls_time_tz_format 142 2 nls_timestamp_format 144 2 nls_timestamp_tz_format 764 3 object_cache_max_size_percent 763 3 object_cache_optimal_size #### 6 olap_page_pool_size 790 3 open_cursors 771 3 open_links 772 3 open_links_per_instance 960 3 optimizer_dynamic_sampling 777 2 optimizer_features_enable 872 3 optimizer_index_caching 871 3 optimizer_index_cost_adj 795 2 optimizer_mode 793 2 os_authent_prefix 655 1 os_roles 847 1 parallel_adaptive_multi_user 849 1 parallel_automatic_tuning 729 3 parallel_execution_message_size 726 2 parallel_instance_group 721 3 parallel_max_servers 708 3 parallel_min_percent VALUE -----------------------------1 FALSE 0 524288 0 1800 FALSE 1 700 UNLIMITED 150 AMERICAN BYTE FALSE AMERICA 10 102400 0 300 4 4 2 10.1.0.3 0 100 ALL_ROWS ops$ FALSE TRUE FALSE 2148 40 0 4 Mon Sep 05 page INIT.ORA PARAMETER LISTING NUM TYPE NAME ---- ----- ------------------------------------720 3 parallel_min_servers 470 1 parallel_server 471 3 parallel_server_instances 848 3 parallel_threads_per_cpu 939 6 pga_aggregate_target 702 2 plsql_code_type 698 2 plsql_compiler_flags 704 1 plsql_debug 699 2 plsql_native_library_dir 700 3 plsql_native_library_subdir_count 705 3 plsql_optimize_level 697 1 plsql_v2_compatibility 701 2 plsql_warnings 56 1 pre_page_sga 20 3 processes 881 2 query_rewrite_enabled 882 2 query_rewrite_integrity 656 2 rdbms_server_dn 467 1 read_only_open_delayed 529 3 recovery_parallelism 396 2 remote_archive_enable 693 2 remote_dependencies_mode 682 2 remote_listener 662 2 remote_login_passwordfile 658 1 remote_os_authent 659 1 remote_os_roles 579 1 replication_dependency_tracking 24 1 resource_limit 171 2 resource_manager_plan 627 3 resumable_timeout 600 2 rollback_segments 689 2 serial_reuse 674 2 service_names 691 3 session_cached_cursors 766 3 session_max_open_files 21 3 sessions 52 6 sga_max_size 285 6 sga_target 749 2 shadow_core_dump 57 3 shared_memory_address 100 6 shared_pool_reserved_size 93 6 shared_pool_size 680 3 shared_server_sessions 676 3 shared_servers #### 1 skip_unusable_indexes 695 2 smtp_out_server 781 3 sort_area_retained_size 780 3 sort_area_size 788 2 sp_name 112 2 spfile VALUE -----------------------------0 FALSE 1 2 1073741824 INTERPRETED INTERPRETED, NON_DEBUG FALSE 0 2 FALSE DISABLE:ALL FALSE 600 TRUE enforced FALSE 0 true TIMESTAMP EXCLUSIVE FALSE FALSE TRUE FALSE 0 disable test 0 10 665 1073741824 1073741824 partial 0 11744051 0 1 TRUE 0 65536 test /home/oracle/DBHome1/dbs/spfil 5 Mon Sep 05 page INIT.ORA PARAMETER LISTING NUM TYPE NAME VALUE ---- ----- ------------------------------------- ---------------------etest.ora 800 792 913 #### 431 482 807 981 98 161 517 23 22 124 2 597 598 608 621 609 59 752 694 941 1 1 2 2 2 2 2 2 6 1 3 3 1 1 2 3 3 2 3 2 1 2 2 2 sql92_security sql_trace sql_version sqltune_category standby_archive_dest standby_file_management star_transformation_enabled statistics_level streams_pool_size tape_asynch_io thread timed_os_statistics timed_statistics trace_enabled tracefile_identifier transactions transactions_per_rollback_segment undo_management undo_retention undo_tablespace use_indirect_data_buffers user_dump_dest utl_file_dir workarea_size_policy 259 rows selected. FALSE FALSE NATIVE DEFAULT ?/dbs/arch MANUAL TRUE TYPICAL 104857600 TRUE 0 0 TRUE TRUE 731 5 AUTO 900 UNDOTBSP2 FALSE /home/oracle/admin/test/udump AUTO 6 Undocumented Initialization Parameters In the interest of full disclosure, here is the complete list of undocumented parameters at the start of the test. Mon Sep 05 page 1 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_4031_dump_bitvec bitvec to specify 20479 20479 dumps prior to 4031 error _4031_dump_interval Dump 4031 error once 300 for each n-second interval 300 _4031_max_dumps Maximum number of 4031 dumps for this process 100 100 _4031_sga_dump_interval Dump 4031 SGA heapdump error once for each n-second interval 3600 3600 _4031_sga_max_dumps Maximum number of SGA heapdumps 10 10 _NUMA_instance_mapping Set of nodes that Not specified Not specified this instance should run on _NUMA_pool_size aggregate size in bytes of NUMA pool _PX_use_large_pool Use Large Pool as FALSE source of PX buffers FALSE __db_cache_size Actual size of DEFAULT buffer pool for standard block size buffers 717225984 __java_pool_size Actual size in bytes 8388608 of java pool 8388608 __large_pool_size Actual size in bytes 4194304 of large pool 4194304 __shared_pool_size Actual size in bytes 234881024 of shared pool 234881024 _abort_recovery_on_join if TRUE, abort recovery on join reconfigurations FALSE _active_standby_fast_reconfiguration if TRUE optimize dlm TRUE reconfiguration for Not specified Not specified 717225984 FALSE TRUE Mon Sep 05 page 2 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------active/standby OPS _adaptive_direct_read _adaptive_fetch_enabled Adaptive Direct Read TRUE enable/disable TRUE adaptive fetch in parallel group by TRUE TRUE _add_stale_mv_to_dependency_list add stale mv to dependency list TRUE TRUE _addm_auto_enable governs whether ADDM TRUE gets run automatically after every AWR snapshot TRUE _addm_skiprules comma-separated list of ADDM nodes to skip _affinity_on enable/disable TRUE affinity at run time TRUE _aiowait_timeouts Number of aiowait timeouts before error is reported 100 100 _alert_expiration seconds before an alert message is moved to exception queue 604800 604800 _all_shared_dblinks treat all dblinks as shared _allocate_creation_order should files be FALSE examined in creation order during allocation FALSE _allocation_update_interval interval at which 3 successful search in L1 should be updated 3 _allow_commutativity allow for commutativity of +, * when comparing expressions TRUE TRUE _allow_error_simulation Allow error simulation for FALSE FALSE Mon Sep 05 page 3 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------testing _allow_level_without_connect_by allow level without connect by FALSE FALSE _allow_read_only_corruption allow read-only open FALSE even if database is corrupt FALSE _allow_resetlogs_corruption allow resetlogs even FALSE if it will cause corruption FALSE _allow_terminal_recovery_corruption Finish terminal FALSE recovery even if it may cause corruption FALSE _always_anti_join always use this CHOOSE method for anti-join when possible CHOOSE _always_semi_join always use this CHOOSE method for semi-join when possible CHOOSE _always_star_transformation always favor use of star transformation FALSE FALSE _app_ctx_vers enable app ctx versioning FALSE FALSE _aq_tm_scanlimit scan limit for Time 0 Managers to clean up IOT 0 _arch_io_slaves _array_update_vector_read_enabled ARCH I/O slaves Enable array update vector read 0 FALSE _ash_disk_filter_ratio Ratio of the number 10 of in-memory samples to the number of samples actually written to disk 10 _ash_disk_write_enable To enable or disable TRUE Active Session History flushing TRUE _ash_dummy_test_param Oracle internal 0 0 FALSE 0 Mon Sep 05 page 4 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------dummy ASH parameter used ONLY for testing! _ash_eflush_trigger The percentage above 66 which if the in-memory ASH is full the emergency flusher will be triggered 66 _ash_enable To enable or disable TRUE Active Session sampling and flushing TRUE _ash_sample_all To enable or disable FALSE sampling every connected session including ones waiting for idle waits FALSE _ash_sampling_interval Time interval between two successive Active Session samples in millisecs 1000 _ash_size To set the size of 1048618 the in-memory Active Session History buffers 1048618 _asm_acd_chunks initial ACD chunks created 1 1 _asm_allow_only_raw_disks Discovery only raw devices TRUE TRUE _asm_ausize _asm_blksize _asm_disk_repair_time allocation unit size 1048576 metadata block size 4096 seconds to wait 14400 before dropping a failing disk 1048576 4096 14400 _asm_libraries library search order ufs for discovery ufs _asm_maxio Maximum size of 1048576 1000 1048576 Mon Sep 05 page 5 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------individual I/O request _asm_stripesize _asm_stripewidth ASM file stripe size 131072 ASM file stripe 8 width 131072 8 _asm_wait_time Max/imum time to wait before asmb exits 18 _asmlib_test _asmsid _async_recovery_claims Osmlib test event 0 ASM instance id asm if TRUE, issue TRUE recovery claims asynchronously (DFS) 0 asm TRUE _async_recovery_reads if TRUE, issue TRUE recovery reads asynchronously (DFS) TRUE _avoid_prepare if TRUE, do not prepare a buffer when the master is local (DFS) TRUE TRUE _awr_corrupt_mode _awr_restrict_mode _b_tree_bitmap_plans AWR Corrupt Mode AWR Restrict Mode enable the use of bitmap plans for tables w. only B-tree indexes FALSE FALSE TRUE FALSE FALSE TRUE _backup_disk_io_slaves BACKUP Disk I/O slaves 0 0 _backup_io_pool_size memory to reserve from the large pool 1048576 1048576 _backup_kgc_bufsz specifies buffer size to be used for kgc compression 0 0 _backup_kgc_niters specifies number of iterations used for kgc compression 0 0 _backup_kgc_type specifies compression type used for kgc 0 0 18 Mon Sep 05 page 6 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------compression _backup_ksfq_bufcnt number of the ksfq buffers used for backup/restore 0 0 _backup_ksfq_bufsz size of the ksfq buffer used for backup/restore 0 0 _bct_bitmaps_per_file number of bitmaps to 8 store for each datafile 8 _bct_buffer_allocation_max maximum size of all change tracking buffer allocations, in bytes 104857600 104857600 _bct_buffer_allocation_min_extents mininum number of extents to allocate per buffer allocation 1 1 _bct_buffer_allocation_size size of one change 2097152 tracking buffer allocation, in bytes 2097152 _bct_chunk_size change tracking 0 datafile chunk size, in bytes 0 _bct_crash_reserve_size change tracking reserved crash recovery SGA space, in bytes 262144 _bct_file_block_size block size of change 0 tracking file, in bytes 0 _bct_file_extent_size extent size of change tracking file, in bytes 0 0 _bct_initial_private_dba_buffer_size initial number of 0 entries in the private change tracking dba buffers 0 262144 Mon Sep 05 page 7 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_bct_public_dba_buffer_size total size of all 0 0 public change tracking dba buffers, in bytes _bitmap_or_improvement_enabled controls extensions TRUE to partition pruning for general predicates TRUE _block_change_tracking change tracking possible TRUE TRUE _blocks_per_cache_server number of consecutive blocks per global cache server 128 128 _bt_mmv_query_rewrite_enabled allow rewrites with multiple MVs and base tables TRUE TRUE _buffer_busy_wait_timeout buffer busy wait 100 time in centiseconds 100 _bufq_stop_flow_control Stop enforcing flow FALSE control for buffered queues FALSE _bump_highwater_mark_count how many blocks should we allocate per free list on advancing HWM 0 _bwr_for_flushed_pi if TRUE, generate a TRUE BWR for a flushed PI (DFS) TRUE _cache_stats_monitor if TRUE, enable cache stats monitoring TRUE TRUE _cgs_send_timeout CGS send timeout value 300 300 _check_block_after_checksum perform block check after checksum if both are turned on TRUE TRUE _check_ts_threshold check tablespace 0 0 0 Mon Sep 05 page 8 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------thresholds _cleanup_rollback_entries no. of undo entries to apply per transaction cleanup 100 100 _close_cached_open_cursors close cursors cached FALSE by PL/SQL at each commit FALSE _cluster_library cluster library selection clss clss _collapse_wait_history collapse wait history FALSE FALSE _collect_undo_stats Collect Statistics v$undostat TRUE TRUE _column_compression_factor Column compression ratio 0 0 _column_elimination_off turn off predicate-only column elimination FALSE FALSE _column_tracking_level column usage tracking 1 1 _complex_view_merging enable complex view merging TRUE TRUE _controlfile_block_size control file block size in bytes 0 0 _controlfile_enqueue_dump dump the system states after controlfile enqueue timeout FALSE FALSE _controlfile_enqueue_timeout control file enqueue 900 timeout in seconds 900 _controlfile_update_check controlfile update sanity check OFF OFF _convert_set_to_join enables conversion of set operator to join FALSE FALSE Mon Sep 05 page 9 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_coord_message_buffer parallel recovery 0 0 coordinator side extra message buffer size _corrupted_rollback_segments corrupted undo segment list _cost_equality_semi_join enables costing of equality semi-join TRUE TRUE _cpu_to_io divisor for converting CPU cost to I/O cost 0 0 _cr_grant_global_role if TRUE, grant lock TRUE for CR requests when block is in global role TRUE _cr_grant_local_role if TRUE, grant lock for CR using 3way ping when block in local role FALSE _cr_server_log_flush if TRUE, flush redo TRUE log before serving a CR buffer (DFS) TRUE _cursor_bind_capture_area_size maximum size of the cursor bind capture area 400 400 _cursor_bind_capture_interval interval (in 900 seconds) between two bind capture for a cursor 900 _cursor_cache_frame_bind_memory frame & bind buffer caching FALSE _cursor_db_buffers_pinned additional number of 140 buffers a cursor can pin at once 140 _cursor_plan_enabled enable collection and display of cursor plans TRUE TRUE _cursor_plan_hash_version version of cursor 1 1 FALSE FALSE Mon Sep 05 page 10 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------plan hash value _cursor_plan_unparse_enabled enables/disables TRUE using unparse to build projection/predicate s TRUE _db_aging_cool_count Touch count set when 1 buffer cooled 1 _db_aging_freeze_cr Make CR buffers always be too cold to keep in cache FALSE FALSE _db_aging_hot_criteria Touch count which sends a buffer to head of replacement list 2 2 _db_aging_stay_count Touch count set when 0 buffer moved to head of replacement list 0 _db_aging_touch_time Touch count which sends a buffer to head of replacement list 3 _db_always_check_system_ts Always perform block TRUE check and checksum for System tablespace TRUE _db_block_buffers Number of database blocks cached in memory: hidden parameter 85671 85671 _db_block_cache_clone Always clone data blocks on get (for debugging) FALSE FALSE _db_block_cache_history buffer header 0 tracing (non-zero only when debugging) 0 _db_block_cache_num_umap number of unmapped buffers (for tracking swap calls 0 3 0 Mon Sep 05 page 11 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------on blocks) _db_block_cache_protect protect database blocks (true only when debugging) FALSE FALSE _db_block_check_for_debug Check more and dump block before image for debugging FALSE FALSE _db_block_granule_interval number of granules to process 10 10 _db_block_hash_buckets Number of database block hash buckets 262144 262144 _db_block_hash_latches Number of database block hash latches 1024 1024 _db_block_hi_priority_batch_size Fraction of writes for high priority reasons 0 0 _db_block_known_clean_pct Initial Percentage 2 of buffers to maintain known clean 2 _db_block_lru_latches number of lru latches 56 _db_block_max_cr_dba Maximum Allowed 6 Number of CR buffers per dba 6 _db_block_max_scan_pct Percentage of buffers to inspect when looking for free 40 40 _db_block_med_priority_batch_size Fraction of writes for medium priority reasons 0 0 _db_block_numa _db_block_prefetch_limit Number of NUMA nodes 1 Prefetch limit in 0 blocks 1 0 _db_block_prefetch_quota Prefetch quota as a percent of cache size 10 56 10 Mon Sep 05 page 12 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_db_block_trace_protect trace buffer protect FALSE calls FALSE _db_cache_advice_batch_size cache advisory simulation batch size 128 128 _db_cache_advice_sample_factor cache advisory sampling factor 4 4 _db_cache_crx_check check for costly crx FALSE examination functions FALSE _db_cache_pre_warm Buffer Cache Pre-Warm Enabled : hidden parameter TRUE TRUE _db_fast_obj_check enable fast object drop sanity check FALSE FALSE _db_fast_obj_truncate enable fast object truncate TRUE TRUE _db_file_direct_io_count Sequential I/O buf size 1048576 1048576 _db_file_format_io_buffers Block formatting I/O 4 buf count 4 _db_file_noncontig_mblock_read_count number of noncontiguous db blocks to be prefetched 11 11 _db_handles System-wide simultaneous buffer operations 3000 3000 _db_handles_cached Buffer handles cached each process 5 5 _db_large_dirty_queue Number of buffers which force dirty queue to be written 25 25 _db_mttr_advice _db_mttr_partitions MTTR advisory ON number of partitions 0 for MTTR advisory ON 0 Mon Sep 05 page 13 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_db_mttr_sample_factor MTTR simulation sampling factor 64 64 _db_mttr_sim_target MTTR simulation targets _db_mttr_sim_trace_size MTTR simulation trace size 256 256 _db_mttr_trace_to_alert dump trace entries to alert file FALSE FALSE _db_percent_hot_default Percent of default buffer pool considered hot 50 50 _db_percent_hot_keep Percent of keep buffer pool considered hot 0 0 _db_percent_hot_recycle Percent of recycle buffer pool considered hot 0 0 _db_percpu_create_cachesize size of cache created per cpu in deferred cache create 2 2 _db_recovery_temporal_file_dest default database recovery temporal file location _db_todefer_cache_create buffer cache deferred create FALSE FALSE _db_writer_chunk_writes Number of writes 0 DBWR should wait for 0 _db_writer_coalesce_area_size Size of memory allocated to dbwriter for coalescing writes 1048576 1048576 _db_writer_coalesce_write_limit Limit on size of coalesced write 131072 131072 _db_writer_flush_imu If FALSE, DBWR will not downgrade IMU TRUE TRUE Mon Sep 05 page 14 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------txns for AGING _db_writer_histogram_statistics maintain dbwr FALSE histogram statistics in x$kcbbhs FALSE _db_writer_max_writes Max number of outstanding DB Writer IOs 0 0 _db_writer_scan_depth_pct Percentage of LRU buffers for dbwr to scan when looking for dirty 25 25 _dbg_proc_startup debug process startup FALSE FALSE _dbwr_async_io Enable dbwriter asynchronous writes TRUE TRUE _dbwr_scan_interval dbwriter scan interval 300 300 _dbwr_tracing Enable dbwriter tracing 0 0 _dedicated_server_post_wait dedicated server post/wait FALSE FALSE _dedicated_server_post_wait_call dedicated server post/wait call FALSE FALSE _default_non_equality_sel_check sanity check on default selectivity for like/range predicate TRUE TRUE _delay_index_maintain delays index maintenance until after MV is refreshed TRUE TRUE _diag_daemon _disable_datalayer_sampling start DIAG daemon disable datalayer sampling TRUE FALSE TRUE FALSE _disable_file_locks disable file locks for control, data, redo log files FALSE FALSE Mon Sep 05 page 15 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_disable_function_based_index disable FALSE function-based index matching FALSE _disable_health_check _disable_image_check Disable Health Check FALSE Disable Oracle FALSE executable image checking FALSE FALSE _disable_incremental_checkpoints Disable incremental checkpoints for thread recovery FALSE FALSE _disable_kcbhxor_osd disable kcbh(c)xor OSD functionality FALSE FALSE _disable_latch_free_SCN_writes_via_32 disable latch-free cas SCN writes using 32-bit compare & swap FALSE FALSE _disable_latch_free_SCN_writes_via_64 disable latch-free cas SCN writes using 64-bit compare & swap FALSE FALSE _disable_logging _disable_multiple_block_sizes Disable logging disable multiple block size support (for debugging) FALSE FALSE FALSE FALSE _disable_odm _disable_recoverable_recovery disable odm feature FALSE Disable the new FALSE recoverable recovery mechanism FALSE FALSE _disable_sample_io_optim disable row sampling FALSE IO optimization FALSE _disable_savepoint_reset disable the fix for bug 1402161 FALSE FALSE _disable_selftune_checkpointing Disable self-tune checkpointing FALSE FALSE _disable_sun_rsm Disable IPC OSD support for Sun RSMAPI TRUE TRUE Mon Sep 05 page 16 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_disable_system_state disable system state FALSE FALSE dump _disable_txn_alert disable txn layer alert 0 _discrete_transactions_enabled _dispatcher_rate_scale enable OLTP mode FALSE scale to display rate statistic (100ths of a second) _dispatcher_rate_ttl time-to-live for rate statistic (100ths of a second) _distinct_view_unnesting enables unnesting of FALSE in subquery into distinct view 0 FALSE FALSE _distributed_recovery_connection_hold number of seconds _time RECO holds outbound connections open 200 200 _dlm_send_timeout DLM send timeout value 30000 30000 _dlmtrace Trace string of global enqueue type(s) _dml_monitoring_enabled enable modification monitoring TRUE TRUE _domain_index_batch_size maximum number of rows from one call to domain index fetch routine 2000 2000 _domain_index_dml_batch_size maximum number of 200 rows for one call to domain index dml routines 200 _ds_iocount_iosize Dynamic Sampling Service defaults: #IOs and IO Size 6553664 6553664 _dss_cache_flush enable full cache flush for parallel execution FALSE FALSE Mon Sep 05 page 17 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_dump_common_subexpressions dump common subexpressions FALSE FALSE _dump_connect_by_loop_data dump connect by loop FALSE error message into trc file FALSE _dump_cursor_heap_sizes dump comp/exec heap FALSE sizes to tryace file FALSE _dump_interval_limit trace dump time interval limit (in seconds) 120 _dump_max_limit max number of dump 5 within dump interval 5 _dump_system_state_scope scope of sysstate local dump during instance termination local _dump_trace_scope scope of trace dump during a process crash global global _dynamic_rls_policies rls policies are dynamic TRUE TRUE _dynamic_stats_threshold delay threshold (in seconds) between sending statistics messages 30 30 _eliminate_common_subexpr enables elimination of common sub-expressions TRUE TRUE _enable_NUMA_optimization Enable NUMA specific TRUE optimizations TRUE 120 _enable_block_level_transaction_recov enable block level ery recovery TRUE TRUE _enable_cscn_caching enable commit SCN caching for all transactions FALSE FALSE _enable_default_affinity to enable default implementation of 0 0 Mon Sep 05 page 18 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------affinity osds _enable_fast_ref_after_mv_tbs enable fast refresh after move tablespace FALSE FALSE _enable_hash_overflow TRUE - enable hash cluster overflow based on SIZE FALSE FALSE _enable_kgh_policy temporary to disable/enable kgh policy FALSE FALSE _enable_list_io _enable_nativenet_tcpip Enable List I/O FALSE Enable skgxp driver FALSE usage for native net FALSE FALSE _enable_refresh_schedule enable or disable MV TRUE refresh scheduling (revert to 9.2 behavior) TRUE _enable_tablespace_alerts enable tablespace alerts TRUE TRUE _enable_type_dep_selectivity enable type dependent selectivity estimates TRUE TRUE _enqueue_debug_multi_instance debug enqueue multi instance FALSE FALSE _enqueue_hash enqueue hash table length 1365 1365 _enqueue_hash_chain_latches enqueue hash chain latches 2 2 _enqueue_locks locks for managed enqueues 8150 8150 _expand_aggregates _explain_rewrite_mode expand aggregates allow additional messages to be generated during explain rewrite TRUE FALSE TRUE FALSE _fair_remote_cvt if TRUE enables fair FALSE FALSE Mon Sep 05 page 19 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------remote convert _fairness_threshold number of times to CR serve before downgrading lock (DFS) 4 4 _fast_dual_enabled enable/disable fast dual TRUE TRUE _fast_full_scan_enabled enable/disable index TRUE fast full scan TRUE _fast_start_instance_recovery_target cluster availability 0 target time in RAC environment 0 _fic_algorithm_set Set Frequent Itemset automatic Counting Algorithm automatic _fic_area_size size of Frequent Itemset Counting work area 131072 131072 _fic_max_length Frequent Itemset Counting Maximum Itemset Length 20 20 _fic_outofmem_candidates Frequent Itemset Counting Out Of Memory Candidates Generation FALSE FALSE _fifth_spare_parameter fifth spare parameter - string _first_spare_parameter first spare parameter - integer _flashback_allow_noarchivelog Allow enabling flashback on noarchivelog database FALSE FALSE _flashback_barrier_interval Flashback barrier interval in seconds 1800 1800 _flashback_copy_latches Number of flashback copy latches 10 10 Mon Sep 05 page 20 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_flashback_fuzzy_barrier Use flashback fuzzy TRUE TRUE barrier _flashback_generation_buffer_size flashback generation 2097152 buffer size 2097152 _flashback_hint_barrier_percent Flashback hint barrier percent 20 20 _flashback_log_min_size Minimum flashback log size 100 100 _flashback_log_size _flashback_logfile_enqueue_timeout Flashback log size flashback logfile enqueue timeout for opens 1000 600 1000 600 _flashback_max_log_size Maximum flashback log size in bytes (OS limit) 0 0 _flashback_n_log_per_thread Desired number of flashback logs per flashback thread 128 128 _flashback_standby_barrier_interval Flashback standby barrier interval in seconds 1800 1800 _flashback_verbose_info Print verbose information about flashback database FALSE FALSE _flashback_write_size_qm Desired flashback write size in quarter MB 4 4 _force_datefold_trunc force use of trunc for datefolding rewrite FALSE FALSE _force_temptables_for_gsets executes concatenation of rollups using temp tables FALSE FALSE _fourth_spare_parameter fourth spare parameter - string _full_pwise_join_enabled enable full TRUE TRUE Mon Sep 05 page 21 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------partition-wise join when TRUE _gby_onekey_enabled enable use of one comparison of all group by keys TRUE TRUE _gc_affinity_limit dynamic affinity limit (DFS) 50 50 _gc_affinity_minimum dynamic affinity 1200 minimum activity per minute (DFS) 1200 _gc_affinity_time how often in minutes 10 to check affinity (DFS) 10 _gc_check_bscn if TRUE, check for stale blocks (DFS) TRUE TRUE _gc_defer_time how long to defer down converts for hot buffers (DFS) 3 3 _gc_element_percent global cache element 103 percent (DFS) 103 _gc_global_lru if TRUE, enable global lru (DFS) FALSE FALSE _gc_integrity_checks if TRUE, enable expensive integrity checks (DFS) TRUE TRUE _gc_keep_recovery_buffers if TRUE, make recovery buffers current (DFS) FALSE FALSE _gc_latches number of latches per LMS process (DFS) 5 5 _gc_statistics if TRUE, kcl statistics are maintained (DFS) TRUE TRUE _gc_use_cr if TRUE, allow CR pins on PI and WRITING buffers TRUE TRUE Mon Sep 05 page 22 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------(DFS) _gc_vector_read if TRUE, vector read TRUE current buffers (DFS) TRUE _gcs_fast_reconfig if TRUE, enable fast TRUE reconfiguration for gcs locks TRUE _gcs_latches number of gcs resource hash latches to be allocated per LMS process 0 _gcs_process_in_recovery if TRUE, process gcs TRUE requests during instance recovery _gcs_resources number of gcs resources to be allocated _gcs_shadow_locks number of pcm shadow locks to be allocated _generalized_pruning_enabled controls extensions TRUE to partition pruning for general predicates TRUE _ges_dd_debug if TRUE enables GES deadlock detection debug diagnostics FALSE FALSE _ges_diagnostics if TRUE enables GES diagnostics TRUE TRUE _ges_trace if TRUE enables TRUE GES/GCS debug traces TRUE _groupby_nopushdown_cut_ratio groupby nopushdown cut ratio 3 3 _groupby_orderby_combine groupby/orderby don't combine threshold 5000 5000 0 TRUE Mon Sep 05 page 23 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_gs_anti_semi_join_allowed enable anti/semi TRUE TRUE join for the GS query _hang_detection Hang Management detection interval 0 0 _hard_protection if TRUE enable H.A.R.D specific format changes FALSE FALSE _hash_join_enabled enable/disable hash join TRUE TRUE _hash_multiblock_io_count number of blocks hash join will read/write at once 0 0 _high_server_threshold high server thresholds 0 0 _hj_bit_filter_threshold hash-join bit filtering threshold (0 always enabled) 50 50 _idl_conventional_index_maintenance enable conventional index maintenance for insert direct load TRUE TRUE _idxrb_rowincr proportionality 100000000 constant for dop vs. rows in index rebuild 100000000 _ignore_desc_in_index ignore DESC in indexes, sort those columns ascending anyhow FALSE FALSE _improved_outerjoin_card improved outer-join cardinality calculation TRUE TRUE _improved_row_length_enabled enable the improvements for computing the average row length TRUE TRUE _imr_active Activate Instance TRUE TRUE Mon Sep 05 page 24 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------Membership Recovery feature _imr_max_reconfig_delay Maximum Reconfiguration delay (seconds) 300 300 _imr_splitbrain_res_wait Maximum wait for 600 split-brain resolution (seconds) 600 _imu_pools _in_memory_undo in memory undo pools 3 Make in memory undo TRUE for top level transactions 3 TRUE _index_join_enabled enable the use of index joins TRUE TRUE _index_prefetch_factor index prefetching factor 100 100 _init_sql_file File containing SQL statements to execute upon database creation ?/rdbms/admin ?/rdbms/admin/s /sql.bsq ql.bsq _init_tempfile_on_open if TRUE re-init tempfile bitmaps on db open whenever possible FALSE FALSE _insert_enable_hwm_brokered during parallel inserts high water marks are brokered TRUE TRUE _inst_locking_period period an instance can retain a newly acquired level1 bitmap 5 5 _interconnect_checksum if TRUE, checksum interconnect blocks (DFS) TRUE TRUE _intrapart_pdml_enabled Enable intra-partition updates/deletes TRUE TRUE _intrapart_pdml_randomlocal_enabled Enable TRUE TRUE Mon Sep 05 page 25 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------intra-partition updates/deletes with random local dist _io_slaves_disabled Do not use I/O slaves FALSE FALSE _ioslave_batch_count Per attempt IOs picked 1 1 _ioslave_issue_count IOs issued before completion check 500 500 _ipc_fail_network Simulate cluster network failer 0 0 _ipc_test_failover Test transparent cluster network failover 0 0 _ipc_test_mult_nets simulate multiple cluster networks 0 0 _job_queue_interval Wakeup interval in seconds for job queue co-ordinator 5 5 _kcl_commit if TRUE, call kjbcommit (DFS) TRUE TRUE _kcl_conservative_log_flush if TRUE, conservatively log flush before CR serving (DFS) FALSE FALSE _kcl_debug if TRUE, record le history (DFS) TRUE TRUE _kcl_index_split if TRUE, reject pings on blocks in middle of a split (DFS) TRUE TRUE _kcl_undo_grouping grouping for undo block locks (DFS) 32 32 _kcl_undo_locks number of locks per undo segment (DFS) 128 128 _kdbl_enable_post_allocation allocate dbas after FALSE FALSE Mon Sep 05 page 26 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------populating data buffers _keep_remote_column_size remote column size does not get modified FALSE FALSE _kernel_message_network_driver kernel message network driver FALSE FALSE _kffmap_hash_size size of kffmap_hash table 1024 1024 _kffmop_hash_size size of kffmop_hash table 2048 2048 _kghdsidx_count _kgl_bucket_count max kghdsidx count index to the bucket count array 1 9 1 9 _kgl_hash_collision whether KGL hash collision is possible FALSE FALSE _kgl_keep_cache_pct KGL keep cache minimum threshold 30 30 _kgl_keep_cache_retain_pct KGL keep cache retain threshold 20 20 _kgl_latch_count number of library cache latches 0 0 _kgl_multi_instance_invalidation whether KGL to support multi-instance invalidations TRUE TRUE _kgl_multi_instance_lock whether KGL to TRUE support multi-instance locks TRUE _kgl_multi_instance_pin whether KGL to support multi-instance pins TRUE _kgl_session_cached_objects maximum length of 10 the KGL object cache lru TRUE 10 Mon Sep 05 page 27 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_kgl_time_to_wait_for_locks time to wait for 15 15 locks and pins before timing out _kglsim_maxmem_percent max percentage of shared pool size to be used for KGL advice 5 5 _kill_java_threads_on_eoc Kill Java threads and do sessionspace migration at end of call FALSE FALSE _kkfi_trace trace expression substitution FALSE FALSE _kolfuseslf allow kolf to use slffopen FALSE FALSE _ksdxw_cini_flg ksdxw context initialization flag 0 0 _ksdxw_nbufs ksdxw number of buffers in buffered mode 1000 1000 _ksdxw_num_pgw number of watchpoints on a per-process basis 10 10 _ksdxw_num_sgw number of watchpoints to be shared by all processes 10 10 _ksdxw_stack_depth number of PCs to 4 collect in the stack when watchpoint is hit 4 _kse_die_timeout amount of time a dying process is spared by PMON (in centi-secs) 60000 60000 _ksi_trace KSI trace string of lock type(s) _ksmg_granule_locking_status granule locking 1 1 Mon Sep 05 page 28 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------status _ksmg_granule_size granule size in bytes 4194304 4194304 _ksmg_lock_check_interval timeout action interval in minutes _ksmg_lock_reacquire_count repeat count for 5 acquisition of locks 5 _kspptbl_mem_usage amount of memory used for unused session parameter tables 1556016 1556016 _ksu_diag_kill_time number of seconds ksuitm waits before killing diag 5 5 _ktc_debug _ktc_latches for ktc debug number of ktc latches 0 0 0 0 _ktu_latches number of KTU latches 0 0 _ku_trace datapump trace parameter none none _large_pool_min_alloc minimum allocation 3 size in bytes for the large allocation pool 3 _last_allocation_period period over which an 5 instance can retain an active level1 bitmap 5 _latch_class_0 _latch_class_1 _latch_class_2 _latch_class_3 _latch_class_4 _latch_class_5 _latch_class_6 _latch_class_7 _latch_classes latch class 0 latch class 1 latch class 2 latch class 3 latch class 4 latch class 5 latch class 6 latch class 7 latch classes override Mon Sep 05 page 29 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_latch_miss_stat_sid Sid of process for which to collect latch stats 0 _latch_recovery_alignment align latch recovery 998 structures 998 _ldr_io_size size of write IOs used during a load operation 262144 262144 _left_nested_loops_random enable random distribution method for left of nestedloops TRUE TRUE _lgwr_async_broadcasts LGWR Asynchronous Broadcasts enabling boolean flag TRUE TRUE _lgwr_async_io LGWR Asynchronous IO FALSE enabling boolean flag FALSE _lgwr_delay_write LGWR write delay for FALSE debugging FALSE _lgwr_io_slaves _lgwr_max_ns_wt LGWR I/O slaves Maximum wait time for lgwr to allow NetServer to progress 0 1 _lgwr_ns_nl_max Variable to simulate 1000 network latency or buffer threshold 1000 _lgwr_ns_nl_min Variable to simulate 500 network latency or buffer threshold 500 _lgwr_ns_sim_err Variable to simulate 0 errors lgwrns 0 _library_cache_advice whether KGL advice should be turned on TRUE TRUE _lightweight_hdrs Lightweight headers for redo TRUE TRUE 0 1 0 Mon Sep 05 page 30 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_like_with_bind_as_equality treat LIKE predicate FALSE with bind as an equality predicate FALSE _lm_activate_lms_threshold threshold value to activate an additional lms 100 _lm_cache_lvl0_cleanup how often to cleanup 0 level 0 cache res (in sec) 0 _lm_cache_res_cleanup percentage of cached 25 resources should be cleanup 25 _lm_cache_res_type cache resource: string of lock types(s) TMHW TMHW _lm_dd_interval dd time interval in seconds 60 60 _lm_drm_max_requests dynamic remastering maximum affinity requests processed together 100 100 _lm_drm_window dynamic remastering bucket window size 0 0 _lm_dynamic_lms dynamic lms invocation FALSE FALSE _lm_dynamic_load dynamic load adjustment TRUE TRUE _lm_dynamic_remastering if TRUE enables dynamic remastering FALSE FALSE _lm_enq_lock_freelist Number of ges enqueue element freelist _lm_enq_rcfg if TRUE enables enqueue reconfiguration TRUE TRUE _lm_enqueue_freelist Number of enqueue 3 3 100 Mon Sep 05 page 31 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------freelist _lm_file_affinity mapping between file id and master instance number _lm_global_posts if TRUE deliver global posts to remote nodes TRUE TRUE _lm_lmd_waittime default wait time for lmd in centiseconds 8 8 _lm_lms number of background 0 gcs server processes to start 0 _lm_lms_waittime default wait time for lms in centiseconds 8 8 _lm_locks number of enqueues configured for cluster database 12000 12000 _lm_master_weight master resource weight for this instance 1 1 _lm_max_lms max. number of background global cache server processes 0 0 _lm_min_lms min. number of background global cache server processes 0 0 _lm_msg_batch_size GES batch message size 0 0 _lm_msg_cache_thresholds GES message buffer caching threshold _lm_msg_cleanup_interval GES message buffer cleanup interval time 3000 3000 Mon Sep 05 page 32 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_lm_node_join_opt cluster database FALSE FALSE node join optimization in reconfig _lm_non_fault_tolerant disable cluster FALSE database fault-tolerance mode FALSE _lm_num_pcmhv_latches number of latches covering the PCM HV buckets in cgs 0 0 _lm_proc_freeze_timeout reconfiguration: process freeze timeout 300 300 _lm_process_batching GES implicit process TRUE batching for IPC messages TRUE _lm_procs number of client 127 processes configured for cluster database 127 _lm_rcfg_timeout Reconfiguration timeout 180000 180000 _lm_rcv_buffer_size the size of receive buffer 32768 32768 _lm_res_hash_bucket number of resource hash buckets 0 0 _lm_res_part number of resource 1289 partition configured for gcs 1289 _lm_ress number of resources configured for cluster database 6000 6000 _lm_send_buffers number of cluster database send buffers 10000 10000 _lm_send_mode _lm_send_queue_batching GES send mode GES send queue message batching auto TRUE auto TRUE Mon Sep 05 page 33 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_lm_send_queue_length GES send queue 5000 5000 maximum length _lm_sendproxy_reserve GES percentage of send proxy reserve of send tickets 25 25 _lm_share_lock_opt if TRUE enables share lock optimization FALSE FALSE _lm_sq_batch_factor GES send queue minimum batching factor 2 2 _lm_sq_batch_type GES send queue batching mechanism auto auto _lm_sq_batch_waittick GES send queue 3 batching waittime in tick _lm_sync_timeout Synchronization timeout for DLM reconfiguration steps _lm_ticket_active_sendback Flow control ticket active sendback threshold _lm_tickets GES messaging tickets _lm_tx_delta TX lock localization 16 delta 16 _lm_validate_resource_type if TRUE enables resource name validation FALSE FALSE _lm_xids number of transaction IDs configured for cluster database 139 139 _load_without_compile Load PL/SQL or Database objects without compilation none none 1000 3 1000 Mon Sep 05 page 34 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_local_communication_costing_enabled enable local TRUE TRUE communication costing when TRUE _local_communication_ratio set the ratio between global and local communication (0..100) 50 _lock_sga_areas Lock specified areas 0 of the SGA in physical memory 0 _log_archive_buffer_size Size of each archival buffer in log file blocks 2048 _log_archive_buffers Number of buffers to 10 allocate for archiving _log_archive_callout _log_archive_compress_enable archival callout Bypass database rules for enabling archivelog compression _log_archive_delta_sync_wait iterative sleep time 0 in centiseconds seconds when SYNC=PARALLEL 0 _log_archive_net_timeout maximum network wait 0 time in seconds when SYNC=PARALLEL 0 _log_archive_prot_auto_demote log archive protection auto demotion FALSE _log_archive_security_enabled log archive security TRUE enabled TRUE _log_blocks_during_backup log block images when changed during backup TRUE _log_buffers_corrupt corrupt redo buffers FALSE before write 2048 FALSE FALSE TRUE 50 10 FALSE FALSE Mon Sep 05 page 35 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_log_buffers_debug debug redo buffers FALSE FALSE (slows things down) _log_checkpoint_recovery_check # redo blocks to verify after checkpoint 0 0 _log_committime_block_cleanout Log commit-time block cleanout FALSE FALSE _log_debug_multi_instance debug redo multi instance code FALSE FALSE _log_deletion_policy archivelog deletion policy for mandatory/all destination mandatory mandatory _log_io_size automatically initiate log write if this many redo blocks in buffer 0 0 _log_parallelism Number of log buffer 1 strands 1 _log_parallelism_dynamic Enable dynamic strands TRUE TRUE _log_parallelism_max Maximum number of log buffer strands 2 2 _log_private_mul Private strand multiplier for log space preallocation 5 5 _log_private_parallelism Number of private log buffer strands for zero-copy redo FALSE FALSE _log_private_parallelism_mul Active sessions 10 multiplier to deduce number of private strands 10 _log_simultaneous_copies number of simultaneous copies into redo buffer(# of copy latches) 4 4 Mon Sep 05 page 36 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_log_space_errors should we report TRUE TRUE space errors to alert log _log_switch_timeout Maximum number of 0 seconds redos in the current log could span 0 _longops_enabled longops stats enabled TRUE TRUE _low_server_threshold low server thresholds 0 0 _master_direct_sends direct sends for 31 messages from master (DFS) 31 _mav_refresh_consistent_read refresh materialized TRUE views using consistent read snapshot TRUE _mav_refresh_double_count_prevented materialized view MAV refreshes avoid double counting FALSE _mav_refresh_opt optimizations during 0 refresh of materialized views 0 _mav_refresh_unionall_tables # tables for union 3 all expansion during materialized view refresh 3 _max_exponential_sleep max sleep during exponential backoff 0 0 _max_protocol_support Max occurrence protocols supported in a process 10000 10000 _max_shrink_obj_stats number of segments for which shrink stats will be maintained 0 0 _max_sleep_holding_latch max time to sleep 4 4 FALSE Mon Sep 05 page 37 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------while holding a latch _media_recovery_read_batch media recovery block 128 read batch 128 _mem_annotation_pr_lev private memory annotation collection level 0 0 _mem_annotation_scale memory annotation pre-allocation scaling 1 1 _mem_annotation_sh_lev shared memory annotation collection level 0 0 _mem_annotation_store memory annotation in-memory store FALSE FALSE _memory_broker_log_stat_entries memory broker num stat entries 9 9 _memory_broker_shrink_heaps memory broker allow policy to shrink shared pool 0 0 _memory_broker_shrink_java_heaps memory broker allow policy to shrink java pool 900 900 _memory_broker_shrink_timeout memory broker allow policy to shrink shared/java pool 60000000 60000000 _memory_broker_stat_interval memory broker 300 statistics gathering interval 300 _memory_management_tracing trace memory management activity 0 0 _messages message queue resources dependent on # processes & # buffers 1200 1200 _minimal_stats_aggregation prohibit stats TRUE TRUE Mon Sep 05 page 38 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------aggregation at compile/partition maintenance time _minimum_blocks_to_shrink minimum number 0 freeable blocks for shrink to be present 0 _minimum_extents_to_shrink minimum number 1 freeable extents for shrink to be present 1 _minimum_giga_scn Minimum SCN to start 0 with in 2^30 units 0 _mirror_redo_buffers Save buffers for debugging redo corruptions FALSE FALSE _mmv_query_rewrite_enabled allow rewrites with multiple MVs and/or base tables FALSE FALSE _multi_join_key_table_lookup TRUE iff TRUE multi-join-key table lookup prefetch is enabled TRUE _multiple_instance_recovery use multiple instances for media recovery FALSE _mv_refresh_ana what percent to 0 analyze after complete/PCT refresh 0 _mv_refresh_costing refresh decision based on cost or on rules rule rule _mv_refresh_delta_fraction delta mv as fractional percentage of size of mv 10 10 _mv_refresh_eut refresh materialized TRUE views using EUT(partition)-based algorithm FALSE TRUE Mon Sep 05 page 39 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_mv_refresh_force_parallel_query force materialized 0 0 view refreshes to use parallel query _mv_refresh_new_setup_disabled materialized view MV FALSE refresh new setup disabling FALSE _mv_refresh_rebuild_percentage minimum percentage 10 change required in MV to force an index rebuild 10 _mv_refresh_selections create materialized views with selections and fast refresh TRUE TRUE _mv_refresh_use_stats pass cardinality hints to refresh queries TRUE TRUE _mv_refsched_timeincr proportionality 300000 constant for dop vs. time in MV refresh 300000 _mwin_schedule Enable/disable Maintenance Window Schedules TRUE TRUE _nchar_imp_cnv NLS allow Implicit Conversion between CHAR and NCHAR TRUE TRUE _nchar_imp_conv should implicit conversion bewteen clob and nclob be allowed TRUE TRUE _ncmb_readahead_enabled enable multi-block readahead for an index scan 0 0 _ncmb_readahead_tracing turn on multi-block readahead tracing 0 0 _nested_loop_fudge _nested_mav_fast_oncommit_enabled nested loop fudge nested MAV refresh fast on commit allowed 100 TRUE 100 TRUE Mon Sep 05 page 40 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_new_initial_join_orders enable initial join orders based on new ordering heuristics TRUE TRUE _new_sort_cost_estimate enables the use of new cost estimate for sort TRUE TRUE _no_objects no object features are used FALSE FALSE _no_or_expansion OR expansion during optimization disabled FALSE FALSE _notify_crs notify cluster ready FALSE services of startup and shutdown FALSE _ns_max_flush_wt Flush wait time for NetServer to flush oustanding writes 1 1 _num_longop_child_latches number of child latches for long op array 2 2 _number_cached_attributes maximum number of cached attributes per instance 10 10 _object_statistics enable the object level statistics collection TRUE TRUE _offline_rollback_segments offline undo segment list _ogms_home _olap_aggregate_buffer_size GMS home directory OLAP Aggregate max buffer size 1048576 1048576 _olap_aggregate_flags OLAP Aggregate debug 0 flags _olap_aggregate_function_cache_enable OLAP Aggregate d function cache enabler TRUE 0 TRUE Mon Sep 05 page 41 Undocumented Oracle Parameters TEST Database Parameter ------------------------------------_olap_aggregate_function_merge_thresh old Description Session Value Instance Value -------------------- ------------- --------------OLAP Aggregate 32768 32768 function merge threshold _olap_aggregate_max_thread_tuples OLAP Aggregate max thread tuples creation 5000 5000 _olap_aggregate_min_buffer_size OLAP Aggregate min buffer size 1024 1024 _olap_aggregate_min_thread_status OLAP Aggregate minimum cardinality of dimensions for thread 64 64 _olap_aggregate_multipath_hier OLAP Aggregate Multi-path Hierarhies enabled FALSE FALSE _olap_aggregate_statlen_thresh OLAP Aggregate status array usage threshold 1024 1024 _olap_aggregate_store_probability OLAP Aggregate function storeback probability 100 100 _olap_aggregate_work_per_thread OLAP Aggregate max work parents 1024 1024 _olap_aggregate_worklist_max OLAP Aggregate max worklists generated at once 5000 5000 _olap_allocate_errorlog_format OLAP Allocate Errorlog Format %8p %8y %8z % %8p %8y %8z %e e (%n) (%n) _olap_allocate_errorlog_header OLAP Allocate Errorlog Header format Dim Sour Dim Source ce Basis Basis %-8d %-8s %-8 %-8d %-8s %-8b b Description Description -------- ------------- ---- -- -------- ------ -------- ------------------ _olap_continuous_trace_file Specify TRUE to enable continuous OLAP tracing - FALSE FALSE Mon Sep 05 page 42 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------otherwise only exceptional events will be logged _olap_dbgoutfile_echo_to_eventlog OLAP DbgOutfile copy FALSE output to event log (tracefile) FALSE _olap_dimension_corehash_class OLAP Dimension In-Core Hash Table Class 1 1 _olap_dimension_corehash_max OLAP Dimension In-Core Hash Table Maximum Size 10000 10000 _olap_dimsave_restore_cache_values OLAP Dimsave restores cached dimension values TRUE TRUE _olap_eif_export_lob_size OLAP EIF Export BLOB 2147483647 size 2147483647 _olap_object_hash_class OLAP Object Hash Table Class 2 2 _olap_page_pool_expand_rate OLAP Page Pool Expand Rate 20 20 _olap_page_pool_hi OLAP Page Pool High Watermark 50 50 _olap_page_pool_hit_target OLAP Page Pool Hit Target 100 100 _olap_page_pool_low OLAP Page Pool Low Watermark 262144 262144 _olap_page_pool_pressure OLAP Page Pool Pressure Threshold 90 90 _olap_page_pool_shrink_rate OLAP Page Pool Shrink Rate 50 50 _olap_parallel_update_threshold OLAP parallel update 1000 threshold in pages 1000 _olap_poutlog_echo_to_eventlog OLAP POutLog copy output to event log (tracefile) FALSE FALSE Mon Sep 05 page 43 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_olap_sesscache_enabled OLAP Session Cache knob TRUE TRUE _olap_sort_buffer_size OLAP Sort Buffer Size 262144 262144 _olap_statbool_corebits OLAP Status Boolean max incore bits 20000000 20000000 _olap_statbool_threshold OLAP Status Boolean CBM threshold 8100 8100 _olap_table_function_statistics Specify TRUE to output OLAP table function timed statistics trace FALSE FALSE _olapi_history_retention enable olapi history FALSE retention FALSE _olapi_iface_object_history enable olapi interface object history collection 1000 1000 _olapi_iface_object_history_retention enable olapi interface object history retention FALSE FALSE _olapi_iface_operation_history_retent enable olapi ion interface operation history retention FALSE FALSE _olapi_interface_operation_history enable olapi interface operation history collection 1000 1000 _olapi_memory_operation_history enable olapi memory alloc/free history collection 1000 1000 _olapi_memory_operation_history_pause enable olapi memory _at_seqno alloc/free history collection pausing 0 0 _olapi_memory_operation_history_reten enable olapi memory tion operation history retention FALSE FALSE _olapi_session_history enable olapi session 300 300 Mon Sep 05 page 44 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------history collection _olapi_session_history_retention enable olapi session FALSE history retention FALSE _old_connect_by_enabled enable/disable old connect by FALSE FALSE _omf _oneside_colstat_for_equijoins enable/disable OMF sanity check on default selectivity for like/range predicate enabled TRUE enabled TRUE _optim_adjust_for_part_skews adjust stats for skews across partitions TRUE TRUE _optim_dict_stats_at_db_cr_upg enable/disable dictionary stats gathering at db create/upgrade TRUE TRUE _optim_enhance_nnull_detection TRUE to enable index TRUE [fast] full scan more often TRUE _optim_new_default_join_sel improves the way default equijoin selectivity are computed TRUE TRUE _optim_peek_user_binds enable peeking of user binds TRUE TRUE _optimizer_adjust_for_nulls adjust selectivity for null values TRUE TRUE _optimizer_autostats_job enable/disable auto TRUE stats collection job TRUE _optimizer_block_size standard block size used by optimizer 8192 8192 _optimizer_cache_stats cost with cache statistics FALSE FALSE _optimizer_cbqt_factor cost factor for cost-based query transformation 50 50 Mon Sep 05 page 45 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_optimizer_ceil_cost _optimizer_choose_permutation CEIL cost in CBO TRUE force the optimizer 0 to use the specified permutation TRUE 0 _optimizer_compute_index_stats force index stats collection on index creation/rebuild TRUE TRUE _optimizer_correct_sq_selectivity force correct TRUE computation of subquery selectivity TRUE _optimizer_cost_based_transformation enables cost-based LINEAR query transformation LINEAR _optimizer_cost_filter_pred enables costing of FALSE filter predicates in IO cost model FALSE _optimizer_cost_model _optimizer_degree optimizer cost model CHOOSE force the optimizer 0 to use the same degree of parallelism CHOOSE 0 _optimizer_dim_subq_join_sel use join selectivity TRUE in choosing star transformation dimensions TRUE _optimizer_disable_strans_sanity_chec disable star ks transformation sanity checks 0 0 _optimizer_dyn_smp_blks number of blocks for 32 optimizer dynamic sampling 32 _optimizer_ignore_hints enables the embedded FALSE hints to be ignored FALSE _optimizer_invalidation_period time window for invalidation of cursors of analyzed objects 18000 _optimizer_join_order_control controls the 3 optimizer join order 18000 3 Mon Sep 05 page 46 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------search algorithm _optimizer_join_sel_sanity_check enable/disable sanity check for multi-column join selectivity TRUE TRUE _optimizer_max_permutations optimizer maximum join permutations per query block 2000 2000 _optimizer_mjc_enabled enable merge join cartesian TRUE TRUE _optimizer_mode_force force setting of optimizer mode for user recursive SQL also TRUE TRUE _optimizer_new_join_card_computation compute join cardinality using non-rounded input values TRUE TRUE _optimizer_percent_parallel optimizer percent parallel 101 101 _optimizer_push_down_distinct push down distinct from query block to table 0 0 _optimizer_push_pred_cost_based use cost-based query TRUE transformation for push pred optimization TRUE _optimizer_random_plan optimizer seed value 0 for random plans 0 _optimizer_save_stats enable/disable saving old versions of optimizer stats TRUE TRUE _optimizer_search_limit optimizer search limit 5 5 _optimizer_skip_scan_enabled enable/disable index TRUE skip scan TRUE _optimizer_sortmerge_join_enabled enable/disable TRUE TRUE Mon Sep 05 page 47 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------sort-merge join method _optimizer_squ_bottomup enables unnesting of TRUE subquery in a bottom-up manner TRUE _optimizer_system_stats_usage system statistics usage TRUE TRUE _optimizer_undo_changes undo changes to query optimizer FALSE FALSE _optimizer_undo_cost_change optimizer undo cost change 10.1.0.3 10.1.0.3 _or_expand_nvl_predicate enable OR expanded plan for NVL/DECODE predicate TRUE TRUE _oradbg_pathname path of oradbg script _ordered_nested_loop enable ordered nested loop costing TRUE TRUE _ordered_semijoin enable ordered semi-join subquery TRUE TRUE _parallel_adaptive_max_users maximum number of users running with default DOP 2 2 _parallel_broadcast_enabled enable broadcasting of small inputs to hash and sort merge joins TRUE TRUE _parallel_default_max_instances default maximum number of instances for parallel query 1 1 _parallel_execution_message_align Alignment of PX buffers to OS page boundary FALSE FALSE _parallel_fake_class_pct fake db-scheduler percent used for testing 0 0 Mon Sep 05 page 48 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_parallel_fixwrite_bucket Number of buckets 1000 1000 for each round of fix write _parallel_load_bal_unit number of threads to 0 allocate per instance 0 _parallel_load_balancing parallel execution load balanced slave allocation TRUE TRUE _parallel_min_message_pool minimum size of shared pool memory to reserve for pq servers 902160 902160 _parallel_recovery_stopat stop at -position32767 to step through SMON 32767 _parallel_replay_bucket Number of buckets for each round of parallel replay 1000 1000 _parallel_server_idle_time idle time before parallel query server dies (in 1/100 sec) 30000 30000 _parallel_server_sleep_time sleep time between 10 dequeue timeouts (in 1/100ths) 10 _parallel_slave_acquisition_wait time(in seconds) to 1 wait before retrying slave acquisition 1 _parallel_txn_global enable parallel_txn hint with updates and deletes FALSE FALSE _parallelism_cost_fudge_factor set the parallelism cost fudge factor 350 350 _partial_pwise_join_enabled enable partial partition-wise join when TRUE TRUE TRUE _partition_view_enabled enable/disable partitioned views TRUE TRUE Mon Sep 05 page 49 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_passwordfile_enqueue_timeout password file enqueue timeout in seconds 900 900 _pct_refresh_double_count_prevented materialized view PCT refreshes avoid double counting TRUE TRUE _pdml_gim_sampling control separation 5000 of global index maintenance for PDML 5000 _pdml_gim_staggered slaves start on FALSE different index when doing index maint FALSE _pdml_slaves_diff_part slaves start on different partition when doing index maint TRUE _percent_flashback_buf_partial_full Percent of flashback 50 buffer filled to be considered partial full 50 _pga_large_extent_size PGA large extent size 1048576 1048576 _pga_max_size Maximum size of the PGA memory for one process 209715200 209715200 _ping_level fusion ping level (DFS) 3 3 _pkt_enable enable progressive kill test FALSE FALSE _pkt_pmon_interval PMON process clean-up interval (cs) 50 50 _pkt_start start progressive kill test instrumention FALSE FALSE _plsql_anon_block_code_type PL/SQL anonymous block code-type INTERPRETED INTERPRETED TRUE Mon Sep 05 page 50 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_plsql_dump_buffer_events conditions upon which the PL/SQL circular buffer is dumped _pmon_load_constants server load balancing constants (S,P,D,I,L,C,M) _pre_rewrite_push_pred push predicates into TRUE views before rewrite TRUE _precompute_gid_values precompute gid TRUE values and copy them before returning a row TRUE _pred_move_around enables predicate move-around TRUE TRUE _predicate_elimination_enabled allow predicate elimination if set to TRUE TRUE TRUE _prescomm presume commit of IMU transactions FALSE FALSE _print_refresh_schedule enable dbms_output false of materialized view refresh schedule false _private_memory_address Start address of large extent memory segment _project_view_columns enable projecting out unreferenced columns of a view TRUE TRUE _projection_pushdown _projection_pushdown_debug projection pushdown TRUE level for projection 0 pushdown debugging TRUE 0 _push_join_predicate enable pushing join predicate inside a view TRUE TRUE _push_join_union_view enable pushing join predicate inside a TRUE TRUE 300,192,64,3, 300,192,64,3,10 10,10,0 ,10,0 Mon Sep 05 page 51 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------union all view _push_join_union_view2 enable pushing join predicate inside a union view TRUE TRUE _px_async_getgranule asynchronous get FALSE granule in the slave FALSE _px_broadcast_fudge_factor set the tq broadcasting fudge factor percentage 100 100 _px_buffer_ttl ttl for px mesg buffers in seconds 30 30 _px_compilation_debug debug level for 0 parallel compilation 0 _px_compilation_trace tracing level for 0 parallel compilation 0 _px_dynamic_opt turn off/on TRUE restartable qerpx dynamic optimization TRUE _px_dynamic_sample_size num of samples for 50 restartable qerpx dynamic optimization 50 _px_granule_size default size of a rowid range granule (in KB) 100000 100000 _px_index_sampling parallel query sampling for index create (100000 = 100%) 200 200 _px_kxib_tracing _px_load_publish_interval turn on kxib tracing 0 interval at which 200 LMON will check whether to publish PX load 0 200 _px_loc_msg_cost CPU cost to send a PX message via shared memory 1000 1000 _px_max_granules_per_slave maximum number of 100 100 Mon Sep 05 page 52 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------rowid range granules to generate per slave _px_min_granules_per_slave minimum number of 13 rowid range granules to generate per slave 13 _px_net_msg_cost CPU cost to send a PX message over the internconnect 10000 10000 _px_no_granule_sort prevent parallel FALSE partition granules to be sorted on size FALSE _px_no_stealing prevent parallel granule stealing in shared nothing environment FALSE _px_proc_constrain reduce TRUE parallel_max_servers if greater than (processes - fudge) TRUE _px_send_timeout IPC message send timeout value in seconds 300 _px_slaves_share_cursors slaves share cursors 0 with QC 0 _px_trace _px_xtgranule_size px trace parameter default size of a external table granule (in KB) none 10000 _qa_control Oracle internal 0 parameter to control QA 0 _qa_lrg_type Oracle internal 0 parameter to specify QA lrg type 0 _query_cost_rewrite perform the cost based rewrite with materialized views TRUE FALSE 300 none 10000 TRUE Mon Sep 05 page 53 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_query_execution_cache_max_size max size of query execution cache 65536 _query_rewrite_1 perform query TRUE rewrite before&after or only before view merging TRUE _query_rewrite_2 perform query TRUE rewrite before&after or only after view merging TRUE _query_rewrite_drj mv rewrite and drop redundant joins TRUE TRUE _query_rewrite_expression rewrite with cannonical form for expressions TRUE TRUE _query_rewrite_fpc mv rewrite fresh partition containment TRUE TRUE _query_rewrite_fudge cost based query rewrite with MVs fudge factor 90 90 _query_rewrite_jgmigrate mv rewrite with jg migration TRUE TRUE _query_rewrite_maxdisjunct query rewrite max disjuncts 257 257 _query_rewrite_or_error allow query rewrite, FALSE if referenced tables are not dataless FALSE _query_rewrite_setopgrw_enable perform general rewrite using set operator summaries TRUE TRUE _query_rewrite_vop_cleanup prune frocol chain TRUE before rewrite after view-merging TRUE _rcfg_parallel_cleanup if TRUE enables parallel cleanup at reconfiguration TRUE TRUE 65536 Mon Sep 05 page 54 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_rcfg_parallel_fixwrite if TRUE enables TRUE parallel fixwrite at reconfiguration TRUE _rcfg_parallel_replay if TRUE enables parallel replay at reconfiguration TRUE TRUE _rcfg_parallel_verify if TRUE enables parallel verify at reconfiguration TRUE TRUE _real_time_apply_arch_delay Archival delay with real time apply 0 0 _real_time_apply_sim Simulation value 0 with real time apply 0 _realfree_heap_max_size minimum max total 32768 heap size, in Kbytes 32768 _realfree_heap_mode mode flags for real-free heap 0 0 _realfree_heap_pagesize_hint hint for real-free page size in bytes 65536 65536 _recoverable_recovery_batch_percent Recoverable recovery 50 batch size (percentage of buffer cache) 50 _recovery_asserts if TRUE, enable expensive recovery sanity checks (DFS) FALSE FALSE _recovery_percentage recovery buffer cache percentage 50 50 _recursive_imu_transactions recursive transactions may be IMU FALSE FALSE _recyclebin recyclebin processing TRUE TRUE _release_insert_threshold maximum number of 5 unusable blocks to unlink from freelist 5 Mon Sep 05 page 55 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_reliable_block_sends if TRUE, block sends FALSE across interconnect are reliable FALSE _remove_aggr_subquery enables removal of subsumed aggregated subquery TRUE TRUE _reuse_index_loop number of blocks being examine for index block reuse 5 5 _right_outer_hash_enable Right TRUE Outer/Semi/Anti Hash Enabled TRUE _rollback_segment_count number of undo segments 0 0 _rollback_segment_initial starting undo segment number 1 1 _rollback_stopat stop at -position to 0 step rollback 0 _row_cache_cursors number of cached cursors for row cache management 10 10 _row_cr enable row cr for all sql FALSE FALSE _row_locking _rowsource_execution_statistics row-locking always if TRUE, Oracle will FALSE collect rowsource statistics always FALSE _rowsource_statistics_sampfreq frequency of rowsource statistic sampling (must be a power of 2) 128 128 _sample_rows_per_block number of rows per block used for sampling IO optimization 4 4 _scn_scheme _second_spare_parameter SCN scheme second spare Mon Sep 05 page 56 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------parameter - integer _selftune_checkpoint_write_pct Percentage of total physical i/os for self-tune ckpt 3 3 _selftune_checkpointing_lag Self-tune 300 checkpointing lag the tail of the redo log 300 _send_ast_to_foreground if TRUE, send ast message to foreground TRUE TRUE _send_close_with_block if TRUE, send close TRUE with block even with direct sends TRUE _send_requests_to_pi if TRUE, try to send TRUE CR requests to PI buffers (DFS) TRUE _serial_direct_read enable direct read in serial FALSE FALSE _serial_recovery force serial FALSE recovery or parallel recovery FALSE _serializable _session_idle_bit_latches serializable one latch per session or a latch per group of sessions FALSE 0 FALSE 0 _session_idle_check_interval Resource Manager session idle limit check interval in seconds 60 60 _session_wait_history enable session wait history collection 10 10 _seventh_spare_parameter seventh spare parameter - string list _shared_pool_max_size shared pool maximum size when auto SGA 0 0 Mon Sep 05 page 57 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------enabled _shared_pool_reserved_min_alloc minimum allocation size in bytes for reserved area of shared pool 4400 4400 _shared_pool_reserved_pct percentage memory of 5 the shared pool allocated for the reserved area 5 _shrunk_aggs_disable_threshold percentage of exceptions at which to switch to full length aggs 60 60 _shrunk_aggs_enabled enable use of variable sized buffers for non-distinct aggregates TRUE TRUE _side_channel_batch_size number of messages to batch in a side channel message (DFS) 200 200 _side_channel_batch_timeout timeout before 5 shipping out all the batched side channelmessages 5 _simulator_bucket_mindelta LRU bucket minimum delta 8192 8192 _simulator_internal_bound simulator internal bound percent 10 10 _simulator_lru_rebalance_sizthr LRU list rebalance threshold (size) 2 2 _simulator_lru_rebalance_thresh LRU list rebalance threshold (count) 10240 10240 _simulator_lru_scan_count _simulator_pin_inval_maxcnt LRU scan count maximum count of invalid chunks on pin list 8 16 8 16 Mon Sep 05 page 58 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_simulator_reserved_heap_count simulator reserved 4096 4096 heap count _simulator_reserved_obj_count simulator reserved object count 1024 1024 _simulator_sampling_factor sampling factor for the simulator 2 2 _simulator_upper_bound_multiple upper bound multiple 2 of pool size 2 _single_process run without detached FALSE processes FALSE _sixth_spare_parameter sixth spare parameter - string list _skip_assume_msg if TRUE, skip assume TRUE message for consigns at the master TRUE _slave_mapping_enabled enable slave mapping TRUE when TRUE TRUE _slave_mapping_group_size force the number of slave group in a slave mapper 0 0 _small_table_threshold threshold level of table size for direct reads 1713 1713 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE TRUE _smm_auto_max_io_size Maximum IO size (in KB) used by sort/hash-join in auto mode 248 248 Mon Sep 05 page 59 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_smm_auto_min_io_size Minimum IO size (in KB) used by sort/hash-join in auto mode 56 56 _smm_bound overwrites memory manager automatically computed bound 0 0 _smm_control provides controls on 0 the memory manager 0 _smm_freeable_retain value in KB of the 5120 instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in auto mode (serial) 52428 52428 _smm_min_size minimum work area size in auto mode 1024 1024 _smm_px_max_size maximum work area size in auto mode (global) 314571 314571 _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 0 _smm_trace Turn on/off tracing for SQL memory manager 0 0 _smon_internal_errlimit limit of SMON internal errors 100 100 _smu_debug_mode <debug-flag> - set debug event for testing SMU operations 0 0 _smu_error_simulation_site site ID of error simulation in KTU code 0 0 Mon Sep 05 page 60 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_smu_error_simulation_type error type for error 0 simulation in KTU code 0 _smu_timeouts comma-separated *AND double-quoted* list of AUM timeouts: mql, tur, sess_exprn, qry_exprn, slot_intvl _sort_elimination_cost_ratio cost ratio for sort eimination under first_rows mode 0 0 _sort_multiblock_read_count multi-block read count for sort 2 2 _sort_space_for_write_buffers tenths of sort_area_size devoted to direct write buffers 1 1 _spin_count Amount to spin waiting for a latch 2000 2000 _spr_max_rules maximum number of rules in sql spreadsheet 10000 10000 _spr_push_pred_refspr push predicates through reference spreadsheet TRUE TRUE _spr_use_AW_AS enable AW for hash TRUE table in spreadsheet TRUE _spr_use_hash_table use hash table for spreadsheet FALSE FALSE _sql_connect_capability_override SQL Connect Capability Table Override 0 0 _sql_connect_capability_table SQL Connect Capability Table (testing only) Mon Sep 05 page 61 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_sqlexec_progression_cost sql execution 1000 1000 progression monitoring cost threshold _sqltune_category_parsed Parsed category qualifier for applying hintsets DEFAULT DEFAULT _sta_control SQL Tuning Advisory control parameter 0 0 _stn_trace SQL tracing parameter 0 0 _subquery_pruning_cost_factor subquery pruning cost factor 20 20 _subquery_pruning_enabled enable the use of subquery predicates to perform pruning TRUE TRUE _subquery_pruning_mv_enabled enable the use of subquery predicates with MVs to perform pruning FALSE FALSE _subquery_pruning_reduction subquery pruning reduction factor 50 50 _swrf_metric_frequent_mode Enable/disable SWRF TRUE Metric Frequent Mode Collection TRUE _swrf_mmon_dbfus Enable/disable SWRF MMON DB Feature Usage TRUE TRUE _swrf_mmon_flush Enable/disable SWRF MMON FLushing TRUE TRUE _swrf_mmon_metrics Enable/disable SWRF MMON Metrics Collection TRUE TRUE _swrf_on_disk_enabled Parameter to enable/disable SWRF TRUE TRUE _swrf_test_action test action parameter for SWRF 0 0 Mon Sep 05 page 62 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_swrf_test_dbfus Enable/disable DB Feature Usage Testing FALSE FALSE _sysaux_test_param test parameter for SYSAUX 1 1 _system_index_caching optimizer percent 0 system index caching 0 _system_trig_enabled are system triggers enabled TRUE _table_lookup_prefetch_size table lookup 40 prefetch vector size 40 _table_lookup_prefetch_thresh table lookup prefetch threshold 2 _table_scan_cost_plus_one bump estimated full TRUE table scan and index ffs cost by one TRUE _temp_tran_block_threshold number of blocks for 100 a dimension before we temp transform 100 _temp_tran_cache determines if temp table is created with cache option TRUE TRUE _test_ksusigskip test the function ksusigskip 5 5 _test_param_1 test parmeter 1 integer 25 25 _test_param_2 test parameter 2 string _test_param_3 test parameter 3 string _test_param_4 test parameter 4 string list _test_param_5 test parmeter 5 deprecated integer 25 25 TRUE 2 Mon Sep 05 page 63 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_test_param_6 test parmeter 6 0 0 size (ub8) _third_spare_parameter third spare parameter - integer _threshold_alerts_enable if 1, issue threshold-based alerts 1 1 _total_large_extent_memory Total memory for allocating large extents 0 0 _tq_dump_period time period for duping of TQ statistics (s) 0 0 _trace_archive _trace_buffer_flushes start DIAG process FALSE trace buffer flushes FALSE if otrace cacheIO event is set FALSE FALSE _trace_buffer_gets trace kcb buffer FALSE gets if otrace cacheIO event is set FALSE _trace_buffer_wait_timeouts trace buffer busy wait timeouts 0 0 _trace_buffers trace buffer sizes per process ALL:256 ALL:256 _trace_cr_buffer_creates trace cr buffer FALSE creates if otrace cacheIO event is set _trace_events trace events enabled at startup _trace_file_size maximum size of trace file (in bytes) 65536 65536 _trace_files_public Create publicly accessible trace files FALSE FALSE _trace_flush_processes trace data archived by DIAG for these ALL ALL FALSE Mon Sep 05 page 64 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------processes _trace_instance_termination trace instance termination actions FALSE FALSE _trace_multi_block_reads trace multi_block FALSE reads if otrace cacheIO event is set FALSE _trace_navigation_scope enabling trace navigation linking global global _trace_options trace data flush options text,multiple text,multiple _trace_pin_time trace how long a current pin is held 0 0 _trace_processes enable KST tracing in process ALL ALL _transaction_auditing transaction auditing TRUE records generated in the redo log TRUE _transaction_recovery_servers max number of parallel recovery slaves that may be used 0 0 _tts_allow_charset_mismatch allow plugging in a tablespace with an incompatible character set FALSE FALSE _two_pass enable two-pass thread recovery TRUE TRUE _two_pass_reverse_polish_enabled uses two-pass reverse polish alg. to generate canonical forms TRUE TRUE _uga_cga_large_extent_size UGA/CGA large extent 262144 size 262144 _ultrafast_latch_statistics maintain fast-path statistics for ultrafast latches TRUE TRUE Mon Sep 05 page 65 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_undo_autotune enable auto tuning TRUE TRUE of undo_retention _undo_debug_usage invoke undo usage functions for testing 0 0 _union_rewrite_for_gs expand queries with GSets into UNIONs for rewrite YES_GSET_MVS YES_GSET_MVS _unnest_subquery enables unnesting of TRUE correlated subqueries TRUE _use_column_stats_for_function enable the use of column statistics for DDP functions TRUE TRUE _use_ism Enable Shared Page Tables - ISM TRUE TRUE _use_ism_for_pga Use ISM for allocating large extents TRUE TRUE _use_new_explain_plan if TRUE, use the AUTO size policy cost functions FALSE FALSE _use_nosegment_indexes use nosegment indexes in explain plan FALSE FALSE _use_realfree_heap use real-free based allocator for PGA memory TRUE TRUE _use_seq_process_cache whether to use process local seq cache TRUE TRUE _use_vector_post _validate_flashback_database use vector post Scan database to validate result of flashback database TRUE FALSE TRUE FALSE _vendor_lib_loc Vendor library search root directory Mon Sep 05 page 66 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_verify_flashback_redo Verify that the redo TRUE logs needed for flashback are available TRUE _verify_undo_quota TRUE - verify consistency of undo quota statistics FALSE FALSE _wait_for_sync wait for sync on commit MUST BE ALWAYS TRUE TRUE TRUE _walk_insert_threshold maximum number of 0 unusable blocks to walk across freelist 0 _watchpoint_on is the watchpointing FALSE feature turned on? FALSE _write_clones _xsolapi_auto_materialization_bound write clones flag 3 OLAP API lower bound 20 for auto materialization. 3 20 _xsolapi_auto_materialization_type OLAP API behavior for auto materialization PRED_ONLY PRED_ONLY _xsolapi_cursor_max_rows_to_cache_per OLAP API max rows to 15000 _req cache per request 15000 _xsolapi_cursor_max_time_for_partial_ OLAP API cursor max cache execute time for partial cache 5000 5000 _xsolapi_cursor_use_row_cache OLAP API enable cursor caching TRUE TRUE _xsolapi_debug_output OLAP API debug output disposition _xsolapi_densify_cubes OLAP API cube densification TABULAR TABULAR _xsolapi_dimension_group_creation OLAP API symmetric overfetch OVERFETCH OVERFETCH _xsolapi_fetch_type OLAP API fetch type PARTIAL PARTIAL Mon Sep 05 page 67 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_xsolapi_load_at_process_start When to load OLAP NEVER NEVER API library at server process start _xsolapi_materialization_rowcache_min OLAP API min number _rows_for_use of rows required to use rowcache in query materialization 1 1 _xsolapi_materialize_sources TRUE TRUE OLAP API Enable source materialization _xsolapi_sql_all_multi_join_non_base_ OLAP API multi-join hints non-base hints _xsolapi_sql_all_non_base_hints OLAP API non-base hints _xsolapi_sql_auto_dimension_hints OLAP API enable automatic dimension hints FALSE FALSE _xsolapi_sql_auto_measure_hints OLAP API enable automatic measure hints TRUE TRUE _xsolapi_sql_dimension_hints OLAP API dimension hints _xsolapi_sql_hints OLAP API generic hints _xsolapi_sql_measure_hints OLAP API measure hints _xsolapi_sql_optimize OLAP API enable optimization TRUE TRUE _xsolapi_sql_prepare_stmt_cache_size OLAP API prepare 16 statement cache size 16 _xsolapi_sql_remove_columns OLAP API enable remove unused columns optimizations TRUE TRUE _xsolapi_sql_result_set_cache_size OLAP API result set cache size 32 32 Mon Sep 05 page 68 Undocumented Oracle Parameters TEST Database Parameter Description Session Value Instance Value ------------------------------------- -------------------- ------------- --------------_xsolapi_sql_symmetric_predicate OLAP API enable TRUE symmetric predicate for dimension groups _xsolapi_sql_top_dimension_hints OLAP API top dimension hints _xsolapi_sql_top_measure_hints OLAP API top measure hints _xsolapi_sql_use_bind_variables OLAP API enable bind TRUE variables optimization TRUE _xt_coverage external tables code none coverage parameter none _xt_trace external tables trace parameter none none _xtbuffer_size buffer size in KB needed for populate/query operation 0 0 _xtts_allow_pre10 allow cross platform FALSE for pre10 compatible tablespace FALSE _xtts_set_platform_info set cross platform info during file header read FALSE FALSE _yield_check_interval interval to check whether actses should yield 100000 100000 918 rows selected. TRUE Appendix B: Test Results form Serial Sort Tests 1 Gigabyte PGA_AGGREGATE_TARGET, Default _pga_max_size SQL> show parameter sga NAME -----------------------------------lock_sga pre_page_sga sga_max_size sga_target SQL> show parameter pga TYPE ----------boolean boolean big integer big integer VALUE -----------------------------FALSE FALSE 1G 1G NAME TYPE VALUE ------------------------------------ ----------- -----------------------------pga_aggregate_target big integer 1G SQL> @get_undocs Parameter ---------------------------------------_pga_large_extent_size _pga_max_size Description ------------------------PGA large extent size Maximum size of the PGA memory for one process Value ---------1048576 209715200 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE _smm_auto_max_io_size Maximum IO size (in KB) 248 used by sort/hash-join in auto mode _smm_auto_min_io_size Minimum IO size (in KB) 56 used by sort/hash-join in auto mode _smm_bound overwrites memory manager 0 automatically computed bound _smm_control provides controls on the memory manager 0 _smm_freeable_retain value in KB of the instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in 52428 auto mode (serial) _smm_min_size minimum work area size in 1024 auto mode _smm_px_max_size maximum work area size in 314571 auto mode (global) _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 _smm_trace Turn on/off tracing for SQL memory manager 0 15 rows selected. SQL> SQL> SQL> 1 2* SQL> set autotrace traceonly set timing on get test_serial select * from test_pga order by district_name,name / 4547752 rows selected. Elapsed: 00:03:29.54 Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=133048 Card=454775 2 Bytes=513895976) 1 2 0 1 SORT (ORDER BY) (Cost=133048 Card=4547752 Bytes=513895976) TABLE ACCESS (FULL) OF 'TEST_PGA' (TABLE) (Cost=15683 Ca rd=4547752 Bytes=513895976) Statistics ---------------------------------------------------------609 recursive calls 49 db block gets 79730 consistent gets 89546 physical reads 0 redo size 253974127 bytes sent via SQL*Net to client 3335525 bytes received via SQL*Net from client 303185 SQL*Net roundtrips to/from client 0 sorts (memory) 1 sorts (disk) 4547752 rows processed SQL> spool off SQL> select * from test_results; SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------623 47708160 6602752 47710208 47710208 4194304 050905105926 623 47708160 6602752 47710208 47710208 10485760 050905105927 623 47708160 6602752 47710208 47710208 16777216 050905105928 623 47708160 6602752 47710208 47710208 23068672 050905105930 623 47708160 6602752 47710208 47710208 28311552 050905105931 623 47708160 6602752 47710208 47710208 34603008 050905105932 623 47708160 6602752 47710208 47710208 40894464 050905105933 623 6602752 6602752 5587968 47710208 46137344 050905105934 623 6602752 4571136 4645888 47710208 51380224 050905105935 623 6602752 4571136 4047872 47710208 56623104 050905105936 623 6602752 4571136 4301824 47710208 62914560 050905105937 623 6094848 6094848 3064832 47710208 68157440 050905105938 623 6094848 6094848 5047296 47710208 73400320 050905105939 623 7618560 7618560 7316480 47710208 78643200 050905105940 623 7618560 7618560 7316480 47710208 84934656 050905105941 623 8634368 8634368 7382016 47710208 89128960 050905105942 623 8634368 8634368 8365056 47710208 95420416 050905105943 623 8634368 8634368 8111104 47710208 101711872 050905105944 623 8634368 8634368 8111104 47710208 106954752 050905105945 623 10158080 10158080 9364480 47710208 112197632 050905105946 623 10158080 10158080 9364480 47710208 118489088 050905105947 623 10158080 10158080 9618432 47710208 123731968 050905105948 623 10158080 10158080 9110528 47710208 128974848 050905105949 623 10158080 10158080 9110528 47710208 135266304 050905105950 623 11681792 11681792 10871808 47710208 140509184 050905105951 623 11681792 11681792 11379712 47710208 145752064 050905105952 623 11681792 11681792 11379712 47710208 152043520 050905105953 623 11681792 11681792 11125760 47710208 157286400 050905105954 623 11681792 11681792 11125760 47710208 163577856 050905105955 623 13205504 13205504 12444672 47710208 168820736 050905105956 623 13205504 13205504 12444672 47710208 175112192 050905105957 623 13205504 13205504 12444672 47710208 180355072 050905105958 623 13205504 13205504 12444672 47710208 186646528 050905105959 623 13205504 13205504 12444672 47710208 190840832 050905110000 623 13205504 13205504 12444672 47710208 197132288 050905110001 623 14729216 14729216 13952000 47710208 202375168 050905110002 623 14729216 14729216 13952000 47710208 208666624 050905110003 623 14729216 14729216 14459904 47710208 212860928 050905110005 623 14729216 14729216 14459904 47710208 219152384 050905110006 623 14729216 14729216 13698048 47710208 224395264 050905110007 623 14729216 14729216 13698048 47710208 230686720 050905110008 623 14729216 14729216 13698048 47710208 236978176 050905110009 623 16760832 16760832 16237568 47710208 241172480 050905110010 623 16760832 16760832 16237568 47710208 247463936 050905110011 623 16760832 16760832 16491520 47710208 252706816 050905110012 623 16760832 16760832 16491520 47710208 258998272 050905110013 623 16760832 16760832 16491520 47710208 265289728 050905110014 623 16760832 16760832 16491520 47710208 269484032 050905110015 623 16760832 16760832 16491520 47710208 275775488 050905110016 623 16760832 16760832 15729664 47710208 281018368 050905110017 623 16760832 16760832 15729664 47710208 286261248 050905110018 623 16760832 16760832 15729664 47710208 292552704 050905110019 623 18284544 18284544 17490944 47710208 296747008 050905110020 623 18284544 18284544 17490944 47710208 303038464 050905110021 623 18284544 18284544 17490944 47710208 309329920 050905110022 623 18284544 18284544 17490944 47710208 313524224 050905110023 623 18284544 18284544 17490944 47710208 319815680 050905110024 623 18284544 18284544 17490944 47710208 326107136 050905110025 623 18284544 18284544 17490944 47710208 330301440 050905110026 623 18284544 18284544 17490944 47710208 336592896 050905110027 623 18284544 18284544 17490944 47710208 341835776 050905110028 623 20824064 20824064 19792896 47710208 346030080 050905110029 623 20824064 20824064 19792896 47710208 352321536 050905110030 623 20824064 20824064 19792896 47710208 357564416 050905110031 623 20824064 20824064 17826816 47710208 360710144 050905110032 623 20824064 20824064 19792896 47710208 365953024 050905110033 623 20824064 20824064 19792896 47710208 372244480 050905110034 623 20824064 20824064 19792896 47710208 378535936 050905110035 623 20824064 20824064 20300800 47710208 382730240 050905110036 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 20824064 20824064 20824064 20824064 20824064 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 27934720 27934720 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 20824064 20824064 20824064 20824064 20824064 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 25395200 27934720 27934720 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 20300800 20300800 20300800 20300800 20300800 20972544 21824512 21824512 21824512 21824512 21824512 21824512 5964800 21824512 21824512 21824512 22586368 22586368 22586368 22586368 21824512 21824512 21824512 21824512 25142272 25142272 25142272 25142272 19055616 24888320 24888320 24888320 3605504 24380416 24380416 24380416 24380416 11994112 24380416 24380416 24380416 24380416 24888320 24888320 24888320 24888320 11584512 12305408 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 387973120 394264576 398458880 404750336 411041792 415236096 421527552 426770432 433061888 437256192 443547648 449839104 455081984 460324864 466616320 471859200 476053504 482344960 488636416 494927872 498073600 504365056 509607936 514850816 519045120 525336576 530579456 536870912 537919488 542113792 548405248 554696704 559939584 562036736 568328192 573571072 579862528 583008256 586153984 592445440 597688320 603979776 606076928 611319808 617611264 623902720 628097024 633339904 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 050905110037 050905110038 050905110039 050905110040 050905110041 050905110042 050905110044 050905110045 050905110046 050905110047 050905110048 050905110049 050905110050 050905110051 050905110052 050905110053 050905110054 050905110055 050905110056 050905110057 050905110058 050905110059 050905110100 050905110101 050905110102 050905110103 050905110104 050905110105 050905110106 050905110107 050905110108 050905110109 050905110110 050905110111 050905110112 050905110113 050905110114 050905110115 050905110116 050905110117 050905110118 050905110119 050905110120 050905110121 050905110123 050905110124 050905110125 050905110126 050905110127 050905110128 050905110129 050905110130 050905110131 050905110132 050905110133 050905110134 050905110135 050905110136 050905110137 050905110138 050905110139 050905110140 050905110141 050905110142 050905110143 050905110144 050905110145 050905110146 050905110147 050905110148 050905110149 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 203 rows selected. SQL> spool off 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24379392 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 24641536 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 47710208 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 050905110150 050905110151 050905110152 050905110153 050905110154 050905110155 050905110156 050905110157 050905110159 050905110200 050905110201 050905110202 050905110203 050905110204 050905110205 050905110206 050905110207 050905110208 050905110209 050905110210 050905110211 050905110212 050905110213 050905110214 050905110215 050905110216 050905110217 050905110218 050905110219 050905110220 050905110221 050905110222 050905110223 050905110224 050905110225 050905110226 050905110227 050905110228 050905110229 050905110230 050905110231 050905110232 050905110233 050905110234 050905110235 050905110236 050905110237 050905110239 050905110240 050905110241 050905110242 050905110243 050905110244 050905110245 050905110246 050905110247 050905110248 050905110249 050905110250 050905110251 050905110252 050905110253 050905110254 4 Gigabyte PGA_AGGREGATE_TARGET, Default _pga_max_size SQL> show parameter pga NAME TYPE VALUE ------------------------------------ ----------- -----------------------------pga_aggregate_target big integer 4G SQL> set autotrace traceonly SQL> / 2273876 rows selected. Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=108710 Card=259414 8 Bytes=456570048) 1 2 0 1 SORT (ORDER BY) (Cost=108710 Card=2594148 Bytes=456570048) TABLE ACCESS (FULL) OF 'TEST_PGA' (TABLE) (Cost=7873 Car d=2594148 Bytes=456570048) Statistics ---------------------------------------------------------305 recursive calls 29 db block gets 39850 consistent gets 77988 physical reads 0 redo size 128100029 bytes sent via SQL*Net to client 1668013 bytes received via SQL*Net from client 151593 SQL*Net roundtrips to/from client 0 sorts (memory) 1 sorts (disk) 2273876 rows processed SQL> spool off SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------623 102313984 9142272 102318080 102318080 66060288 050905111327 623 102313984 9142272 102318080 102318080 72351744 050905111328 623 102313984 9142272 102318080 102318080 78643200 050905111329 623 102313984 9142272 102318080 102318080 84934656 050905111330 623 102313984 9142272 102318080 102318080 90177536 050905111331 623 9142272 9142272 8635392 102318080 95420416 050905111332 623 9142272 9142272 8635392 102318080 101711872 050905111333 623 9142272 9142272 8127488 102318080 106954752 050905111334 623 9142272 6094848 5497856 102318080 112197632 050905111335 623 9142272 6094848 5047296 102318080 118489088 050905111336 623 9142272 6094848 5809152 102318080 123731968 050905111337 623 9142272 6094848 3802112 102318080 127926272 050905111338 623 9142272 6094848 5555200 102318080 134217728 050905111339 623 8126464 8126464 7078912 102318080 139460608 050905111340 623 8126464 8126464 7586816 102318080 144703488 050905111341 623 8126464 8126464 7586816 102318080 150994944 050905111342 623 8126464 8126464 7078912 102318080 156237824 050905111343 623 8126464 8126464 7586816 102318080 160432128 050905111344 623 10158080 10158080 9872384 102318080 166723584 050905111345 623 10158080 10158080 1024 102318080 171966464 050905111346 623 10158080 10158080 9110528 102318080 177209344 050905111347 623 10158080 10158080 9618432 102318080 182452224 050905111348 623 10158080 10158080 9618432 102318080 188743680 050905111349 623 10158080 10158080 9872384 102318080 193986560 050905111350 623 12189696 12189696 11142144 102318080 199229440 050905111351 623 12189696 12189696 11142144 102318080 205520896 050905111352 623 12189696 12189696 11142144 102318080 210763776 050905111354 623 12189696 12189696 11142144 102318080 217055232 050905111355 623 12189696 12189696 11396096 102318080 222298112 050905111356 623 12189696 12189696 11396096 102318080 228589568 050905111357 623 12189696 12189696 11396096 102318080 232783872 050905111358 623 14221312 14221312 9946112 102318080 239075328 050905111359 623 14221312 14221312 13681664 102318080 244318208 050905111400 623 14221312 14221312 13681664 102318080 249561088 050905111401 623 14221312 14221312 13427712 102318080 254803968 050905111402 623 14221312 14221312 13427712 102318080 261095424 050905111403 623 14221312 14221312 13427712 102318080 265289728 050905111404 623 14221312 14221312 13427712 102318080 272629760 050905111405 623 14221312 14221312 13427712 102318080 276824064 050905111406 623 14221312 14221312 13427712 102318080 283115520 050905111407 623 16760832 16760832 15983616 102318080 287309824 050905111408 623 16760832 16760832 15983616 102318080 293601280 050905111409 623 16760832 16760832 15983616 102318080 299892736 050905111410 623 16760832 16760832 16237568 102318080 305135616 050905111411 623 16760832 16760832 16237568 102318080 310378496 050905111412 623 16760832 16760832 7578624 102318080 315621376 050905111413 623 16760832 16760832 16491520 102318080 320864256 050905111414 623 16760832 16760832 16491520 102318080 327155712 050905111415 623 16760832 16760832 15729664 102318080 331350016 050905111416 623 16760832 16760832 15729664 102318080 337641472 050905111417 623 16760832 16760832 15729664 102318080 343932928 050905111418 623 18792448 18792448 18015232 102318080 348127232 050905111419 623 18792448 18792448 18015232 102318080 353370112 050905111420 623 18792448 18792448 18015232 102318080 359661568 050905111421 623 18792448 18792448 18015232 102318080 364904448 050905111422 623 18792448 18792448 18015232 102318080 370147328 050905111423 623 18792448 18792448 18015232 102318080 376438784 050905111424 623 18792448 18792448 18269184 102318080 381681664 050905111425 623 18792448 18792448 18269184 102318080 387973120 050905111426 623 18792448 18792448 18269184 102318080 393216000 050905111427 623 18792448 18792448 18269184 102318080 398458880 050905111428 623 18792448 18792448 18269184 102318080 403701760 050905111429 623 18792448 18792448 18269184 102318080 409993216 050905111430 623 18792448 18792448 18523136 102318080 415236096 050905111432 623 18792448 18792448 18523136 102318080 421527552 050905111433 623 18792448 18792448 5030912 102318080 426770432 050905111434 623 21331968 21331968 20825088 102318080 432013312 050905111435 623 21331968 21331968 20825088 102318080 437256192 050905111436 623 21331968 21331968 20825088 102318080 443547648 050905111437 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 26918912 26918912 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 23871488 26918912 26918912 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 21079040 21079040 21079040 20317184 20317184 20317184 508928 20825088 20825088 20825088 20825088 20825088 20825088 21210112 23569408 23569408 23569408 14656512 23569408 23569408 23569408 11469824 22807552 22807552 22807552 6882304 22807552 22807552 22807552 1442816 22807552 22807552 22807552 4391936 14287872 14287872 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 447741952 454033408 460324864 464519168 470810624 477102080 483393536 487587840 493879296 499122176 504365056 509607936 515899392 520093696 525336576 531628032 537919488 541065216 545259520 551550976 557842432 562036736 566231040 572522496 577765376 583008256 587202560 592445440 598736896 603979776 607125504 613416960 619708416 624951296 629145600 635437056 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 050905111438 050905111439 050905111440 050905111441 050905111442 050905111443 050905111444 050905111445 050905111446 050905111447 050905111448 050905111449 050905111450 050905111451 050905111452 050905111453 050905111454 050905111455 050905111456 050905111457 050905111458 050905111459 050905111500 050905111501 050905111502 050905111503 050905111504 050905111505 050905111506 050905111507 050905111508 050905111510 050905111511 050905111512 050905111513 050905111514 050905111515 050905111516 050905111517 050905111518 050905111519 050905111520 050905111521 050905111522 050905111523 050905111524 050905111525 050905111526 050905111527 050905111528 050905111529 050905111530 050905111531 050905111532 050905111533 050905111534 050905111535 050905111536 050905111537 050905111538 050905111539 050905111540 050905111541 050905111542 050905111543 050905111544 050905111545 050905111546 050905111547 050905111549 050905111550 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 623 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 186 rows selected. SQL> spool off 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 22855680 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 23624704 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 050905111551 050905111552 050905111553 050905111554 050905111555 050905111556 050905111557 050905111558 050905111559 050905111600 050905111601 050905111602 050905111603 050905111604 050905111605 050905111606 050905111607 050905111608 050905111609 050905111610 050905111611 050905111612 050905111613 050905111614 050905111615 050905111616 050905111617 050905111618 050905111619 050905111620 050905111621 050905111622 050905111623 050905111624 050905111625 050905111626 050905111627 050905111629 050905111630 050905111631 050905111632 050905111633 050905111634 050905111635 050905111636 050905111637 4 Gigabyte PGA_AGGREGATE_TARGET, 400M _pga_max_size SQL> show parameter pga NAME -----------------------------------_pga_max_size pga_aggregate_target SQL> show parameter sga TYPE ----------big integer big integer VALUE -----------------------------400M 4G NAME -----------------------------------lock_sga pre_page_sga sga_max_size sga_target SQL> @get_undocs TYPE ----------boolean boolean big integer big integer VALUE -----------------------------FALSE FALSE 1G 1G Parameter ---------------------------------------_pga_large_extent_size _pga_max_size Description ------------------------PGA large extent size Maximum size of the PGA memory for one process Value ---------1048576 419430400 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE _smm_auto_max_io_size Maximum IO size (in KB) 248 used by sort/hash-join in auto mode _smm_auto_min_io_size Minimum IO size (in KB) 56 used by sort/hash-join in auto mode _smm_bound overwrites memory manager 0 automatically computed bound _smm_control provides controls on the memory manager 0 _smm_freeable_retain value in KB of the instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in 204800 auto mode (serial) _smm_min_size minimum work area size in 1024 auto mode _smm_px_max_size maximum work area size in 1258290 auto mode (global) _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 _smm_trace Turn on/off tracing for SQL memory manager 0 15 rows selected. Elapsed: 00:00:00.00 SQL> set autotrace traceonly SQL> get test_serial 1 select * from test_pga 2* order by district_name,name SQL> / 4547752 rows selected. Elapsed: 00:04:09.13 Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=133048 Card=454775 2 Bytes=513895976) 1 2 0 1 SORT (ORDER BY) (Cost=133048 Card=4547752 Bytes=513895976) TABLE ACCESS (FULL) OF 'TEST_PGA' (TABLE) (Cost=15683 Ca rd=4547752 Bytes=513895976) Statistics ---------------------------------------------------------609 recursive calls 42 db block gets 79730 consistent gets 135536 physical reads 0 redo size 253978577 bytes sent via SQL*Net to client 3335525 bytes received via SQL*Net from client 303185 SQL*Net roundtrips to/from client 0 sorts (memory) 1 sorts (disk) 4547752 rows processed SQL> spool off SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------651 123808768 123808768 117547008 117547008 050905113553 651 181287936 181287936 168861696 168861696 050905113554 651 181287936 11681792 181288960 181288960 5242880 050905113555 651 181287936 11681792 181288960 181288960 11534336 050905113556 651 181287936 11681792 181288960 181288960 17825792 050905113557 651 181287936 11681792 181288960 181288960 23068672 050905113558 651 181287936 11681792 181288960 181288960 29360128 050905113559 651 181287936 11681792 181288960 181288960 35651584 050905113600 651 181287936 11681792 181288960 181288960 41943040 050905113601 651 181287936 11681792 181288960 181288960 48234496 050905113602 651 181287936 11681792 181288960 181288960 54525952 050905113603 651 181287936 11681792 181288960 181288960 59768832 050905113604 651 181287936 11681792 181288960 181288960 66060288 050905113605 651 181287936 11681792 181288960 181288960 72351744 050905113606 651 181287936 11681792 181288960 181288960 78643200 050905113607 651 181287936 11681792 181288960 181288960 84934656 050905113608 651 181287936 11681792 181288960 181288960 90177536 050905113609 651 181287936 11681792 181288960 181288960 96468992 050905113610 651 181287936 11681792 181288960 181288960 102760448 050905113611 651 181287936 11681792 181288960 181288960 108003328 050905113612 651 181287936 11681792 181288960 181288960 114294784 050905113613 651 181287936 11681792 181288960 181288960 119537664 050905113614 651 181287936 11681792 181288960 181288960 124780544 050905113615 651 181287936 11681792 181288960 181288960 131072000 050905113616 651 181287936 11681792 181288960 181288960 136314880 050905113617 651 181287936 11681792 181288960 181288960 142606336 050905113619 651 181287936 11681792 181288960 181288960 148897792 050905113620 651 181287936 11681792 181288960 181288960 154140672 050905113621 651 181287936 11681792 181288960 181288960 160432128 050905113622 651 181287936 11681792 181288960 181288960 166723584 050905113623 651 11681792 11681792 10920960 181288960 171966464 050905113624 651 11681792 11681792 7529472 181288960 177209344 050905113625 651 11681792 11681792 10871808 181288960 182452224 050905113626 651 11681792 11681792 11379712 181288960 187695104 050905113627 651 11681792 11681792 11379712 181288960 192937984 050905113628 651 11681792 7618560 7316480 181288960 198180864 050905113629 651 11681792 7618560 7316480 181288960 203423744 050905113630 651 11681792 7618560 6292480 181288960 208666624 050905113631 651 11681792 7618560 6554624 181288960 214958080 050905113632 651 11681792 7618560 6808576 181288960 220200960 050905113633 651 11681792 7618560 7062528 181288960 225443840 050905113634 651 11681792 7618560 7062528 181288960 229638144 050905113635 651 11681792 7618560 6554624 181288960 234881024 050905113636 651 10158080 10158080 9364480 181288960 240123904 050905113637 651 10158080 10158080 9364480 181288960 246415360 050905113638 651 10158080 10158080 9364480 181288960 250609664 050905113639 651 10158080 10158080 6153216 181288960 255852544 050905113640 651 10158080 10158080 9364480 181288960 261095424 050905113641 651 10158080 10158080 9364480 181288960 266338304 050905113642 651 10158080 10158080 9364480 181288960 272629760 050905113643 651 10158080 10158080 9364480 181288960 276824064 050905113644 651 10158080 10158080 9364480 181288960 281018368 050905113645 651 10158080 10158080 9364480 181288960 287309824 050905113646 651 13205504 13205504 12444672 181288960 291504128 050905113647 651 13205504 13205504 12444672 181288960 297795584 050905113648 651 13205504 13205504 12952576 181288960 301989888 050905113649 651 13205504 13205504 12952576 181288960 308281344 050905113650 651 13205504 13205504 4252672 181288960 312475648 050905113651 651 13205504 13205504 12444672 181288960 314572800 050905113652 651 13205504 13205504 12444672 181288960 320864256 050905113653 651 13205504 13205504 12444672 181288960 325058560 050905113655 651 13205504 13205504 12444672 181288960 330301440 050905113656 651 13205504 13205504 12952576 181288960 334495744 050905113657 651 13205504 13205504 12952576 181288960 340787200 050905113658 651 13205504 13205504 8905728 181288960 346030080 050905113659 651 13205504 13205504 12444672 181288960 350224384 050905113700 651 13205504 13205504 12444672 181288960 356515840 050905113701 651 15745024 15745024 11781120 181288960 356515840 050905113702 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 24887296 24887296 24887296 24887296 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 15745024 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 18792448 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 21331968 24887296 24887296 24887296 24887296 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 15188992 15188992 4113408 15188992 15188992 15188992 15442944 15442944 15442944 9110528 14681088 14681088 4645888 14935040 14935040 254976 10806272 18015232 18015232 18015232 6161408 17761280 17761280 17761280 17761280 18015232 18015232 18015232 9806848 18523136 18523136 18523136 18015232 18015232 18015232 15574016 18523136 18523136 3924992 20571136 20571136 20571136 12502016 20825088 20825088 20825088 21079040 21079040 21079040 21079040 20317184 20317184 20317184 10470400 20825088 20825088 20825088 14263296 24617984 24617984 24617984 24617984 254976 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 360710144 364904448 370147328 371195904 377487360 383778816 383778816 390070272 395313152 397410304 401604608 406847488 411041792 413138944 418381824 424673280 424673280 426770432 432013312 437256192 441450496 442499072 446693376 451936256 455081984 457179136 463470592 469762048 473956352 478150656 484442112 489684992 491782144 497025024 503316480 506462208 511705088 516947968 522190848 525336576 531628032 537919488 541065216 546308096 551550976 557842432 560988160 566231040 572522496 578813952 580911104 587202560 593494016 597688320 600834048 607125504 613416960 616562688 619708416 624951296 631242752 637534208 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 050905113703 050905113704 050905113705 050905113706 050905113707 050905113708 050905113709 050905113710 050905113711 050905113712 050905113713 050905113714 050905113715 050905113716 050905113717 050905113718 050905113719 050905113720 050905113721 050905113722 050905113723 050905113724 050905113725 050905113727 050905113728 050905113729 050905113730 050905113731 050905113732 050905113733 050905113734 050905113735 050905113736 050905113737 050905113738 050905113739 050905113740 050905113741 050905113742 050905113743 050905113744 050905113745 050905113746 050905113747 050905113748 050905113749 050905113750 050905113751 050905113752 050905113753 050905113754 050905113755 050905113756 050905113757 050905113758 050905113759 050905113800 050905113801 050905113803 050905113804 050905113805 050905113806 050905113807 050905113808 050905113809 050905113810 050905113811 050905113812 050905113813 050905113814 050905113815 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 050905113816 050905113817 050905113818 050905113819 050905113820 050905113821 050905113822 050905113823 050905113824 050905113825 050905113826 050905113827 050905113828 050905113829 050905113830 050905113831 050905113832 050905113833 050905113834 050905113835 050905113836 050905113837 050905113838 050905113840 050905113841 050905113842 050905113843 050905113844 050905113845 050905113846 050905113847 050905113848 050905113849 050905113850 050905113851 050905113852 050905113853 050905113854 050905113855 050905113856 050905113857 050905113858 050905113859 050905113900 050905113901 050905113902 050905113903 050905113904 050905113905 050905113906 050905113907 050905113908 050905113909 050905113910 050905113911 050905113912 050905113913 050905113914 050905113915 050905113916 050905113917 050905113919 050905113920 050905113921 050905113922 050905113923 050905113924 050905113925 050905113926 050905113927 050905113928 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 651 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 241 rows selected. SQL> spool off 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 20824064 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 21085184 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 181288960 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 638582784 050905113929 050905113930 050905113931 050905113932 050905113933 050905113934 050905113935 050905113936 050905113937 050905113938 050905113939 050905113940 050905113941 050905113942 050905113943 050905113944 050905113945 050905113946 050905113947 050905113948 050905113949 050905113950 050905113951 050905113952 050905113953 050905113954 050905113955 050905113957 050905113958 050905113959 050905114000 Appendix C: Test Results for Various DOP Settings PGA_AGGREGATE_TARGET 4G, 400M _pga_max_size, 333M _smm_px_max_size, DOP 2 SQL> show parameter NAME -----------------------------------O7_DICTIONARY_ACCESSIBILITY __db_cache_size __java_pool_size __large_pool_size __shared_pool_size _pga_max_size _smm_px_max_size active_instance_count aq_tm_processes archive_lag_target asm_diskgroups asm_diskstring asm_power_limit audit_file_dest TYPE ----------boolean big integer big integer big integer big integer big integer integer integer integer integer string string integer string audit_sys_operations audit_trail background_core_dump background_dump_dest backup_tape_io_slaves bitmap_merge_area_size blank_trimming buffer_pool_keep buffer_pool_recycle circuits cluster_database cluster_database_instances cluster_interconnects commit_point_strength compatible control_file_record_keep_time control_files boolean string string string boolean integer boolean string string integer boolean integer string integer string integer string core_dump_dest cpu_count create_bitmap_area_size create_stored_outlines cursor_sharing cursor_space_for_time db_16k_cache_size db_2k_cache_size db_32k_cache_size db_4k_cache_size db_8k_cache_size db_block_buffers db_block_checking db_block_checksum db_block_size db_cache_advice db_cache_size db_create_file_dest db_create_online_log_dest_1 db_create_online_log_dest_2 db_create_online_log_dest_3 db_create_online_log_dest_4 db_create_online_log_dest_5 db_domain db_file_multiblock_read_count db_file_name_convert string integer integer string string boolean big integer big integer big integer big integer big integer integer boolean boolean integer string big integer string string string string string string string integer string VALUE -----------------------------FALSE 684M 8M 4M 224M 400M 340992 0 0 1 /home/oracle/DBHome1/rdbms/aud it FALSE TRUE partial /home/oracle/admin/test/bdump FALSE 1048576 FALSE FALSE 1 1 10.1.0.2.0 7 /home/oracle/oradata/test/con trol01.ctl, /home/oracle/orada ta/test/control02.ctl, /home/ oracle/oradata/test/control03 .ctl /home/oracle/admin/test/cdump 2 8388608 EXACT FALSE 0 0 0 0 0 0 FALSE TRUE 8192 ON 0 32 NAME -----------------------------------db_files db_flashback_retention_target db_keep_cache_size db_name db_recovery_file_dest db_recovery_file_dest_size db_recycle_cache_size db_unique_name db_writer_processes dbwr_io_slaves ddl_wait_for_locks dg_broker_config_file1 dg_broker_config_file2 dg_broker_start disk_asynch_io dispatchers distributed_lock_timeout dml_locks drs_start enqueue_resources event fal_client fal_server fast_start_io_target fast_start_mttr_target fast_start_parallel_rollback file_mapping fileio_network_adapters filesystemio_options fixed_date gc_files_to_locks gcs_server_processes global_context_pool_size global_names hash_area_size hi_shared_memory_address hs_autoregister ifile instance_groups instance_name instance_number instance_type java_max_sessionspace_size java_pool_size java_soft_sessionspace_limit job_queue_processes large_pool_size ldap_directory_access license_max_sessions license_max_users license_sessions_warning local_listener lock_name_space lock_sga log_archive_config log_archive_dest log_archive_dest_1 log_archive_dest_10 log_archive_dest_2 log_archive_dest_3 log_archive_dest_4 log_archive_dest_5 log_archive_dest_6 log_archive_dest_7 TYPE ----------integer integer big integer string string VALUE -----------------------------200 1440 0 test /home/oracle/flash_recovery_ar ea big integer 2G big integer 0 string test integer 7 integer 0 boolean FALSE string /home/oracle/DBHome1/dbs/dr1hf dwh.dat string /home/oracle/DBHome1/dbs/dr2hf dwh.dat boolean FALSE boolean TRUE string (PROTOCOL=TCP) (SERVICE=testX DB) integer 60 integer 2924 boolean FALSE integer 3000 string string string integer 0 integer 0 string LOW boolean FALSE string string none string string integer 0 string boolean FALSE integer 131072 integer 0 boolean TRUE file string string test integer 0 string RDBMS integer 0 big integer 0 integer 0 integer 10 big integer 0 string NONE integer 0 integer 0 integer 0 string string boolean FALSE string string string string string string string string string string NAME -----------------------------------log_archive_dest_8 log_archive_dest_9 log_archive_dest_state_1 log_archive_dest_state_10 log_archive_dest_state_2 log_archive_dest_state_3 log_archive_dest_state_4 log_archive_dest_state_5 log_archive_dest_state_6 log_archive_dest_state_7 log_archive_dest_state_8 log_archive_dest_state_9 log_archive_duplex_dest log_archive_format log_archive_local_first log_archive_max_processes log_archive_min_succeed_dest log_archive_start log_archive_trace log_buffer log_checkpoint_interval log_checkpoint_timeout log_checkpoints_to_alert log_file_name_convert logmnr_max_persistent_sessions max_commit_propagation_delay max_dispatchers max_dump_file_size max_enabled_roles max_shared_servers nls_calendar nls_comp nls_currency nls_date_format nls_date_language nls_dual_currency nls_iso_currency nls_language nls_length_semantics nls_nchar_conv_excp nls_numeric_characters nls_sort nls_territory nls_time_format nls_time_tz_format nls_timestamp_format nls_timestamp_tz_format object_cache_max_size_percent object_cache_optimal_size olap_page_pool_size open_cursors open_links open_links_per_instance optimizer_dynamic_sampling optimizer_features_enable optimizer_index_caching optimizer_index_cost_adj optimizer_mode os_authent_prefix os_roles parallel_adaptive_multi_user parallel_automatic_tuning parallel_execution_message_size parallel_instance_group parallel_max_servers parallel_min_percent parallel_min_servers parallel_server TYPE ----------string string string string string string string string string string string string string string boolean integer integer boolean integer integer integer integer boolean string integer integer integer string integer integer string string string string string string string string string string string string string string string string string integer integer big integer integer integer integer integer string integer integer string string boolean boolean boolean integer string integer integer integer boolean VALUE -----------------------------enable enable enable enable enable enable enable enable enable enable %t_%s_%r.dbf TRUE 2 1 FALSE 0 524288 0 1800 FALSE 1 700 UNLIMITED 150 AMERICAN BYTE FALSE AMERICA 10 102400 0 300 4 4 2 10.1.0.3 0 100 ALL_ROWS ops$ FALSE TRUE FALSE 2148 40 0 0 FALSE NAME -----------------------------------parallel_server_instances parallel_threads_per_cpu pga_aggregate_target plsql_code_type plsql_compiler_flags plsql_debug plsql_native_library_dir plsql_native_library_subdir_count plsql_optimize_level plsql_v2_compatibility plsql_warnings pre_page_sga processes query_rewrite_enabled query_rewrite_integrity rdbms_server_dn read_only_open_delayed recovery_parallelism remote_archive_enable remote_dependencies_mode remote_listener remote_login_passwordfile remote_os_authent remote_os_roles replication_dependency_tracking resource_limit resource_manager_plan resumable_timeout rollback_segments serial_reuse service_names session_cached_cursors session_max_open_files sessions sga_max_size sga_target shadow_core_dump shared_memory_address shared_pool_reserved_size shared_pool_size shared_server_sessions shared_servers skip_unusable_indexes smtp_out_server sort_area_retained_size sort_area_size sp_name spfile sql92_security sql_trace sql_version sqltune_category standby_archive_dest standby_file_management star_transformation_enabled statistics_level streams_pool_size tape_asynch_io thread timed_os_statistics timed_statistics trace_enabled tracefile_identifier transactions transactions_per_rollback_segment undo_management undo_retention TYPE ----------integer integer big integer string string boolean string integer integer boolean string boolean integer string string string boolean integer string string string string boolean boolean boolean boolean string integer string string string integer integer integer big integer big integer string integer big integer big integer integer integer boolean string integer integer string string VALUE -----------------------------1 2 4G INTERPRETED INTERPRETED, NON_DEBUG FALSE 0 2 FALSE DISABLE:ALL FALSE 600 TRUE enforced FALSE 0 true TIMESTAMP EXCLUSIVE FALSE FALSE TRUE FALSE 0 disable test 0 10 665 1G 1G partial 0 11744051 0 1 TRUE 0 65536 test /home/oracle/DBHome1/dbs/spfil etest.ora boolean FALSE boolean FALSE string NATIVE string DEFAULT string ?/dbs/arch string MANUAL string TRUE string TYPICAL big integer 100M boolean TRUE integer 0 integer 0 boolean TRUE boolean TRUE string integer 731 integer 5 string AUTO integer 900 NAME -----------------------------------undo_tablespace use_indirect_data_buffers user_dump_dest utl_file_dir workarea_size_policy SQL> @get_undocs TYPE ----------string boolean string string string VALUE -----------------------------UNDOTBSP2 FALSE /home/oracle/admin/test/udump AUTO Parameter ---------------------------------------_pga_large_extent_size _pga_max_size Description ------------------------PGA large extent size Maximum size of the PGA memory for one process Value ---------1048576 419430400 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE _smm_auto_max_io_size Maximum IO size (in KB) 248 used by sort/hash-join in auto mode _smm_auto_min_io_size Minimum IO size (in KB) 56 used by sort/hash-join in auto mode _smm_bound overwrites memory manager 0 automatically computed bound _smm_control provides controls on the memory manager 0 _smm_freeable_retain value in KB of the instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in 204800 auto mode (serial) _smm_min_size minimum work area size in 1024 auto mode _smm_px_max_size maximum work area size in 340992 auto mode (global) _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 Parameter Description Value ---------------------------------------- ------------------------- ---------_smm_trace Turn on/off tracing for 0 SQL memory manager 15 rows selected. Elapsed: 00:00:00.03 SQL> set timing on SQL> set autotrace traceonly SQL> 1 2 3* SQL> get test_parallel select /*+ parallel(test_pga 2) */ * from test_pga order by district_name,name / 4547752 rows selected. Elapsed: 00:04:24.80 Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=73817 Card=4547752 Bytes=513895976) 1 2 0 1 3 2 PX COORDINATOR PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=73817 Card=454 :Q1001 7752 Bytes=513895976) SORT* (ORDER BY) (Cost=73817 Card=4547752 Bytes=513895 :Q1001 976) 4 5 3 4 PX RECEIVE* (Cost=8639 Card=4547752 Bytes=513895976) :Q1001 PX SEND* (RANGE) OF ':TQ10000' (Cost=8639 Card=454 :Q1000 7752 Bytes=513895976) 6 5 PX BLOCK* (ITERATOR) (Cost=8639 Card=4547752 Byt :Q1000 es=513895976) 7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000 st=8639 Card=4547752 Bytes=513895976) 2 3 4 5 6 7 PARALLEL_TO_SERIAL PARALLEL_COMBINED_WITH_PARENT PARALLEL_COMBINED_WITH_PARENT PARALLEL_TO_PARALLEL PARALLEL_COMBINED_WITH_CHILD PARALLEL_COMBINED_WITH_PARENT Statistics ---------------------------------------------------------1160 recursive calls 45 db block gets 79928 consistent gets 157591 physical reads 680 redo size 253686216 bytes sent via SQL*Net to client 3335525 bytes received via SQL*Net from client 303185 SQL*Net roundtrips to/from client 6 sorts (memory) 2 sorts (disk) 4547752 rows processed SQL> spool off SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------633 26911744 26911744 26656768 26656768 050905115554 632 10350592 10350592 10272768 10272768 050905115554 633 47708160 47708160 44384256 44384256 050905115555 632 18368512 18368512 16785408 16785408 050905115555 633 69868544 69868544 58703872 58703872 050905115556 632 26911744 26911744 22904832 22904832 050905115556 633 84549632 84549632 75988992 75988992 050905115557 632 32572416 32572416 30048256 30048256 050905115557 633 102313984 102313984 93290496 93290496 050905115558 632 39420928 39420928 37052416 37052416 050905115558 633 123808768 123808768 110862336 110862336 050905115559 632 47708160 47708160 43515904 43515904 050905115559 633 149817344 149817344 126967808 126967808 050905115600 632 57735168 57735168 49160192 49160192 050905115600 633 149817344 149817344 143376384 143376384 050905115601 632 57735168 57735168 55549952 55549952 050905115601 633 149817344 10665984 149823488 149823488 4194304 050905115602 632 69868544 69868544 58417152 58417152 050905115602 633 149817344 10665984 149823488 149823488 10485760 050905115603 632 69868544 69868544 58417152 58417152 050905115603 633 149817344 10665984 149823488 149823488 16777216 050905115604 632 69868544 69868544 58417152 58417152 050905115604 633 149817344 10665984 149823488 149823488 22020096 050905115605 632 69868544 69868544 58417152 58417152 050905115605 633 149817344 10665984 149823488 149823488 28311552 050905115606 632 69868544 69868544 58417152 58417152 050905115606 633 149817344 10665984 149823488 149823488 34603008 050905115607 632 69868544 69868544 58417152 58417152 050905115607 633 149817344 10665984 149823488 149823488 40894464 050905115608 632 69868544 69868544 58417152 58417152 050905115608 633 149817344 10665984 149823488 149823488 47185920 050905115609 632 69868544 69868544 58417152 58417152 050905115609 633 149817344 10665984 149823488 149823488 53477376 050905115610 632 69868544 69868544 58417152 58417152 050905115610 633 149817344 10665984 149823488 149823488 59768832 050905115611 632 69868544 69868544 58417152 58417152 050905115611 633 149817344 10665984 149823488 149823488 66060288 050905115612 632 69868544 69868544 58417152 58417152 050905115612 633 149817344 10665984 149823488 149823488 71303168 050905115613 632 69868544 69868544 58417152 58417152 050905115613 633 149817344 10665984 149823488 149823488 77594624 050905115614 632 69868544 69868544 58417152 58417152 050905115614 633 149817344 10665984 149823488 149823488 83886080 050905115615 632 69868544 69868544 58417152 58417152 050905115615 633 149817344 10665984 149823488 149823488 90177536 050905115616 632 69868544 69868544 58417152 58417152 050905115616 633 149817344 10665984 149823488 149823488 96468992 050905115617 632 69868544 69868544 58417152 58417152 050905115617 633 149817344 10665984 149823488 149823488 102760448 050905115618 632 69868544 69868544 58417152 58417152 050905115618 633 149817344 10665984 149823488 149823488 109051904 050905115620 632 69868544 69868544 58417152 58417152 050905115620 633 149817344 10665984 149823488 149823488 114294784 050905115621 632 69868544 69868544 58417152 58417152 050905115621 633 149817344 10665984 149823488 149823488 120586240 050905115622 632 69868544 69868544 58417152 58417152 050905115622 633 149817344 10665984 149823488 149823488 126877696 050905115623 632 69868544 69868544 58417152 58417152 050905115623 633 149817344 10665984 149823488 149823488 133169152 050905115624 632 69868544 69868544 58417152 58417152 050905115624 633 10665984 10665984 2606080 149823488 138412032 050905115625 632 69868544 69868544 59211776 59211776 050905115625 633 10665984 10665984 9905152 149823488 141557760 050905115626 632 69868544 69868544 62259200 62259200 050905115626 633 10665984 10665984 2491392 149823488 147849216 050905115627 632 69868544 69868544 63348736 63348736 050905115627 633 10665984 10665984 9634816 149823488 150994944 050905115628 632 69868544 69868544 66125824 66125824 050905115628 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 10665984 69868544 10665984 69868544 10665984 84549632 10665984 84549632 10665984 84549632 10665984 84549632 10665984 84549632 10665984 84549632 10665984 84549632 10665984 84549632 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 14221312 149817344 14221312 149817344 14221312 149817344 14221312 10665984 69868544 10665984 69868544 7110656 84549632 7110656 84549632 7110656 84549632 7110656 84549632 7110656 84549632 7110656 84549632 7110656 84549632 7110656 84549632 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 9650176 102313984 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 11681792 123808768 14221312 149817344 14221312 149817344 14221312 149817344 14221312 4047872 149823488 156237824 050905115629 67289088 67289088 050905115629 10142720 149823488 160432128 050905115630 69337088 69337088 050905115630 6333440 149823488 164626432 050905115631 71671808 71671808 050905115631 1549312 149823488 170917888 050905115632 72114176 72114176 050905115632 6857728 149823488 175112192 050905115633 74506240 74506240 050905115633 6349824 149823488 179306496 050905115634 77430784 77430784 050905115634 6349824 149823488 183500800 050905115635 79945728 79945728 050905115635 6857728 149823488 187695104 050905115636 82182144 82182144 050905115636 2933760 149823488 192937984 050905115637 83075072 83075072 050905115637 6603776 149823488 198180864 050905115638 84484096 84484096 050905115638 8840192 149823488 201326592 050905115639 88170496 88170496 050905115639 4047872 149823488 206569472 050905115640 89604096 89604096 050905115640 9094144 149823488 210763776 050905115641 91250688 91250688 050905115641 7857152 149823488 214958080 050905115642 94027776 94027776 050905115642 8840192 149823488 220200960 050905115643 94306304 94306304 050905115643 9094144 149823488 224395264 050905115644 97894400 97894400 050905115644 9094144 149823488 229638144 050905115645 97894400 97894400 050905115645 8586240 149823488 233832448 050905115646 101163008 101163008 050905115646 2532352 149823488 239075328 050905115647 101834752 101834752 050905115647 11379712 149823488 240123904 050905115648 105201664 105201664 050905115648 11379712 149823488 246415360 050905115649 105201664 105201664 050905115649 8840192 149823488 248512512 050905115650 108462080 108462080 050905115650 10871808 149823488 252706816 050905115651 109092864 109092864 050905115651 1508352 149823488 257949696 050905115652 109617152 109617152 050905115652 10617856 149823488 260046848 050905115653 112812032 112812032 050905115653 10617856 149823488 266338304 050905115655 112812032 112812032 050905115655 8365056 149823488 268435456 050905115656 115867648 115867648 050905115656 11379712 149823488 272629760 050905115657 117170176 117170176 050905115657 508928 149823488 277872640 050905115658 117407744 117407744 050905115658 9749504 149823488 277872640 050905115659 121184256 121184256 050905115659 11125760 149823488 283115520 050905115700 121880576 121880576 050905115700 2491392 149823488 287309824 050905115701 123346944 123346944 050905115701 12977152 149823488 287309824 050905115702 127721472 127721472 050905115702 13173760 149823488 292552704 050905115703 127803392 127803392 050905115703 13173760 149823488 298844160 050905115704 127803392 127803392 050905115704 13083648 149823488 299892736 050905115705 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 16760832 10665984 16760832 10665984 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 149817344 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 14221312 10665984 16760832 10665984 16760832 10665984 132710400 13935616 132980736 13935616 132980736 13427712 138313728 13427712 138313728 2728960 138977280 13935616 142811136 13935616 142811136 9888768 145948672 13427712 147595264 13427712 147595264 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 6407168 149823488 16237568 3884032 16237568 3924992 132710400 149823488 132980736 149823488 132980736 149823488 138313728 149823488 138313728 149823488 138977280 149823488 142811136 149823488 142811136 149823488 145948672 149823488 147595264 149823488 147595264 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 050905115705 305135616 050905115706 050905115706 311427072 050905115707 050905115707 313524224 050905115708 050905115708 318767104 050905115709 050905115709 324009984 050905115710 050905115710 327155712 050905115711 050905115711 333447168 050905115712 050905115712 336592896 050905115713 050905115713 340787200 050905115714 050905115714 347078656 050905115715 050905115715 348127232 050905115716 3145728 050905115716 348127232 050905115717 9437184 050905115717 348127232 050905115718 15728640 050905115718 348127232 050905115719 20971520 050905115719 348127232 050905115720 27262976 050905115720 348127232 050905115721 33554432 050905115721 348127232 050905115722 39845888 050905115722 348127232 050905115723 45088768 050905115723 348127232 050905115724 51380224 050905115724 348127232 050905115725 56623104 050905115725 348127232 050905115726 62914560 050905115726 348127232 050905115727 69206016 050905115727 348127232 050905115728 74448896 050905115728 348127232 050905115729 80740352 050905115729 348127232 050905115731 87031808 050905115731 348127232 050905115732 92274688 050905115732 348127232 050905115733 98566144 050905115733 348127232 050905115734 104857600 050905115734 348127232 050905115735 111149056 050905115735 348127232 050905115736 117440512 050905115736 348127232 050905115737 122683392 050905115737 348127232 050905115738 128974848 050905115738 348127232 050905115739 135266304 050905115739 348127232 050905115740 137363456 050905115740 354418688 050905115741 137363456 050905115741 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 19808256 10665984 16760832 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 10665984 16760832 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 19808256 7110656 16760832 16237568 3924992 11273216 8545280 14746624 9905152 15729664 762880 15729664 762880 15729664 762880 8053760 4563968 15983616 7185408 15983616 7185408 15983616 7185408 7521280 9806848 9094144 10396672 10929152 1106944 16237568 3400704 16237568 3400704 16237568 3400704 7537664 6939648 14943232 9888768 14943232 9888768 15729664 1024 15729664 1024 254976 1024 12116992 4719616 15262720 6095872 18998272 2147328 18998272 2147328 18998272 2147328 5678080 3982336 11248640 5817344 13083648 6603776 19506176 2548736 19506176 2548736 19506176 2548736 4178944 4056064 5030912 4318208 17273856 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 360710144 137363456 362807296 137363456 362807296 142606336 364904448 146800640 371195904 146800640 376438784 146800640 377487360 146800640 379584512 146800640 384827392 146800640 391118848 146800640 392167424 146800640 392167424 149946368 392167424 155189248 393216000 155189248 399507456 155189248 405798912 155189248 406847488 155189248 406847488 156237824 406847488 162529280 409993216 164626432 416284672 164626432 421527552 164626432 421527552 164626432 421527552 167772160 423624704 169869312 428867584 169869312 435159040 169869312 438304768 169869312 438304768 169869312 438304768 174063616 439353344 175112192 444596224 175112192 450887680 175112192 456130560 175112192 458227712 178257920 460324864 050905115742 050905115742 050905115743 050905115743 050905115744 050905115744 050905115745 050905115745 050905115746 050905115746 050905115747 050905115747 050905115748 050905115748 050905115749 050905115749 050905115750 050905115750 050905115751 050905115751 050905115752 050905115752 050905115753 050905115753 050905115754 050905115754 050905115755 050905115755 050905115756 050905115756 050905115757 050905115757 050905115758 050905115758 050905115759 050905115759 050905115800 050905115800 050905115801 050905115801 050905115802 050905115802 050905115803 050905115803 050905115804 050905115804 050905115805 050905115805 050905115807 050905115807 050905115808 050905115808 050905115809 050905115809 050905115810 050905115810 050905115811 050905115811 050905115812 050905115812 050905115813 050905115813 050905115814 050905115814 050905115815 050905115815 050905115816 050905115816 050905115817 050905115817 050905115818 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 633 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 3555328 16760832 16760832 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 4319232 17273856 17273856 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 179306496 460324864 460324864 050905115818 050905115819 050905115819 050905115820 050905115820 050905115821 050905115821 050905115822 050905115822 050905115823 050905115823 050905115824 050905115824 050905115825 050905115825 050905115826 050905115826 050905115827 050905115827 050905115828 050905115828 050905115829 050905115829 050905115830 050905115830 050905115831 050905115831 050905115832 050905115832 050905115833 050905115833 050905115834 050905115834 050905115835 050905115835 050905115836 050905115836 050905115837 050905115837 050905115838 050905115838 050905115840 050905115840 050905115841 050905115841 050905115842 050905115842 050905115843 050905115843 050905115844 050905115844 050905115845 050905115845 050905115846 050905115846 050905115847 050905115847 050905115848 050905115848 050905115849 050905115849 050905115850 050905115850 050905115851 050905115851 050905115852 050905115852 050905115853 050905115853 050905115854 050905115855 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 050905115856 050905115857 050905115858 050905115859 050905115900 050905115901 050905115902 050905115903 050905115904 050905115905 050905115906 050905115907 050905115908 050905115909 050905115910 050905115911 050905115912 050905115913 050905115914 050905115915 050905115916 050905115918 050905115919 050905115920 050905115921 050905115922 050905115923 050905115924 050905115925 050905115926 050905115927 050905115928 050905115929 050905115930 050905115931 050905115932 050905115933 050905115934 050905115935 050905115936 050905115937 050905115938 050905115939 050905115940 050905115941 050905115942 050905115943 050905115944 050905115945 050905115946 050905115947 050905115948 050905115949 050905115950 050905115951 050905115952 050905115953 050905115954 050905115955 050905115956 050905115958 050905115959 050905120000 050905120001 050905120002 050905120003 050905120004 050905120005 050905120006 050905120007 050905120008 633 633 633 633 633 633 633 633 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 16760832 17273856 17273856 17273856 17273856 17273856 17273856 17273856 17273856 149823488 149823488 149823488 149823488 149823488 149823488 149823488 149823488 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 050905120009 050905120010 050905120011 050905120012 050905120013 050905120014 050905120015 050905120016 431 rows selected. SQL> spool off 50905120008 50905115948 50905115929 50905115909 50905115850 50905115830 50905115811 50905115751 50905115732 50905115712 50905115652 50905115633 50905115613 160000000 140000000 120000000 100000000 80000000 60000000 40000000 20000000 0 50905115554 memory (Bytes) Parallel Session DOP2 Sort Areas Session 632 Timestamp Predicted 166.5 Actual 142.8828125 Session 633 PGA_AGGREGATE_TARGET 4g, 400M _pga_max_size, 333M _smm_px_max_size, DOP 3 SQL> show parameter NAME -----------------------------------O7_DICTIONARY_ACCESSIBILITY __db_cache_size __java_pool_size __large_pool_size __shared_pool_size _pga_max_size _smm_px_max_size active_instance_count aq_tm_processes archive_lag_target asm_diskgroups asm_diskstring asm_power_limit audit_file_dest TYPE ----------boolean big integer big integer big integer big integer big integer integer integer integer integer string string integer string audit_sys_operations audit_trail background_core_dump background_dump_dest backup_tape_io_slaves bitmap_merge_area_size blank_trimming buffer_pool_keep buffer_pool_recycle circuits cluster_database cluster_database_instances cluster_interconnects commit_point_strength compatible control_file_record_keep_time control_files boolean string string string boolean integer boolean string string integer boolean integer string integer string integer string core_dump_dest cpu_count create_bitmap_area_size create_stored_outlines cursor_sharing cursor_space_for_time db_16k_cache_size db_2k_cache_size db_32k_cache_size db_4k_cache_size db_8k_cache_size string integer integer string string boolean big integer big integer big integer big integer big integer NAME -----------------------------------db_block_buffers db_block_checking db_block_checksum db_block_size db_cache_advice db_cache_size db_create_file_dest db_create_online_log_dest_1 db_create_online_log_dest_2 db_create_online_log_dest_3 db_create_online_log_dest_4 db_create_online_log_dest_5 TYPE ----------integer boolean boolean integer string big integer string string string string string string VALUE -----------------------------FALSE 684M 8M 4M 224M 400M 340992 0 0 1 /home/oracle/DBHome1/rdbms/aud it FALSE TRUE partial /home/oracle/admin/test/bdump FALSE 1048576 FALSE FALSE 1 1 10.1.0.2.0 7 /home/oracle/oradata/test/con trol01.ctl, /home/oracle/orada ta/test/control02.ctl, /home/ oracle/oradata/test/control03 .ctl /home/oracle/admin/test/cdump 2 8388608 EXACT FALSE 0 0 0 0 0 VALUE -----------------------------0 FALSE TRUE 8192 ON 0 db_domain db_file_multiblock_read_count db_file_name_convert db_files db_flashback_retention_target db_keep_cache_size db_name db_recovery_file_dest string integer string integer integer big integer string string 32 distributed_lock_timeout dml_locks drs_start enqueue_resources event fal_client fal_server fast_start_io_target fast_start_mttr_target fast_start_parallel_rollback file_mapping fileio_network_adapters 200 1440 0 test /home/oracle/flash_recovery_ar ea big integer 2G big integer 0 string test integer 7 integer 0 boolean FALSE string /home/oracle/DBHome1/dbs/dr1hf dwh.dat string /home/oracle/DBHome1/dbs/dr2hf dwh.dat boolean FALSE boolean TRUE string (PROTOCOL=TCP) (SERVICE=testX DB) integer 60 integer 2924 boolean FALSE integer 3000 string string string integer 0 integer 0 string LOW boolean FALSE string NAME -----------------------------------filesystemio_options fixed_date gc_files_to_locks gcs_server_processes global_context_pool_size global_names hash_area_size hi_shared_memory_address hs_autoregister ifile instance_groups instance_name instance_number instance_type java_max_sessionspace_size java_pool_size java_soft_sessionspace_limit job_queue_processes large_pool_size ldap_directory_access license_max_sessions license_max_users license_sessions_warning local_listener lock_name_space lock_sga log_archive_config log_archive_dest log_archive_dest_1 log_archive_dest_10 log_archive_dest_2 log_archive_dest_3 log_archive_dest_4 TYPE ----------string string string integer string boolean integer integer boolean file string string integer string integer big integer integer integer big integer string integer integer integer string string boolean string string string string string string string db_recovery_file_dest_size db_recycle_cache_size db_unique_name db_writer_processes dbwr_io_slaves ddl_wait_for_locks dg_broker_config_file1 dg_broker_config_file2 dg_broker_start disk_asynch_io dispatchers VALUE -----------------------------none 0 FALSE 131072 0 TRUE test 0 RDBMS 0 0 0 10 0 NONE 0 0 0 FALSE log_archive_dest_5 log_archive_dest_6 log_archive_dest_7 log_archive_dest_8 log_archive_dest_9 log_archive_dest_state_1 log_archive_dest_state_10 log_archive_dest_state_2 log_archive_dest_state_3 log_archive_dest_state_4 log_archive_dest_state_5 log_archive_dest_state_6 log_archive_dest_state_7 log_archive_dest_state_8 string string string string string string string string string string string string string string NAME -----------------------------------log_archive_dest_state_9 log_archive_duplex_dest log_archive_format log_archive_local_first log_archive_max_processes log_archive_min_succeed_dest log_archive_start log_archive_trace log_buffer log_checkpoint_interval log_checkpoint_timeout log_checkpoints_to_alert log_file_name_convert logmnr_max_persistent_sessions max_commit_propagation_delay max_dispatchers max_dump_file_size max_enabled_roles max_shared_servers nls_calendar nls_comp nls_currency nls_date_format nls_date_language nls_dual_currency nls_iso_currency nls_language nls_length_semantics nls_nchar_conv_excp nls_numeric_characters nls_sort nls_territory nls_time_format nls_time_tz_format nls_timestamp_format nls_timestamp_tz_format object_cache_max_size_percent object_cache_optimal_size olap_page_pool_size open_cursors open_links open_links_per_instance optimizer_dynamic_sampling optimizer_features_enable optimizer_index_caching optimizer_index_cost_adj optimizer_mode TYPE ----------string string string boolean integer integer boolean integer integer integer integer boolean string integer integer integer string integer integer string string string string string string string string string string string string string string string string string integer integer big integer integer integer integer integer string integer integer string NAME -----------------------------------os_authent_prefix os_roles parallel_adaptive_multi_user parallel_automatic_tuning TYPE ----------string boolean boolean boolean enable enable enable enable enable enable enable enable enable VALUE -----------------------------enable %t_%s_%r.dbf TRUE 2 1 FALSE 0 524288 0 1800 FALSE 1 700 UNLIMITED 150 AMERICAN BYTE FALSE AMERICA 10 102400 0 300 4 4 2 10.1.0.3 0 100 ALL_ROWS VALUE -----------------------------ops$ FALSE TRUE FALSE parallel_execution_message_size parallel_instance_group parallel_max_servers parallel_min_percent parallel_min_servers parallel_server parallel_server_instances parallel_threads_per_cpu pga_aggregate_target plsql_code_type plsql_compiler_flags plsql_debug plsql_native_library_dir plsql_native_library_subdir_count plsql_optimize_level plsql_v2_compatibility plsql_warnings pre_page_sga processes query_rewrite_enabled query_rewrite_integrity rdbms_server_dn read_only_open_delayed recovery_parallelism remote_archive_enable remote_dependencies_mode remote_listener remote_login_passwordfile remote_os_authent remote_os_roles replication_dependency_tracking resource_limit resource_manager_plan resumable_timeout rollback_segments serial_reuse service_names session_cached_cursors session_max_open_files sessions sga_max_size sga_target shadow_core_dump integer string integer integer integer boolean integer integer big integer string string boolean string integer integer boolean string boolean integer string string string boolean integer string string string string boolean boolean boolean boolean string integer string string string integer integer integer big integer big integer string NAME -----------------------------------shared_memory_address shared_pool_reserved_size shared_pool_size shared_server_sessions shared_servers skip_unusable_indexes smtp_out_server sort_area_retained_size sort_area_size sp_name spfile TYPE ----------integer big integer big integer integer integer boolean string integer integer string string sql92_security sql_trace sql_version sqltune_category standby_archive_dest standby_file_management star_transformation_enabled statistics_level streams_pool_size tape_asynch_io thread timed_os_statistics timed_statistics 2148 40 0 0 FALSE 1 2 4G INTERPRETED INTERPRETED, NON_DEBUG FALSE 0 2 FALSE DISABLE:ALL FALSE 600 TRUE enforced FALSE 0 true TIMESTAMP EXCLUSIVE FALSE FALSE TRUE FALSE 0 disable test 0 10 665 1G 1G partial VALUE -----------------------------0 11744051 0 1 TRUE 0 65536 test /home/oracle/DBHome1/dbs/spfil etest.ora boolean FALSE boolean FALSE string NATIVE string DEFAULT string ?/dbs/arch string MANUAL string TRUE string TYPICAL big integer 100M boolean TRUE integer 0 integer 0 boolean TRUE trace_enabled tracefile_identifier transactions transactions_per_rollback_segment undo_management undo_retention undo_tablespace use_indirect_data_buffers user_dump_dest utl_file_dir workarea_size_policy SQL> @get_undocs boolean string integer integer string integer string boolean string string string TRUE 731 5 AUTO 900 UNDOTBSP2 FALSE /home/oracle/admin/test/udump AUTO Parameter ---------------------------------------_pga_large_extent_size _pga_max_size Description ------------------------PGA large extent size Maximum size of the PGA memory for one process Value ---------1048576 419430400 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE _smm_auto_max_io_size Maximum IO size (in KB) 248 used by sort/hash-join in auto mode _smm_auto_min_io_size Minimum IO size (in KB) 56 used by sort/hash-join in auto mode _smm_bound overwrites memory manager 0 automatically computed bound _smm_control provides controls on the memory manager 0 _smm_freeable_retain value in KB of the instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in 204800 auto mode (serial) _smm_min_size minimum work area size in 1024 auto mode _smm_px_max_size maximum work area size in 340992 auto mode (global) _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 Parameter Description Value ---------------------------------------- ------------------------- ---------_smm_trace Turn on/off tracing for 0 SQL memory manager 15 rows selected. Elapsed: 00:00:00.01 SQL> set autotrace traceonly SQL> get test_parallel 1 select /*+ parallel(test_pga 3) */ 2 * from test_pga 3* order by district_name,name SQL> / 4547752 rows selected. Elapsed: 00:04:07.17 Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=49201 Card=4547752 Bytes=513895976) 1 2 0 1 3 2 PX COORDINATOR PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=49201 Card=454 :Q1001 7752 Bytes=513895976) SORT* (ORDER BY) (Cost=49201 Card=4547752 Bytes=513895 :Q1001 976) 4 5 3 4 PX RECEIVE* (Cost=5759 Card=4547752 Bytes=513895976) :Q1001 PX SEND* (RANGE) OF ':TQ10000' (Cost=5759 Card=454 :Q1000 7752 Bytes=513895976) 6 5 PX BLOCK* (ITERATOR) (Cost=5759 Card=4547752 Byt :Q1000 es=513895976) 7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000 st=5759 Card=4547752 Bytes=513895976) 2 3 4 5 6 7 PARALLEL_TO_SERIAL PARALLEL_COMBINED_WITH_PARENT PARALLEL_COMBINED_WITH_PARENT PARALLEL_TO_PARALLEL PARALLEL_COMBINED_WITH_CHILD PARALLEL_COMBINED_WITH_PARENT Statistics ---------------------------------------------------------572 recursive calls 44 db block gets 79860 consistent gets 150420 physical reads 0 redo size 253646986 bytes sent via SQL*Net to client 3335525 bytes received via SQL*Net from client 303185 SQL*Net roundtrips to/from client 3 sorts (memory) 2 sorts (disk) 4547752 rows processed SQL> spool off SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------632 5824512 5824512 5537792 5537792 050905120841 629 12532736 12532736 10723328 10723328 050905120841 633 47708160 47708160 43155456 43155456 050905120841 632 8547328 8547328 7921664 7921664 050905120842 629 15173632 15173632 15065088 15065088 050905120842 633 69868544 69868544 59252736 59252736 050905120842 632 10350592 10350592 9879552 9879552 050905120843 629 22234112 22234112 18587648 18587648 050905120843 633 84549632 84549632 72146944 72146944 050905120843 632 12532736 12532736 11812864 11812864 050905120844 629 26911744 26911744 22757376 22757376 050905120844 633 102313984 102313984 86941696 86941696 050905120844 632 15173632 15173632 13680640 13680640 050905120845 629 26911744 26911744 26345472 26345472 050905120845 633 102313984 102313984 101163008 101163008 050905120845 632 15173632 15173632 13803520 13803520 050905120846 629 26911744 26911744 26640384 26640384 050905120846 633 102313984 9142272 102318080 102318080 6291456 050905120846 632 15173632 15173632 13803520 13803520 050905120847 629 26911744 26911744 26640384 26640384 050905120847 633 102313984 9142272 102318080 102318080 12582912 050905120847 632 15173632 15173632 13803520 13803520 050905120848 629 26911744 26911744 26640384 26640384 050905120848 633 102313984 9142272 102318080 102318080 17825792 050905120848 632 15173632 15173632 13803520 13803520 050905120849 629 26911744 26911744 26640384 26640384 050905120849 633 102313984 9142272 102318080 102318080 24117248 050905120849 632 15173632 15173632 13803520 13803520 050905120850 629 26911744 26911744 26640384 26640384 050905120850 633 102313984 9142272 102318080 102318080 30408704 050905120850 632 15173632 15173632 13803520 13803520 050905120851 629 26911744 26911744 26640384 26640384 050905120851 633 102313984 9142272 102318080 102318080 36700160 050905120851 632 15173632 15173632 13803520 13803520 050905120852 629 26911744 26911744 26640384 26640384 050905120852 633 102313984 9142272 102318080 102318080 41943040 050905120852 632 15173632 15173632 13803520 13803520 050905120853 629 26911744 26911744 26640384 26640384 050905120853 633 102313984 9142272 102318080 102318080 48234496 050905120853 632 15173632 15173632 13803520 13803520 050905120854 629 26911744 26911744 26640384 26640384 050905120854 633 102313984 9142272 102318080 102318080 53477376 050905120854 632 15173632 15173632 13803520 13803520 050905120855 629 26911744 26911744 26640384 26640384 050905120855 633 102313984 9142272 102318080 102318080 59768832 050905120855 632 15173632 15173632 13803520 13803520 050905120856 629 26911744 26911744 26640384 26640384 050905120856 633 102313984 9142272 102318080 102318080 66060288 050905120856 632 15173632 15173632 13803520 13803520 050905120857 629 26911744 26911744 26640384 26640384 050905120857 633 102313984 9142272 102318080 102318080 71303168 050905120857 632 15173632 15173632 13803520 13803520 050905120858 629 26911744 26911744 26640384 26640384 050905120858 633 102313984 9142272 102318080 102318080 77594624 050905120858 632 15173632 15173632 13803520 13803520 050905120859 629 26911744 26911744 26640384 26640384 050905120859 633 102313984 9142272 102318080 102318080 83886080 050905120859 632 15173632 15173632 13803520 13803520 050905120900 629 26911744 26911744 26640384 26640384 050905120900 633 102313984 9142272 102318080 102318080 90177536 050905120900 632 15173632 15173632 14368768 14368768 050905120901 629 32572416 32572416 27557888 27557888 050905120901 633 9142272 9142272 4121600 102318080 94371840 050905120901 632 15173632 15173632 14811136 14811136 050905120902 629 32572416 32572416 28704768 28704768 050905120902 633 9142272 9142272 8127488 102318080 99614720 050905120902 632 18368512 18368512 15581184 15581184 050905120903 629 32572416 32572416 30572544 30572544 050905120903 633 9142272 9142272 8635392 102318080 102760448 050905120903 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 18368512 32572416 9142272 18368512 32572416 9142272 18368512 39420928 9142272 18368512 39420928 9142272 18368512 39420928 9142272 22234112 39420928 9142272 22234112 39420928 9142272 22234112 47708160 8126464 22234112 47708160 8126464 22234112 47708160 8126464 26911744 47708160 8126464 26911744 47708160 8126464 26911744 47708160 8126464 26911744 57735168 10158080 26911744 57735168 10158080 26911744 57735168 10158080 26911744 57735168 10158080 32572416 57735168 10158080 32572416 57735168 10158080 32572416 57735168 10158080 32572416 57735168 10158080 32572416 69868544 12189696 32572416 69868544 12189696 32572416 69868544 18368512 32572416 9142272 18368512 32572416 6094848 18368512 39420928 6094848 18368512 39420928 6094848 18368512 39420928 6094848 22234112 39420928 6094848 22234112 39420928 6094848 22234112 47708160 8126464 22234112 47708160 8126464 22234112 47708160 8126464 26911744 47708160 8126464 26911744 47708160 8126464 26911744 47708160 8126464 26911744 57735168 10158080 26911744 57735168 10158080 26911744 57735168 10158080 26911744 57735168 10158080 32572416 57735168 10158080 32572416 57735168 10158080 32572416 57735168 10158080 32572416 57735168 10158080 32572416 69868544 12189696 32572416 69868544 12189696 32572416 69868544 15581184 30572544 8635392 16146432 31916032 5243904 16801792 33398784 5809152 17440768 34824192 5301248 18161664 35954688 5047296 18907136 37011456 5555200 19562496 38658048 5047296 20488192 40321024 7840768 20971520 40845312 2286592 21725184 42156032 7332864 22806528 43892736 7586816 23027712 44449792 2360320 23609344 45670400 7078912 24485888 48381952 9618432 24485888 48381952 9618432 25853952 50864128 9872384 25853952 50864128 9872384 27312128 53329920 9110528 27312128 53329920 9110528 28385280 56016896 9364480 28385280 56016896 9364480 29655040 59105280 11904000 29655040 59105280 11904000 30769152 62070784 15581184 30572544 102318080 16146432 31916032 102318080 16801792 33398784 102318080 17440768 34824192 102318080 18161664 35954688 102318080 18907136 37011456 102318080 19562496 38658048 102318080 20488192 40321024 102318080 20971520 40845312 102318080 21725184 42156032 102318080 22806528 43892736 102318080 23027712 44449792 102318080 23609344 45670400 102318080 24485888 48381952 102318080 24485888 48381952 102318080 25853952 50864128 102318080 25853952 50864128 102318080 27312128 53329920 102318080 27312128 53329920 102318080 28385280 56016896 102318080 28385280 56016896 102318080 29655040 59105280 102318080 29655040 59105280 102318080 30769152 62070784 109051904 113246208 117440512 122683392 126877696 131072000 135266304 139460608 144703488 148897792 153092096 157286400 162529280 164626432 170917888 174063616 179306496 182452224 188743680 190840832 197132288 199229440 205520896 050905120905 050905120905 050905120905 050905120906 050905120906 050905120906 050905120907 050905120907 050905120907 050905120908 050905120908 050905120908 050905120909 050905120909 050905120909 050905120910 050905120910 050905120910 050905120911 050905120911 050905120911 050905120912 050905120912 050905120912 050905120913 050905120913 050905120913 050905120914 050905120914 050905120914 050905120915 050905120915 050905120915 050905120916 050905120916 050905120916 050905120917 050905120917 050905120917 050905120918 050905120918 050905120918 050905120919 050905120919 050905120919 050905120920 050905120920 050905120920 050905120921 050905120921 050905120921 050905120922 050905120922 050905120922 050905120923 050905120923 050905120923 050905120924 050905120924 050905120924 050905120925 050905120925 050905120925 050905120926 050905120926 050905120926 050905120927 050905120927 050905120927 050905120928 050905120928 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 12189696 32572416 69868544 12189696 32572416 69868544 12189696 32572416 69868544 12189696 32572416 69868544 12189696 39420928 69868544 12189696 39420928 69868544 12189696 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 47708160 84549632 14221312 47708160 84549632 14221312 47708160 84549632 14221312 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 12189696 32572416 69868544 12189696 32572416 69868544 12189696 32572416 69868544 12189696 32572416 69868544 12189696 39420928 69868544 12189696 39420928 69868544 12189696 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 39420928 84549632 14221312 47708160 84549632 14221312 47708160 84549632 14221312 47708160 84549632 14221312 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 11576320 30818304 62119936 11904000 31252480 63053824 4981760 32063488 64888832 11142144 32063488 64888832 11142144 33480704 67862528 11142144 33480704 67862528 11142144 35127296 71270400 12379136 35274752 71516160 13427712 35274752 71516160 13427712 36667392 74424320 13427712 36667392 74424320 13427712 37232640 75276288 4187136 38584320 77561856 13427712 38584320 77561856 13427712 39698432 79691776 7988224 40615936 81428480 13427712 40615936 81428480 13427712 42483712 84721664 12182528 43016192 85770240 15983616 43016192 85770240 15983616 43966464 87875584 8438784 45211648 89849856 16237568 45211648 89849856 16237568 45744128 102318080 30818304 62119936 102318080 31252480 63053824 102318080 32063488 64888832 102318080 32063488 64888832 102318080 33480704 67862528 102318080 33480704 67862528 102318080 35127296 71270400 102318080 35274752 71516160 102318080 35274752 71516160 102318080 36667392 74424320 102318080 36667392 74424320 102318080 37232640 75276288 102318080 38584320 77561856 102318080 38584320 77561856 102318080 39698432 79691776 102318080 40615936 81428480 102318080 40615936 81428480 102318080 42483712 84721664 102318080 43016192 85770240 102318080 43016192 85770240 102318080 43966464 87875584 102318080 45211648 89849856 102318080 45211648 89849856 102318080 45744128 207618048 050905120928 050905120929 050905120929 213909504 050905120929 050905120930 050905120930 218103808 050905120930 050905120931 050905120931 222298112 050905120931 050905120932 050905120932 228589568 050905120932 050905120933 050905120933 230686720 050905120933 050905120934 050905120934 236978176 050905120934 050905120935 050905120935 239075328 050905120935 050905120936 050905120936 244318208 050905120936 050905120937 050905120937 250609664 050905120937 050905120938 050905120938 252706816 050905120938 050905120939 050905120939 257949696 050905120939 050905120940 050905120940 263192576 050905120940 050905120941 050905120941 266338304 050905120941 050905120942 050905120942 272629760 050905120942 050905120944 050905120944 275775488 050905120944 050905120945 050905120945 279969792 050905120945 050905120946 050905120946 285212672 050905120946 050905120947 050905120947 287309824 050905120947 050905120948 050905120948 292552704 050905120948 050905120949 050905120949 298844160 050905120949 050905120950 050905120950 301989888 050905120950 050905120951 050905120951 305135616 050905120951 050905120952 050905120952 311427072 050905120952 050905120953 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 57735168 102313984 16760832 57735168 102313984 16760832 57735168 102313984 16760832 57735168 102313984 16760832 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 102313984 18792448 57735168 9142272 18792448 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 47708160 102313984 16760832 57735168 102313984 16760832 57735168 102313984 16760832 57735168 102313984 16760832 57735168 102313984 16760832 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 90570752 3843072 46891008 93954048 16491520 46891008 93954048 16491520 46891008 93954048 16491520 48054272 96673792 11666432 48439296 97640448 15729664 48439296 97640448 15729664 49373184 99524608 6743040 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 102318080 18015232 50708480 295936 18015232 90570752 102318080 46891008 93954048 102318080 46891008 93954048 102318080 46891008 93954048 102318080 48054272 96673792 102318080 48439296 97640448 102318080 48439296 97640448 102318080 49373184 99524608 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 50708480 102318080 102318080 050905120953 316669952 050905120953 050905120954 050905120954 317718528 050905120954 050905120955 050905120955 322961408 050905120955 050905120956 050905120956 329252864 050905120956 050905120957 050905120957 331350016 050905120957 050905120958 050905120958 335544320 050905120958 050905120959 050905120959 341835776 050905120959 050905121000 050905121000 346030080 050905121000 050905121001 3145728 050905121001 346030080 050905121001 050905121002 9437184 050905121002 346030080 050905121002 050905121003 14680064 050905121003 346030080 050905121003 050905121004 20971520 050905121004 346030080 050905121004 050905121005 27262976 050905121005 346030080 050905121005 050905121006 33554432 050905121006 346030080 050905121006 050905121007 39845888 050905121007 346030080 050905121007 050905121008 45088768 050905121008 346030080 050905121008 050905121009 51380224 050905121009 346030080 050905121009 050905121010 57671680 050905121010 346030080 050905121010 050905121011 63963136 050905121011 346030080 050905121011 050905121012 70254592 050905121012 346030080 050905121012 050905121013 75497472 050905121013 346030080 050905121013 050905121014 82837504 050905121014 346030080 050905121014 050905121015 89128960 050905121015 346030080 050905121015 050905121016 94371840 050905121016 346030080 050905121016 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 21331968 69868544 9142272 21331968 69868544 9142272 21331968 69868544 9142272 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 57735168 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 9142272 18792448 69868544 6094848 21331968 69868544 6094848 21331968 69868544 6094848 21331968 69868544 6094848 50708480 295936 18015232 50708480 295936 18015232 51486720 1483776 5620736 53723136 4842496 18269184 53723136 4842496 18269184 53723136 4842496 18269184 55001088 7414784 11781120 55304192 8381440 15451136 55697408 1549312 18269184 55697408 1549312 18269184 55697408 1549312 18269184 57425920 4957184 13083648 58220544 6595584 18523136 58220544 6595584 18523136 58228736 6595584 762880 59375616 8889344 8692736 59777024 1311744 13214720 60530688 2753536 18523136 60530688 2753536 18523136 60530688 2753536 18523136 61759488 5243904 9896960 62849024 3515392 20317184 62849024 3515392 20317184 62849024 3515392 50708480 102318080 102318080 50708480 102318080 102318080 51486720 102318080 102318080 53723136 102318080 102318080 53723136 102318080 102318080 53723136 102318080 102318080 55001088 102318080 102318080 55304192 102318080 102318080 55697408 102318080 102318080 55697408 102318080 102318080 55697408 102318080 102318080 57425920 102318080 102318080 58220544 102318080 102318080 58220544 102318080 102318080 58228736 102318080 102318080 59375616 102318080 102318080 59777024 102318080 102318080 60530688 102318080 102318080 60530688 102318080 102318080 60530688 102318080 102318080 61759488 102318080 102318080 62849024 102318080 102318080 62849024 102318080 102318080 62849024 102318080 050905121017 94371840 050905121017 352321536 050905121017 050905121018 94371840 050905121018 357564416 050905121018 050905121019 94371840 050905121019 361758720 050905121019 050905121021 94371840 050905121021 363855872 050905121021 050905121022 94371840 050905121022 370147328 050905121022 050905121023 94371840 050905121023 376438784 050905121023 050905121024 94371840 050905121024 378535936 050905121024 050905121025 99614720 050905121025 378535936 050905121025 050905121026 101711872 050905121026 380633088 050905121026 050905121027 101711872 050905121027 386924544 050905121027 050905121028 101711872 050905121028 393216000 050905121028 050905121029 101711872 050905121029 395313152 050905121029 050905121030 101711872 050905121030 399507456 050905121030 050905121031 101711872 050905121031 404750336 050905121031 050905121032 101711872 050905121032 411041792 050905121032 050905121033 104857600 050905121033 411041792 050905121033 050905121034 109051904 050905121034 411041792 050905121034 050905121035 109051904 050905121035 415236096 050905121035 050905121036 109051904 050905121036 421527552 050905121036 050905121037 109051904 050905121037 427819008 050905121037 050905121038 112197632 050905121038 427819008 050905121038 050905121039 114294784 050905121039 428867584 050905121039 050905121040 114294784 050905121040 434110464 050905121040 050905121041 114294784 050905121041 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 21331968 69868544 9142272 21331968 69868544 9142272 21331968 64430080 9142272 21331968 64430080 3047424 21331968 64430080 3047424 21331968 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 21331968 69868544 6094848 21331968 69868544 6094848 21331968 64430080 6094848 21331968 64430080 3047424 21331968 64430080 3047424 21331968 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 20317184 62849024 3515392 20317184 63610880 5809152 7595008 64430080 2278400 14935040 64430080 3049472 14935040 64430080 3049472 14935040 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 102318080 62849024 102318080 102318080 63610880 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 440401920 050905121041 050905121042 114294784 050905121042 445644800 050905121042 050905121043 117440512 050905121043 446693376 050905121043 050905121044 120586240 050905121044 447741952 050905121044 050905121045 120586240 050905121045 452984832 050905121045 050905121046 120586240 050905121046 459276288 050905121046 050905121047 120586240 050905121047 460324864 050905121047 050905121048 120586240 050905121048 460324864 050905121048 050905121049 120586240 050905121049 460324864 050905121049 050905121050 120586240 050905121050 460324864 050905121050 050905121051 120586240 050905121051 460324864 050905121051 050905121052 120586240 050905121052 460324864 050905121052 050905121053 120586240 050905121053 460324864 050905121053 050905121054 120586240 050905121054 460324864 050905121054 050905121055 120586240 050905121055 460324864 050905121055 050905121056 120586240 050905121056 460324864 050905121056 050905121057 120586240 050905121057 460324864 050905121057 050905121059 120586240 050905121059 460324864 050905121059 050905121100 120586240 050905121100 460324864 050905121100 050905121101 120586240 050905121101 460324864 050905121101 050905121102 120586240 050905121102 460324864 050905121102 050905121103 120586240 050905121103 460324864 050905121103 050905121104 120586240 050905121104 460324864 050905121104 050905121105 120586240 050905121105 460324864 050905121105 050905121106 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 629 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 632 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 3047424 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 64430080 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 3049472 19052544 64430080 19052544 64430080 19052544 64430080 19052544 64430080 19052544 64430080 19052544 64430080 19052544 64430080 19052544 64430080 19052544 64430080 19052544 64430080 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 102318080 64430080 102318080 64430080 102318080 64430080 102318080 64430080 102318080 64430080 102318080 64430080 102318080 64430080 102318080 64430080 102318080 64430080 102318080 64430080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 120586240 050905121106 460324864 050905121106 050905121107 120586240 050905121107 460324864 050905121107 050905121108 120586240 050905121108 460324864 050905121108 050905121109 120586240 050905121109 460324864 050905121109 050905121110 120586240 050905121110 460324864 050905121110 050905121111 120586240 050905121111 460324864 050905121111 050905121112 120586240 050905121112 460324864 050905121112 050905121113 120586240 050905121113 460324864 050905121113 050905121114 460324864 050905121114 050905121115 460324864 050905121115 050905121116 460324864 050905121116 050905121117 460324864 050905121117 050905121118 460324864 050905121118 050905121119 460324864 050905121119 050905121120 460324864 050905121120 050905121121 460324864 050905121121 050905121122 460324864 050905121122 050905121123 460324864 050905121123 460324864 050905121124 460324864 050905121125 460324864 050905121126 460324864 050905121127 460324864 050905121128 460324864 050905121129 460324864 050905121130 460324864 050905121131 460324864 050905121132 460324864 050905121133 460324864 050905121135 460324864 050905121136 460324864 050905121137 460324864 050905121138 460324864 050905121139 460324864 050905121140 460324864 050905121141 460324864 050905121142 460324864 050905121143 460324864 050905121144 460324864 050905121145 460324864 050905121146 460324864 050905121147 460324864 050905121148 460324864 050905121149 460324864 050905121150 460324864 050905121151 460324864 050905121152 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 633 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 547 rows selected. SQL> spool off; 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 18284544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 19052544 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 102318080 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 460324864 050905121153 050905121154 050905121155 050905121156 050905121157 050905121158 050905121159 050905121200 050905121201 050905121202 050905121203 050905121204 050905121205 050905121206 050905121207 050905121208 050905121209 050905121210 050905121211 050905121212 050905121214 050905121215 050905121216 050905121217 050905121218 050905121219 050905121220 050905121221 050905121222 050905121223 050905121224 050905121225 050905121226 050905121227 050905121228 050905121229 050905121230 050905121231 050905121232 050905121233 050905121234 050905121235 050905121236 050905121237 050905121238 050905121239 050905121240 050905121241 050905121242 050905121243 050905121244 050905121245 Session 629 Session 632 Session 633 Predicted 111 Actual 97.57813 Timestamp 50905121245 50905121228 50905121210 50905121153 50905121136 50905121118 50905121101 50905121043 50905121026 50905121008 50905120951 50905120933 50905120916 50905120858 50905120841 Memory (Bytes) Session Sort Memory DOP3 120000000 100000000 80000000 60000000 40000000 20000000 0 PGA_AGGREGATE_TARGET 4g, 400M _pga_max_size, 333M _smm_px_max_size, 4 DOP SQL> show parameters NAME -----------------------------------O7_DICTIONARY_ACCESSIBILITY __db_cache_size __java_pool_size __large_pool_size __shared_pool_size _pga_max_size _smm_px_max_size active_instance_count aq_tm_processes archive_lag_target asm_diskgroups asm_diskstring asm_power_limit audit_file_dest TYPE ----------boolean big integer big integer big integer big integer big integer integer integer integer integer string string integer string audit_sys_operations audit_trail background_core_dump background_dump_dest backup_tape_io_slaves bitmap_merge_area_size blank_trimming buffer_pool_keep buffer_pool_recycle circuits cluster_database cluster_database_instances cluster_interconnects commit_point_strength compatible control_file_record_keep_time control_files boolean string string string boolean integer boolean string string integer boolean integer string integer string integer string core_dump_dest cpu_count create_bitmap_area_size create_stored_outlines cursor_sharing cursor_space_for_time db_16k_cache_size db_2k_cache_size db_32k_cache_size db_4k_cache_size db_8k_cache_size string integer integer string string boolean big integer big integer big integer big integer big integer NAME -----------------------------------db_block_buffers db_block_checking db_block_checksum db_block_size db_cache_advice db_cache_size db_create_file_dest db_create_online_log_dest_1 db_create_online_log_dest_2 db_create_online_log_dest_3 db_create_online_log_dest_4 db_create_online_log_dest_5 TYPE ----------integer boolean boolean integer string big integer string string string string string string VALUE -----------------------------FALSE 684M 8M 4M 224M 400M 340992 0 0 1 /home/oracle/DBHome1/rdbms/aud it FALSE TRUE partial /home/oracle/admin/test/bdump FALSE 1048576 FALSE FALSE 1 1 10.1.0.2.0 7 /home/oracle/oradata/test/con trol01.ctl, /home/oracle/orada ta/test/control02.ctl, /home/ oracle/oradata/test/control03 .ctl /home/oracle/admin/test/cdump 2 8388608 EXACT FALSE 0 0 0 0 0 VALUE -----------------------------0 FALSE TRUE 8192 ON 0 db_domain db_file_multiblock_read_count db_file_name_convert db_files db_flashback_retention_target db_keep_cache_size db_name db_recovery_file_dest string integer string integer integer big integer string string 32 distributed_lock_timeout dml_locks drs_start enqueue_resources event fal_client fal_server fast_start_io_target fast_start_mttr_target fast_start_parallel_rollback file_mapping fileio_network_adapters 200 1440 0 test /home/oracle/flash_recovery_ar ea big integer 2G big integer 0 string test integer 7 integer 0 boolean FALSE string /home/oracle/DBHome1/dbs/dr1hf dwh.dat string /home/oracle/DBHome1/dbs/dr2hf dwh.dat boolean FALSE boolean TRUE string (PROTOCOL=TCP) (SERVICE=testX DB) integer 60 integer 2924 boolean FALSE integer 3000 string string string integer 0 integer 0 string LOW boolean FALSE string NAME -----------------------------------filesystemio_options fixed_date gc_files_to_locks gcs_server_processes global_context_pool_size global_names hash_area_size hi_shared_memory_address hs_autoregister ifile instance_groups instance_name instance_number instance_type java_max_sessionspace_size java_pool_size java_soft_sessionspace_limit job_queue_processes large_pool_size ldap_directory_access license_max_sessions license_max_users license_sessions_warning local_listener lock_name_space lock_sga log_archive_config log_archive_dest log_archive_dest_1 log_archive_dest_10 log_archive_dest_2 log_archive_dest_3 log_archive_dest_4 TYPE ----------string string string integer string boolean integer integer boolean file string string integer string integer big integer integer integer big integer string integer integer integer string string boolean string string string string string string string db_recovery_file_dest_size db_recycle_cache_size db_unique_name db_writer_processes dbwr_io_slaves ddl_wait_for_locks dg_broker_config_file1 dg_broker_config_file2 dg_broker_start disk_asynch_io dispatchers VALUE -----------------------------none 0 FALSE 131072 0 TRUE test 0 RDBMS 0 0 0 10 0 NONE 0 0 0 FALSE log_archive_dest_5 log_archive_dest_6 log_archive_dest_7 log_archive_dest_8 log_archive_dest_9 log_archive_dest_state_1 log_archive_dest_state_10 log_archive_dest_state_2 log_archive_dest_state_3 log_archive_dest_state_4 log_archive_dest_state_5 log_archive_dest_state_6 log_archive_dest_state_7 log_archive_dest_state_8 string string string string string string string string string string string string string string NAME -----------------------------------log_archive_dest_state_9 log_archive_duplex_dest log_archive_format log_archive_local_first log_archive_max_processes log_archive_min_succeed_dest log_archive_start log_archive_trace log_buffer log_checkpoint_interval log_checkpoint_timeout log_checkpoints_to_alert log_file_name_convert logmnr_max_persistent_sessions max_commit_propagation_delay max_dispatchers max_dump_file_size max_enabled_roles max_shared_servers nls_calendar nls_comp nls_currency nls_date_format nls_date_language nls_dual_currency nls_iso_currency nls_language nls_length_semantics nls_nchar_conv_excp nls_numeric_characters nls_sort nls_territory nls_time_format nls_time_tz_format nls_timestamp_format nls_timestamp_tz_format object_cache_max_size_percent object_cache_optimal_size olap_page_pool_size open_cursors open_links open_links_per_instance optimizer_dynamic_sampling optimizer_features_enable optimizer_index_caching optimizer_index_cost_adj optimizer_mode TYPE ----------string string string boolean integer integer boolean integer integer integer integer boolean string integer integer integer string integer integer string string string string string string string string string string string string string string string string string integer integer big integer integer integer integer integer string integer integer string NAME -----------------------------------os_authent_prefix os_roles parallel_adaptive_multi_user parallel_automatic_tuning TYPE ----------string boolean boolean boolean enable enable enable enable enable enable enable enable enable VALUE -----------------------------enable %t_%s_%r.dbf TRUE 2 1 FALSE 0 524288 0 1800 FALSE 1 700 UNLIMITED 150 AMERICAN BYTE FALSE AMERICA 10 102400 0 300 4 4 2 10.1.0.3 0 100 ALL_ROWS VALUE -----------------------------ops$ FALSE TRUE FALSE parallel_execution_message_size parallel_instance_group parallel_max_servers parallel_min_percent parallel_min_servers parallel_server parallel_server_instances parallel_threads_per_cpu pga_aggregate_target plsql_code_type plsql_compiler_flags plsql_debug plsql_native_library_dir plsql_native_library_subdir_count plsql_optimize_level plsql_v2_compatibility plsql_warnings pre_page_sga processes query_rewrite_enabled query_rewrite_integrity rdbms_server_dn read_only_open_delayed recovery_parallelism remote_archive_enable remote_dependencies_mode remote_listener remote_login_passwordfile remote_os_authent remote_os_roles replication_dependency_tracking resource_limit resource_manager_plan resumable_timeout rollback_segments serial_reuse service_names session_cached_cursors session_max_open_files sessions sga_max_size sga_target shadow_core_dump integer string integer integer integer boolean integer integer big integer string string boolean string integer integer boolean string boolean integer string string string boolean integer string string string string boolean boolean boolean boolean string integer string string string integer integer integer big integer big integer string NAME -----------------------------------shared_memory_address shared_pool_reserved_size shared_pool_size shared_server_sessions shared_servers skip_unusable_indexes smtp_out_server sort_area_retained_size sort_area_size sp_name spfile TYPE ----------integer big integer big integer integer integer boolean string integer integer string string sql92_security sql_trace sql_version sqltune_category standby_archive_dest standby_file_management star_transformation_enabled statistics_level streams_pool_size tape_asynch_io thread timed_os_statistics timed_statistics 2148 40 0 0 FALSE 1 2 4G INTERPRETED INTERPRETED, NON_DEBUG FALSE 0 2 FALSE DISABLE:ALL FALSE 600 TRUE enforced FALSE 0 true TIMESTAMP EXCLUSIVE FALSE FALSE TRUE FALSE 0 disable test 0 10 665 1G 1G partial VALUE -----------------------------0 11744051 0 1 TRUE 0 65536 test /home/oracle/DBHome1/dbs/spfil etest.ora boolean FALSE boolean FALSE string NATIVE string DEFAULT string ?/dbs/arch string MANUAL string TRUE string TYPICAL big integer 100M boolean TRUE integer 0 integer 0 boolean TRUE trace_enabled tracefile_identifier transactions transactions_per_rollback_segment undo_management undo_retention undo_tablespace use_indirect_data_buffers user_dump_dest utl_file_dir workarea_size_policy SQL> @get_undocs boolean string integer integer string integer string boolean string string string TRUE 731 5 AUTO 900 UNDOTBSP2 FALSE /home/oracle/admin/test/udump AUTO Parameter ---------------------------------------_pga_large_extent_size _pga_max_size Description ------------------------PGA large extent size Maximum size of the PGA memory for one process Value ---------1048576 419430400 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE _smm_auto_max_io_size Maximum IO size (in KB) 248 used by sort/hash-join in auto mode _smm_auto_min_io_size Minimum IO size (in KB) 56 used by sort/hash-join in auto mode _smm_bound overwrites memory manager 0 automatically computed bound _smm_control provides controls on the memory manager 0 _smm_freeable_retain value in KB of the instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in 204800 auto mode (serial) _smm_min_size minimum work area size in 1024 auto mode _smm_px_max_size maximum work area size in 340992 auto mode (global) _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 Parameter Description Value ---------------------------------------- ------------------------- ---------_smm_trace Turn on/off tracing for 0 SQL memory manager 15 rows selected. Elapsed: 00:00:00.01 SQL> set autotrace traceonly SQL> get test_parallel 1 select /*+ parallel(test_pga 4) */ 2 * from test_pga 3* order by district_name,name SQL> / 4547752 rows selected. Elapsed: 00:04:03.77 Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=36897 Card=4547752 Bytes=513895976) 1 2 0 1 3 2 PX COORDINATOR PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=36897 Card=454 :Q1001 7752 Bytes=513895976) SORT* (ORDER BY) (Cost=36897 Card=4547752 Bytes=513895 :Q1001 976) 4 5 3 4 PX RECEIVE* (Cost=4320 Card=4547752 Bytes=513895976) :Q1001 PX SEND* (RANGE) OF ':TQ10000' (Cost=4320 Card=454 :Q1000 7752 Bytes=513895976) 6 5 PX BLOCK* (ITERATOR) (Cost=4320 Card=4547752 Byt :Q1000 es=513895976) 7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000 st=4320 Card=4547752 Bytes=513895976) 2 3 4 5 6 7 PARALLEL_TO_SERIAL PARALLEL_COMBINED_WITH_PARENT PARALLEL_COMBINED_WITH_PARENT PARALLEL_TO_PARALLEL PARALLEL_COMBINED_WITH_CHILD PARALLEL_COMBINED_WITH_PARENT Statistics ---------------------------------------------------------615 recursive calls 58 db block gets 79861 consistent gets 150428 physical reads 672 redo size 253736283 bytes sent via SQL*Net to client 3335525 bytes received via SQL*Net from client 303185 SQL*Net roundtrips to/from client 3 sorts (memory) 3 sorts (disk) 4547752 rows processed SQL> spool off SQL> select * from test_results; SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------632 84549632 8634368 84549632 84549632 8388608 050905122048 631 32572416 32572416 31662080 31662080 050905122048 629 39420928 39420928 38477824 38477824 050905122048 634 18368512 18368512 16121856 16121856 050905122048 632 84549632 8634368 84549632 84549632 14680064 050905122049 631 32572416 32572416 31662080 31662080 050905122049 629 39420928 39420928 38477824 38477824 050905122049 634 18368512 18368512 16121856 16121856 050905122049 632 84549632 8634368 84549632 84549632 20971520 050905122050 631 32572416 32572416 31662080 31662080 050905122050 629 39420928 39420928 38477824 38477824 050905122050 634 18368512 18368512 16121856 16121856 050905122050 632 84549632 8634368 84549632 84549632 27262976 050905122051 631 32572416 32572416 31662080 31662080 050905122051 629 39420928 39420928 38477824 38477824 050905122051 634 18368512 18368512 16121856 16121856 050905122051 632 84549632 8634368 84549632 84549632 33554432 050905122052 631 32572416 32572416 31662080 31662080 050905122052 629 39420928 39420928 38477824 38477824 050905122052 634 18368512 18368512 16121856 16121856 050905122052 632 84549632 8634368 84549632 84549632 39845888 050905122053 631 32572416 32572416 31662080 31662080 050905122053 629 39420928 39420928 38477824 38477824 050905122053 634 18368512 18368512 16121856 16121856 050905122053 632 84549632 8634368 84549632 84549632 45088768 050905122054 631 32572416 32572416 31662080 31662080 050905122054 629 39420928 39420928 38477824 38477824 050905122054 634 18368512 18368512 16121856 16121856 050905122054 632 84549632 8634368 84549632 84549632 51380224 050905122055 631 32572416 32572416 31662080 31662080 050905122055 629 39420928 39420928 38477824 38477824 050905122055 634 18368512 18368512 16121856 16121856 050905122055 632 84549632 8634368 84549632 84549632 57671680 050905122056 631 32572416 32572416 31662080 31662080 050905122056 629 39420928 39420928 38477824 38477824 050905122056 634 18368512 18368512 16121856 16121856 050905122056 632 84549632 8634368 84549632 84549632 63963136 050905122057 631 32572416 32572416 31662080 31662080 050905122057 629 39420928 39420928 38477824 38477824 050905122057 634 18368512 18368512 16121856 16121856 050905122057 632 84549632 8634368 84549632 84549632 70254592 050905122058 631 32572416 32572416 31662080 31662080 050905122058 629 39420928 39420928 38477824 38477824 050905122058 634 18368512 18368512 16121856 16121856 050905122058 632 84549632 8634368 84549632 84549632 76546048 050905122059 631 32572416 32572416 31662080 31662080 050905122059 629 39420928 39420928 38477824 38477824 050905122059 634 18368512 18368512 16121856 16121856 050905122059 632 8634368 8634368 8127488 84549632 78643200 050905122100 631 39420928 39420928 34668544 34668544 050905122100 629 47708160 47708160 41443328 41443328 050905122100 634 18368512 18368512 17457152 17457152 050905122100 632 8634368 8634368 8127488 84549632 84934656 050905122101 631 39420928 39420928 34668544 34668544 050905122101 629 47708160 47708160 41443328 41443328 050905122101 634 18368512 18368512 17457152 17457152 050905122101 632 8634368 8634368 8365056 84549632 87031808 050905122102 631 39420928 39420928 37101568 37101568 050905122102 629 47708160 47708160 44793856 44793856 050905122102 634 22234112 22234112 18800640 18800640 050905122102 632 8634368 5586944 2941952 84549632 92274688 050905122103 631 39420928 39420928 37961728 37961728 050905122103 629 47708160 47708160 45694976 45694976 050905122103 634 22234112 22234112 19202048 19202048 050905122103 632 8634368 5586944 1106944 84549632 96468992 050905122104 631 39420928 39420928 39084032 39084032 050905122104 629 47708160 47708160 46645248 46645248 050905122104 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 22234112 8634368 47708160 57735168 22234112 8634368 47708160 57735168 22234112 8634368 47708160 57735168 26911744 8634368 47708160 57735168 26911744 7618560 57735168 69868544 26911744 7618560 57735168 69868544 26911744 7618560 57735168 69868544 26911744 7618560 57735168 69868544 26911744 7618560 57735168 69868544 32572416 7618560 57735168 69868544 32572416 7618560 57735168 69868544 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 11173888 69868544 22234112 5586944 47708160 57735168 22234112 5586944 47708160 57735168 22234112 5586944 47708160 57735168 26911744 5586944 47708160 57735168 26911744 7618560 57735168 69868544 26911744 7618560 57735168 69868544 26911744 7618560 57735168 69868544 26911744 7618560 57735168 69868544 26911744 7618560 57735168 69868544 32572416 7618560 57735168 69868544 32572416 7618560 57735168 69868544 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 9142272 69868544 84549632 32572416 11173888 69868544 19988480 4776960 40763392 49102848 20971520 4776960 42221568 51011584 21872640 4776960 44015616 53125120 22962176 4776960 45703168 55353344 23707648 6808576 48160768 57737216 24600576 508928 48537600 57958400 24813568 5293056 50405376 59858944 25534464 7062528 51265536 60891136 25853952 6554624 53444608 63758336 27181056 3400704 54788096 65200128 27934720 6808576 56254464 66592768 28549120 8381440 59670528 70025216 29900800 8381440 59670528 70025216 29900800 8381440 62611456 73572352 31014912 8381440 62611456 73572352 31014912 8381440 65773568 76922880 32309248 254976 65839104 77062144 32342016 9167872 68796416 19988480 84549632 40763392 49102848 20971520 84549632 42221568 51011584 21872640 84549632 44015616 53125120 22962176 84549632 45703168 55353344 23707648 84549632 48160768 57737216 24600576 84549632 48537600 57958400 24813568 84549632 50405376 59858944 25534464 84549632 51265536 60891136 25853952 84549632 53444608 63758336 27181056 84549632 54788096 65200128 27934720 84549632 56254464 66592768 28549120 84549632 59670528 70025216 29900800 84549632 59670528 70025216 29900800 84549632 62611456 73572352 31014912 84549632 62611456 73572352 31014912 84549632 65773568 76922880 32309248 84549632 65839104 77062144 32342016 84549632 68796416 050905122104 100663296 050905122105 050905122105 050905122105 050905122105 103809024 050905122107 050905122107 050905122107 050905122107 106954752 050905122108 050905122108 050905122108 050905122108 111149056 050905122109 050905122109 050905122109 050905122109 113246208 050905122110 050905122110 050905122110 050905122110 119537664 050905122111 050905122111 050905122111 050905122111 119537664 050905122112 050905122112 050905122112 050905122112 124780544 050905122113 050905122113 050905122113 050905122113 126877696 050905122114 050905122114 050905122114 050905122114 132120576 050905122115 050905122115 050905122115 050905122115 136314880 050905122116 050905122116 050905122116 050905122116 138412032 050905122117 050905122117 050905122117 050905122117 143654912 050905122118 050905122118 050905122118 050905122118 145752064 050905122119 050905122119 050905122119 050905122119 152043520 050905122120 050905122120 050905122120 050905122120 154140672 050905122121 050905122121 050905122121 050905122121 160432128 050905122122 050905122122 050905122122 050905122122 160432128 050905122123 050905122123 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 84549632 39420928 11173888 69868544 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 39420928 11173888 69868544 84549632 39420928 11173888 84549632 84549632 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 80445440 34070528 10413056 69386240 80986112 34340864 3204096 70664192 82403328 34897920 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 7463936 72163328 84549632 35536896 10413056 73072640 2581504 36085760 10413056 73072640 2581504 36085760 9356288 80445440 34070528 84549632 69386240 80986112 34340864 84549632 70664192 82403328 34897920 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 72163328 84549632 35536896 84549632 73072640 84549632 36085760 84549632 73072640 84549632 36085760 84549632 164626432 169869312 169869312 4194304 169869312 10485760 169869312 15728640 169869312 22020096 169869312 28311552 169869312 34603008 169869312 39845888 169869312 46137344 169869312 52428800 169869312 58720256 169869312 65011712 169869312 71303168 169869312 77594624 173015040 78643200 178257920 78643200 179306496 050905122123 050905122123 050905122124 050905122124 050905122124 050905122124 050905122125 050905122125 050905122125 050905122125 050905122126 050905122126 050905122126 050905122126 050905122127 050905122127 050905122127 050905122127 050905122128 050905122128 050905122128 050905122128 050905122129 050905122129 050905122129 050905122129 050905122130 050905122130 050905122130 050905122130 050905122131 050905122131 050905122131 050905122131 050905122132 050905122132 050905122132 050905122132 050905122133 050905122133 050905122133 050905122133 050905122134 050905122134 050905122134 050905122134 050905122135 050905122135 050905122135 050905122135 050905122136 050905122136 050905122136 050905122136 050905122137 050905122137 050905122137 050905122137 050905122138 050905122138 050905122138 050905122138 050905122139 050905122139 050905122139 050905122139 050905122140 050905122140 050905122140 050905122140 050905122141 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 47708160 11173888 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 84549632 8634368 47708160 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 39420928 11173888 84549632 8634368 47708160 11173888 84549632 8634368 47708160 13205504 84549632 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 76185600 6890496 37675008 10667008 76693504 7554048 37912576 2991104 77471744 8381440 38453248 3515392 77602816 254976 38518784 10920960 80748544 3793920 40263680 10920960 80748544 3793920 40263680 8373248 84148224 7398400 42131456 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 9552896 84549632 7791616 42352640 76185600 84549632 37675008 84549632 76693504 84549632 37912576 84549632 77471744 84549632 38453248 84549632 77602816 84549632 38518784 84549632 80748544 84549632 40263680 84549632 80748544 84549632 40263680 84549632 84148224 84549632 42131456 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42352640 050905122141 78643200 050905122141 050905122141 184549376 050905122142 050905122142 78643200 050905122142 050905122142 188743680 050905122144 050905122144 79691776 050905122144 050905122144 188743680 050905122145 050905122145 85983232 050905122145 050905122145 189792256 050905122146 050905122146 85983232 050905122146 050905122146 196083712 050905122147 050905122147 85983232 050905122147 050905122147 197132288 050905122148 050905122148 85983232 050905122148 050905122148 197132288 050905122149 6291456 050905122149 85983232 050905122149 050905122149 197132288 050905122150 11534336 050905122150 85983232 050905122150 050905122150 197132288 050905122151 17825792 050905122151 85983232 050905122151 050905122151 197132288 050905122152 24117248 050905122152 85983232 050905122152 050905122152 197132288 050905122153 30408704 050905122153 85983232 050905122153 050905122153 197132288 050905122154 36700160 050905122154 85983232 050905122154 050905122154 197132288 050905122155 42991616 050905122155 85983232 050905122155 050905122155 197132288 050905122156 49283072 050905122156 85983232 050905122156 050905122156 197132288 050905122157 55574528 050905122157 85983232 050905122157 050905122157 197132288 050905122158 61865984 050905122158 85983232 050905122158 050905122158 197132288 050905122159 67108864 050905122159 85983232 050905122159 050905122159 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 13205504 84549632 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 57735168 13205504 8634368 8634368 57735168 13205504 8634368 8634368 57735168 13205504 8634368 8634368 57735168 13205504 8634368 8634368 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 8634368 47708160 13205504 8634368 5586944 47708160 13205504 8634368 5586944 47708160 13205504 8634368 5586944 47708160 13205504 8634368 5586944 47708160 13205504 8634368 5586944 47708160 13205504 8634368 5586944 47708160 13205504 8634368 5586944 47708160 13205504 8634368 5586944 47708160 13205504 8634368 5586944 57735168 13205504 8634368 5586944 57735168 13205504 8634368 5586944 57735168 13205504 8634368 5586944 57735168 13205504 8634368 5586944 9552896 84549632 7791616 42352640 9749504 66560 7857152 42385408 10404864 312320 508928 42508288 12698624 1115136 1950720 42983424 12698624 1115136 1950720 42983424 6489088 3867648 5030912 44351488 12190720 5940224 3195904 45531136 12190720 5940224 3195904 45531136 3916800 7037952 4572160 46039040 5751808 7619584 508928 46317568 5751808 7619584 508928 46317568 12698624 3130368 3589120 47349760 12698624 3130368 3589120 47349760 2884608 4047872 5030912 47792128 10159104 6603776 2933760 48889856 12190720 7324672 3523584 49143808 12190720 7324672 3523584 49143808 2679808 8111104 4506624 84549632 84549632 84549632 42352640 84549632 84549632 84549632 42385408 84549632 84549632 84549632 42508288 84549632 84549632 84549632 42983424 84549632 84549632 84549632 42983424 84549632 84549632 84549632 44351488 84549632 84549632 84549632 45531136 84549632 84549632 84549632 45531136 84549632 84549632 84549632 46039040 84549632 84549632 84549632 46317568 84549632 84549632 84549632 46317568 84549632 84549632 84549632 47349760 84549632 84549632 84549632 47349760 84549632 84549632 84549632 47792128 84549632 84549632 84549632 48889856 84549632 84549632 84549632 49143808 84549632 84549632 84549632 49143808 84549632 84549632 84549632 197132288 050905122200 73400320 050905122200 85983232 050905122200 050905122200 197132288 050905122201 77594624 050905122201 87031808 050905122201 050905122201 197132288 050905122202 77594624 050905122202 92274688 050905122202 050905122202 202375168 050905122203 77594624 050905122203 92274688 050905122203 050905122203 208666624 050905122204 77594624 050905122204 92274688 050905122204 050905122204 208666624 050905122205 77594624 050905122205 94371840 050905122205 050905122205 209715200 050905122206 77594624 050905122206 96468992 050905122206 050905122206 214958080 050905122207 77594624 050905122207 96468992 050905122207 050905122207 220200960 050905122208 77594624 050905122208 96468992 050905122208 050905122208 220200960 050905122209 78643200 050905122209 100663296 050905122209 050905122209 220200960 050905122210 84934656 050905122210 100663296 050905122210 050905122210 222298112 050905122211 84934656 050905122211 100663296 050905122211 050905122211 228589568 050905122212 84934656 050905122212 100663296 050905122212 050905122212 231735296 050905122213 84934656 050905122213 102760448 050905122213 050905122213 231735296 050905122214 84934656 050905122214 104857600 050905122214 050905122214 235929600 050905122216 84934656 050905122216 104857600 050905122216 050905122216 242221056 050905122217 84934656 050905122217 104857600 050905122217 050905122217 242221056 050905122218 90177536 050905122218 104857600 050905122218 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 57735168 15237120 8634368 8634368 57735168 15237120 8634368 8634368 57735168 15237120 8634368 8634368 57735168 15237120 8634368 8634368 57735168 15237120 8634368 8634368 57735168 15237120 8634368 8634368 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 57735168 15237120 8634368 7618560 69868544 15237120 8634368 57735168 15237120 8634368 5586944 57735168 15237120 5586944 5586944 57735168 15237120 5586944 5586944 57735168 15237120 5586944 5586944 57735168 15237120 5586944 5586944 57735168 15237120 5586944 5586944 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 57735168 15237120 5586944 7618560 69868544 15237120 5586944 49496064 3597312 1024 5030912 49676288 10675200 2950144 4047872 51208192 13231104 3802112 508928 51765248 14476288 4195328 508928 52011008 14476288 4195328 508928 52011008 1049600 4523008 1098752 52207616 10355712 3671040 5686272 54353920 13566976 1024 7062528 54796288 14222336 1024 762880 54861824 14222336 1024 762880 54861824 14222336 1024 762880 54861824 8913920 3671040 4432896 56377344 12321792 254976 6202368 57114624 14222336 1696768 7185408 57540608 14222336 1696768 7185408 57540608 1024 1827840 7316480 57573376 5243904 3990528 2221056 58580992 7930880 508928 49496064 84549632 84549632 84549632 49676288 84549632 84549632 84549632 51208192 84549632 84549632 84549632 51765248 84549632 84549632 84549632 52011008 84549632 84549632 84549632 52011008 84549632 84549632 84549632 52207616 84549632 84549632 84549632 54353920 84549632 84549632 84549632 54796288 84549632 84549632 84549632 54861824 84549632 84549632 84549632 54861824 84549632 84549632 84549632 54861824 84549632 84549632 84549632 56377344 84549632 84549632 84549632 57114624 84549632 84549632 84549632 57540608 84549632 84549632 84549632 57540608 84549632 84549632 84549632 57573376 84549632 84549632 84549632 58580992 84549632 84549632 050905122218 242221056 050905122219 92274688 050905122219 108003328 050905122219 050905122219 242221056 050905122220 92274688 050905122220 109051904 050905122220 050905122220 242221056 050905122221 92274688 050905122221 113246208 050905122221 050905122221 247463936 050905122222 92274688 050905122222 113246208 050905122222 050905122222 253755392 050905122223 92274688 050905122223 113246208 050905122223 050905122223 255852544 050905122224 95420416 050905122224 113246208 050905122224 050905122224 255852544 050905122225 96468992 050905122225 113246208 050905122225 050905122225 255852544 050905122226 100663296 050905122226 114294784 050905122226 050905122226 255852544 050905122227 100663296 050905122227 119537664 050905122227 050905122227 262144000 050905122228 100663296 050905122228 119537664 050905122228 050905122228 268435456 050905122229 100663296 050905122229 119537664 050905122229 050905122229 268435456 050905122230 100663296 050905122230 119537664 050905122230 050905122230 268435456 050905122231 104857600 050905122231 119537664 050905122231 050905122231 273678336 050905122232 104857600 050905122232 119537664 050905122232 050905122232 278921216 050905122233 104857600 050905122233 119537664 050905122233 050905122233 282066944 050905122234 104857600 050905122234 122683392 050905122234 050905122234 282066944 050905122235 104857600 050905122235 125829120 050905122235 050905122235 282066944 050905122236 109051904 050905122236 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 7618560 69868544 15237120 8634368 7618560 69868544 15237120 8634368 7618560 69868544 17268736 8634368 7618560 69868544 17268736 8634368 7618560 69868544 17268736 8634368 7618560 69868544 17268736 7618560 7618560 69868544 17268736 7618560 7618560 69868544 17268736 7618560 7618560 69868544 17268736 7618560 7618560 69868544 17268736 7618560 9142272 69868544 17268736 7618560 9142272 69868544 17268736 5079040 9142272 64430080 17268736 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 7618560 69868544 15237120 5586944 7618560 69868544 15237120 5586944 7618560 69868544 17268736 5586944 7618560 69868544 17268736 5586944 7618560 69868544 17268736 5586944 7618560 69868544 17268736 7618560 7618560 69868544 17268736 7618560 7618560 69868544 17268736 7618560 7618560 69868544 17268736 7618560 7618560 69868544 17268736 7618560 9142272 69868544 17268736 7618560 9142272 69868544 17268736 5079040 9142272 64430080 17268736 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 3466240 59080704 14222336 2933760 6153216 60358656 14222336 2933760 6153216 60358656 1836032 3523584 6808576 60645376 2032640 3720192 254976 60702720 5571584 762880 2024448 61325312 16253952 4891648 6480896 62922752 16253952 4891648 6480896 62922752 16253952 4891648 6480896 62922752 1745920 5350400 6808576 63094784 6202368 7316480 2352128 63791104 6857728 1024 2548736 63889408 10724352 5335040 3924992 64430080 10724352 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 84549632 59080704 84549632 84549632 84549632 60358656 84549632 84549632 84549632 60358656 84549632 84549632 84549632 60645376 84549632 84549632 84549632 60702720 84549632 84549632 84549632 61325312 84549632 84549632 84549632 62922752 84549632 84549632 84549632 62922752 84549632 84549632 84549632 62922752 84549632 84549632 84549632 63094784 84549632 84549632 84549632 63791104 84549632 84549632 84549632 63889408 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 125829120 050905122236 050905122236 284164096 050905122237 109051904 050905122237 125829120 050905122237 050905122237 290455552 050905122238 109051904 050905122238 125829120 050905122238 050905122238 294649856 050905122239 109051904 050905122239 125829120 050905122239 050905122239 294649856 050905122240 109051904 050905122240 132120576 050905122240 050905122240 294649856 050905122241 113246208 050905122241 132120576 050905122241 050905122241 295698432 050905122242 113246208 050905122242 132120576 050905122242 050905122242 301989888 050905122243 113246208 050905122243 132120576 050905122243 050905122243 307232768 050905122244 113246208 050905122244 132120576 050905122244 050905122244 310378496 050905122245 113246208 050905122245 135266304 050905122245 050905122245 310378496 050905122246 114294784 050905122246 138412032 050905122246 050905122246 310378496 050905122247 119537664 050905122247 138412032 050905122247 050905122247 311427072 050905122248 120586240 050905122248 139460608 050905122248 050905122248 314572800 050905122249 120586240 050905122249 141557760 050905122249 050905122249 318767104 050905122250 120586240 050905122250 141557760 050905122250 050905122250 318767104 050905122252 120586240 050905122252 141557760 050905122252 050905122252 318767104 050905122253 120586240 050905122253 141557760 050905122253 050905122253 318767104 050905122254 120586240 050905122254 141557760 050905122254 050905122254 318767104 050905122255 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 631 629 634 632 629 634 632 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 5079040 6602752 64430080 14729216 6602752 64430080 14729216 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 5335040 7113728 64430080 14734336 7113728 64430080 14734336 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 84549632 64430080 84549632 84549632 64430080 84549632 120586240 050905122255 141557760 050905122255 050905122255 318767104 050905122256 120586240 050905122256 141557760 050905122256 050905122256 318767104 050905122257 120586240 050905122257 141557760 050905122257 050905122257 318767104 050905122258 120586240 050905122258 141557760 050905122258 050905122258 318767104 050905122259 120586240 050905122259 141557760 050905122259 050905122259 318767104 050905122300 120586240 050905122300 141557760 050905122300 050905122300 318767104 050905122301 120586240 050905122301 141557760 050905122301 050905122301 318767104 050905122302 120586240 050905122302 141557760 050905122302 050905122302 318767104 050905122303 120586240 050905122303 141557760 050905122303 050905122303 318767104 050905122304 120586240 050905122304 141557760 050905122304 050905122304 318767104 050905122305 120586240 050905122305 141557760 050905122305 050905122305 318767104 050905122306 120586240 050905122306 141557760 050905122306 050905122306 318767104 050905122307 120586240 050905122307 141557760 050905122307 050905122307 318767104 050905122308 120586240 050905122308 141557760 050905122308 050905122308 318767104 050905122309 120586240 050905122309 141557760 050905122309 050905122309 318767104 050905122310 120586240 050905122310 141557760 050905122310 050905122310 318767104 050905122311 120586240 050905122311 141557760 050905122311 050905122311 318767104 050905122312 141557760 050905122312 050905122312 318767104 050905122313 629 634 632 629 634 632 629 634 632 629 634 632 629 634 632 629 634 632 629 634 632 629 634 632 629 634 632 629 634 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 64430080 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 7113728 64430080 14734336 7113728 64430080 14734336 7113728 64430080 14734336 7113728 64430080 14734336 7113728 64430080 14734336 7113728 64430080 14734336 7113728 64430080 14734336 7113728 64430080 14734336 7113728 64430080 14734336 7113728 64430080 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 84549632 64430080 84549632 84549632 64430080 84549632 84549632 64430080 84549632 84549632 64430080 84549632 84549632 64430080 84549632 84549632 64430080 84549632 84549632 64430080 84549632 84549632 64430080 84549632 84549632 64430080 84549632 84549632 64430080 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 141557760 050905122313 050905122313 318767104 050905122314 141557760 050905122314 050905122314 318767104 050905122315 141557760 050905122315 050905122315 318767104 050905122316 141557760 050905122316 050905122316 318767104 050905122317 141557760 050905122317 050905122317 318767104 050905122318 141557760 050905122318 050905122318 318767104 050905122319 141557760 050905122319 050905122319 318767104 050905122320 141557760 050905122320 050905122320 318767104 050905122321 141557760 050905122321 050905122321 318767104 050905122322 141557760 050905122322 050905122322 318767104 050905122323 141557760 050905122323 318767104 050905122324 141557760 050905122324 318767104 050905122325 141557760 050905122325 318767104 050905122326 141557760 050905122326 318767104 050905122327 141557760 050905122327 318767104 050905122328 141557760 050905122328 318767104 050905122329 141557760 050905122329 318767104 050905122331 141557760 050905122331 318767104 050905122332 141557760 050905122332 318767104 050905122333 141557760 050905122333 318767104 050905122334 141557760 050905122334 318767104 050905122335 141557760 050905122335 318767104 050905122336 141557760 050905122336 318767104 050905122337 141557760 050905122337 318767104 050905122338 141557760 050905122338 318767104 050905122339 141557760 050905122339 318767104 050905122340 141557760 050905122340 318767104 050905122341 141557760 050905122341 318767104 050905122342 141557760 050905122342 318767104 050905122343 141557760 050905122343 318767104 050905122344 141557760 050905122344 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 632 629 629 629 629 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 6602752 6602752 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 14729216 6602752 6602752 6602752 6602752 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 14734336 7113728 7113728 7113728 7113728 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 318767104 141557760 141557760 141557760 141557760 050905122345 050905122345 050905122346 050905122346 050905122347 050905122347 050905122348 050905122348 050905122349 050905122349 050905122350 050905122350 050905122351 050905122351 050905122352 050905122352 050905122353 050905122353 050905122354 050905122354 050905122355 050905122355 050905122356 050905122356 050905122357 050905122357 050905122358 050905122358 050905122359 050905122359 050905122400 050905122400 050905122401 050905122401 050905122402 050905122402 050905122403 050905122403 050905122404 050905122404 050905122405 050905122405 050905122406 050905122406 050905122407 050905122407 050905122409 050905122409 050905122410 050905122410 050905122411 050905122411 050905122412 050905122412 050905122413 050905122413 050905122414 050905122414 050905122415 050905122415 050905122416 050905122416 050905122417 050905122417 050905122418 050905122418 050905122419 050905122419 050905122420 050905122421 050905122422 629 629 629 629 629 629 629 629 629 629 629 629 629 629 629 629 629 629 629 629 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 6602752 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 7113728 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 84549632 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 141557760 050905122423 050905122424 050905122425 050905122426 050905122427 050905122428 050905122429 050905122430 050905122431 050905122432 050905122433 050905122434 050905122435 050905122436 050905122437 050905122438 050905122439 050905122440 050905122441 050905122442 726 rows selected. SQL> spool off Timestamp Predicted 83.25 Actual 80.63281 50905122438 50905122422 50905122405 50905122349 50905122333 50905122316 50905122300 50905122243 50905122227 50905122210 Session 634 50905122154 Session 632 50905122137 Session 631 50905122121 Session 629 50905122104 90000000 80000000 70000000 60000000 50000000 40000000 30000000 20000000 10000000 0 50905122048 Memory (bytes) Session Sort Memory 4 DOP PGA_AGGREGATE_TARGET 4g, 400M _pga_max_size, 333M _smm_px_max_size, 5 DOP SQL> show parameters NAME -----------------------------------O7_DICTIONARY_ACCESSIBILITY __db_cache_size __java_pool_size __large_pool_size __shared_pool_size _pga_max_size _smm_px_max_size active_instance_count aq_tm_processes archive_lag_target asm_diskgroups asm_diskstring asm_power_limit audit_file_dest TYPE ----------boolean big integer big integer big integer big integer big integer integer integer integer integer string string integer string audit_sys_operations audit_trail background_core_dump background_dump_dest backup_tape_io_slaves bitmap_merge_area_size blank_trimming buffer_pool_keep buffer_pool_recycle circuits cluster_database cluster_database_instances cluster_interconnects commit_point_strength compatible control_file_record_keep_time control_files boolean string string string boolean integer boolean string string integer boolean integer string integer string integer string core_dump_dest cpu_count create_bitmap_area_size create_stored_outlines cursor_sharing cursor_space_for_time db_16k_cache_size db_2k_cache_size db_32k_cache_size db_4k_cache_size db_8k_cache_size string integer integer string string boolean big integer big integer big integer big integer big integer NAME -----------------------------------db_block_buffers db_block_checking db_block_checksum db_block_size db_cache_advice db_cache_size db_create_file_dest db_create_online_log_dest_1 db_create_online_log_dest_2 db_create_online_log_dest_3 db_create_online_log_dest_4 db_create_online_log_dest_5 TYPE ----------integer boolean boolean integer string big integer string string string string string string VALUE -----------------------------FALSE 684M 8M 4M 224M 400M 340992 0 0 1 /home/oracle/DBHome1/rdbms/aud it FALSE TRUE partial /home/oracle/admin/test/bdump FALSE 1048576 FALSE FALSE 1 1 10.1.0.2.0 7 /home/oracle/oradata/test/con trol01.ctl, /home/oracle/orada ta/test/control02.ctl, /home/ oracle/oradata/test/control03 .ctl /home/oracle/admin/test/cdump 2 8388608 EXACT FALSE 0 0 0 0 0 VALUE -----------------------------0 FALSE TRUE 8192 ON 0 db_domain db_file_multiblock_read_count db_file_name_convert db_files db_flashback_retention_target db_keep_cache_size db_name db_recovery_file_dest string integer string integer integer big integer string string 32 distributed_lock_timeout dml_locks drs_start enqueue_resources event fal_client fal_server fast_start_io_target fast_start_mttr_target fast_start_parallel_rollback file_mapping fileio_network_adapters 200 1440 0 test /home/oracle/flash_recovery_ar ea big integer 2G big integer 0 string test integer 7 integer 0 boolean FALSE string /home/oracle/DBHome1/dbs/dr1hf dwh.dat string /home/oracle/DBHome1/dbs/dr2hf dwh.dat boolean FALSE boolean TRUE string (PROTOCOL=TCP) (SERVICE=testX DB) integer 60 integer 2924 boolean FALSE integer 3000 string string string integer 0 integer 0 string LOW boolean FALSE string NAME -----------------------------------filesystemio_options fixed_date gc_files_to_locks gcs_server_processes global_context_pool_size global_names hash_area_size hi_shared_memory_address hs_autoregister ifile instance_groups instance_name instance_number instance_type java_max_sessionspace_size java_pool_size java_soft_sessionspace_limit job_queue_processes large_pool_size ldap_directory_access license_max_sessions license_max_users license_sessions_warning local_listener lock_name_space lock_sga log_archive_config log_archive_dest log_archive_dest_1 log_archive_dest_10 log_archive_dest_2 log_archive_dest_3 log_archive_dest_4 TYPE ----------string string string integer string boolean integer integer boolean file string string integer string integer big integer integer integer big integer string integer integer integer string string boolean string string string string string string string db_recovery_file_dest_size db_recycle_cache_size db_unique_name db_writer_processes dbwr_io_slaves ddl_wait_for_locks dg_broker_config_file1 dg_broker_config_file2 dg_broker_start disk_asynch_io dispatchers VALUE -----------------------------none 0 FALSE 131072 0 TRUE test 0 RDBMS 0 0 0 10 0 NONE 0 0 0 FALSE log_archive_dest_5 log_archive_dest_6 log_archive_dest_7 log_archive_dest_8 log_archive_dest_9 log_archive_dest_state_1 log_archive_dest_state_10 log_archive_dest_state_2 log_archive_dest_state_3 log_archive_dest_state_4 log_archive_dest_state_5 log_archive_dest_state_6 log_archive_dest_state_7 log_archive_dest_state_8 string string string string string string string string string string string string string string NAME -----------------------------------log_archive_dest_state_9 log_archive_duplex_dest log_archive_format log_archive_local_first log_archive_max_processes log_archive_min_succeed_dest log_archive_start log_archive_trace log_buffer log_checkpoint_interval log_checkpoint_timeout log_checkpoints_to_alert log_file_name_convert logmnr_max_persistent_sessions max_commit_propagation_delay max_dispatchers max_dump_file_size max_enabled_roles max_shared_servers nls_calendar nls_comp nls_currency nls_date_format nls_date_language nls_dual_currency nls_iso_currency nls_language nls_length_semantics nls_nchar_conv_excp nls_numeric_characters nls_sort nls_territory nls_time_format nls_time_tz_format nls_timestamp_format nls_timestamp_tz_format object_cache_max_size_percent object_cache_optimal_size olap_page_pool_size open_cursors open_links open_links_per_instance optimizer_dynamic_sampling optimizer_features_enable optimizer_index_caching optimizer_index_cost_adj optimizer_mode TYPE ----------string string string boolean integer integer boolean integer integer integer integer boolean string integer integer integer string integer integer string string string string string string string string string string string string string string string string string integer integer big integer integer integer integer integer string integer integer string NAME -----------------------------------os_authent_prefix os_roles parallel_adaptive_multi_user parallel_automatic_tuning TYPE ----------string boolean boolean boolean enable enable enable enable enable enable enable enable enable VALUE -----------------------------enable %t_%s_%r.dbf TRUE 2 1 FALSE 0 524288 0 1800 FALSE 1 700 UNLIMITED 150 AMERICAN BYTE FALSE AMERICA 10 102400 0 300 4 4 2 10.1.0.3 0 100 ALL_ROWS VALUE -----------------------------ops$ FALSE TRUE FALSE parallel_execution_message_size parallel_instance_group parallel_max_servers parallel_min_percent parallel_min_servers parallel_server parallel_server_instances parallel_threads_per_cpu pga_aggregate_target plsql_code_type plsql_compiler_flags plsql_debug plsql_native_library_dir plsql_native_library_subdir_count plsql_optimize_level plsql_v2_compatibility plsql_warnings pre_page_sga processes query_rewrite_enabled query_rewrite_integrity rdbms_server_dn read_only_open_delayed recovery_parallelism remote_archive_enable remote_dependencies_mode remote_listener remote_login_passwordfile remote_os_authent remote_os_roles replication_dependency_tracking resource_limit resource_manager_plan resumable_timeout rollback_segments serial_reuse service_names session_cached_cursors session_max_open_files sessions sga_max_size sga_target shadow_core_dump integer string integer integer integer boolean integer integer big integer string string boolean string integer integer boolean string boolean integer string string string boolean integer string string string string boolean boolean boolean boolean string integer string string string integer integer integer big integer big integer string NAME -----------------------------------shared_memory_address shared_pool_reserved_size shared_pool_size shared_server_sessions shared_servers skip_unusable_indexes smtp_out_server sort_area_retained_size sort_area_size sp_name spfile TYPE ----------integer big integer big integer integer integer boolean string integer integer string string sql92_security sql_trace sql_version sqltune_category standby_archive_dest standby_file_management star_transformation_enabled statistics_level streams_pool_size tape_asynch_io thread timed_os_statistics timed_statistics 2148 40 0 0 FALSE 1 2 4G INTERPRETED INTERPRETED, NON_DEBUG FALSE 0 2 FALSE DISABLE:ALL FALSE 600 TRUE enforced FALSE 0 true TIMESTAMP EXCLUSIVE FALSE FALSE TRUE FALSE 0 disable test 0 10 665 1G 1G partial VALUE -----------------------------0 11744051 0 1 TRUE 0 65536 test /home/oracle/DBHome1/dbs/spfil etest.ora boolean FALSE boolean FALSE string NATIVE string DEFAULT string ?/dbs/arch string MANUAL string TRUE string TYPICAL big integer 100M boolean TRUE integer 0 integer 0 boolean TRUE trace_enabled tracefile_identifier transactions transactions_per_rollback_segment undo_management undo_retention undo_tablespace use_indirect_data_buffers user_dump_dest utl_file_dir workarea_size_policy SQL> @get_undocs boolean string integer integer string integer string boolean string string string TRUE 731 5 AUTO 900 UNDOTBSP2 FALSE /home/oracle/admin/test/udump AUTO Parameter ---------------------------------------_pga_large_extent_size _pga_max_size Description ------------------------PGA large extent size Maximum size of the PGA memory for one process Value ---------1048576 419430400 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE _smm_auto_max_io_size Maximum IO size (in KB) 248 used by sort/hash-join in auto mode _smm_auto_min_io_size Minimum IO size (in KB) 56 used by sort/hash-join in auto mode _smm_bound overwrites memory manager 0 automatically computed bound _smm_control provides controls on the memory manager 0 _smm_freeable_retain value in KB of the instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in 204800 auto mode (serial) _smm_min_size minimum work area size in 1024 auto mode _smm_px_max_size maximum work area size in 340992 auto mode (global) _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 Parameter Description Value ---------------------------------------- ------------------------- ---------_smm_trace Turn on/off tracing for 0 SQL memory manager 15 rows selected. Elapsed: 00:00:00.00 SQL> set autotrace traceonly SQL> get test_parallel 1 select /*+ parallel(test_pga 5) */ 2 * from test_pga 3* order by district_name,name SQL> / 4547752 rows selected. Elapsed: 00:04:19.20 Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=29514 Card=4547752 Bytes=513895976) 1 2 0 1 3 2 PX COORDINATOR PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=29514 Card=454 :Q1001 7752 Bytes=513895976) SORT* (ORDER BY) (Cost=29514 Card=4547752 Bytes=513895 :Q1001 976) 4 5 3 4 PX RECEIVE* (Cost=3456 Card=4547752 Bytes=513895976) :Q1001 PX SEND* (RANGE) OF ':TQ10000' (Cost=3456 Card=454 :Q1000 7752 Bytes=513895976) 6 5 PX BLOCK* (ITERATOR) (Cost=3456 Card=4547752 Byt :Q1000 es=513895976) 7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000 st=3456 Card=4547752 Bytes=513895976) 2 3 4 5 6 7 PARALLEL_TO_SERIAL PARALLEL_COMBINED_WITH_PARENT PARALLEL_COMBINED_WITH_PARENT PARALLEL_TO_PARALLEL PARALLEL_COMBINED_WITH_CHILD PARALLEL_COMBINED_WITH_PARENT Statistics ---------------------------------------------------------667 recursive calls 66 db block gets 79861 consistent gets 157598 physical reads 628 redo size 253806663 bytes sent via SQL*Net to client 3335525 bytes received via SQL*Net from client 303185 SQL*Net roundtrips to/from client 2 sorts (memory) 5 sorts (disk) 4547752 rows processed SQL> spool off SQL> select * from test_results; SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------618 3269632 3269632 2777088 2777088 050905122757 638 7056384 7056384 5857280 5857280 050905122757 634 18368512 18368512 15343616 15343616 050905122757 629 3269632 3269632 2875392 2875392 050905122757 632 4806656 4806656 4046848 4046848 050905122757 618 4806656 4806656 4481024 4481024 050905122758 638 10350592 10350592 8781824 8781824 050905122758 634 26911744 26911744 24248320 24248320 050905122758 629 4806656 4806656 4562944 4562944 050905122758 632 8547328 8547328 7061504 7061504 050905122758 618 7056384 7056384 5971968 5971968 050905122759 638 12532736 12532736 12165120 12165120 050905122759 634 39420928 39420928 33341440 33341440 050905122759 629 7056384 7056384 6397952 6397952 050905122759 632 10350592 10350592 9478144 9478144 050905122759 618 8547328 8547328 7979008 7979008 050905122800 638 18368512 18368512 16162816 16162816 050905122800 634 47708160 47708160 42303488 42303488 050905122800 629 10350592 10350592 8577024 8577024 050905122800 632 15173632 15173632 12582912 12582912 050905122800 618 10350592 10350592 9715712 9715712 050905122801 638 22234112 22234112 19546112 19546112 050905122801 634 57735168 57735168 50970624 50970624 050905122801 629 12532736 12532736 10387456 10387456 050905122801 632 15173632 15173632 14573568 14573568 050905122801 618 12532736 12532736 10895360 10895360 050905122802 638 26911744 26911744 22265856 22265856 050905122802 634 57735168 7110656 57737216 57737216 2097152 050905122802 629 12532736 12532736 11714560 11714560 050905122802 632 18368512 18368512 16621568 16621568 050905122802 618 12532736 12532736 10895360 10895360 050905122803 638 26911744 26911744 22265856 22265856 050905122803 634 57735168 7110656 57737216 57737216 8388608 050905122803 629 12532736 12532736 11714560 11714560 050905122803 632 18368512 18368512 16621568 16621568 050905122803 618 12532736 12532736 10895360 10895360 050905122804 638 26911744 26911744 22265856 22265856 050905122804 634 57735168 7110656 57737216 57737216 13631488 050905122804 629 12532736 12532736 11714560 11714560 050905122804 632 18368512 18368512 16621568 16621568 050905122804 618 12532736 12532736 10895360 10895360 050905122805 638 26911744 26911744 22265856 22265856 050905122805 634 57735168 7110656 57737216 57737216 19922944 050905122805 629 12532736 12532736 11714560 11714560 050905122805 632 18368512 18368512 16621568 16621568 050905122805 618 12532736 12532736 10895360 10895360 050905122806 638 26911744 26911744 22265856 22265856 050905122806 634 57735168 7110656 57737216 57737216 26214400 050905122806 629 12532736 12532736 11714560 11714560 050905122806 632 18368512 18368512 16621568 16621568 050905122806 618 12532736 12532736 10895360 10895360 050905122807 638 26911744 26911744 22265856 22265856 050905122807 634 57735168 7110656 57737216 57737216 32505856 050905122807 629 12532736 12532736 11714560 11714560 050905122807 632 18368512 18368512 16621568 16621568 050905122807 618 12532736 12532736 10895360 10895360 050905122808 638 26911744 26911744 22265856 22265856 050905122808 634 57735168 7110656 57737216 57737216 38797312 050905122808 629 12532736 12532736 11714560 11714560 050905122808 632 18368512 18368512 16621568 16621568 050905122808 618 12532736 12532736 10895360 10895360 050905122809 638 26911744 26911744 22265856 22265856 050905122809 634 57735168 7110656 57737216 57737216 44040192 050905122809 629 12532736 12532736 11714560 11714560 050905122809 632 18368512 18368512 16621568 16621568 050905122809 618 12532736 12532736 10895360 10895360 050905122810 638 26911744 26911744 22265856 22265856 050905122810 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 57735168 12532736 18368512 12532736 26911744 7110656 15173632 18368512 12532736 26911744 7110656 15173632 18368512 15173632 26911744 7110656 15173632 22234112 15173632 32572416 7110656 15173632 22234112 15173632 32572416 7110656 18368512 22234112 18368512 32572416 7110656 18368512 26911744 18368512 39420928 6094848 18368512 26911744 18368512 39420928 6094848 18368512 26911744 18368512 39420928 6094848 18368512 26911744 18368512 39420928 6094848 22234112 26911744 22234112 39420928 8126464 22234112 32572416 22234112 47708160 8126464 22234112 32572416 22234112 47708160 8126464 22234112 32572416 22234112 47708160 8126464 7110656 12532736 18368512 12532736 26911744 7110656 15173632 18368512 12532736 26911744 7110656 15173632 18368512 15173632 26911744 5079040 15173632 22234112 15173632 32572416 5079040 15173632 22234112 15173632 32572416 5079040 18368512 22234112 18368512 32572416 5079040 18368512 26911744 18368512 39420928 6094848 18368512 26911744 18368512 39420928 6094848 18368512 26911744 18368512 39420928 6094848 18368512 26911744 18368512 39420928 6094848 22234112 26911744 22234112 39420928 8126464 22234112 32572416 22234112 47708160 8126464 22234112 32572416 22234112 47708160 8126464 22234112 32572416 22234112 47708160 8126464 57737216 11714560 16621568 11665408 23625728 4285440 12550144 17743872 11935744 24313856 6095872 12836864 18178048 13238272 26411008 6792192 13680640 19349504 14311424 27869184 4572160 14221312 20234240 14860288 29433856 4318208 15196160 21159936 15482880 31031296 4826112 15802368 22306816 16326656 32817152 5555200 16867328 23732224 16678912 33832960 3400704 17301504 24256512 17096704 34938880 1811456 17678336 24887296 17907712 36765696 5809152 18464768 25935872 19169280 38846464 7586816 19742720 27590656 19505152 39673856 2532352 20299776 27951104 20430848 41598976 7840768 21291008 29630464 20955136 42868736 3785728 57737216 11714560 16621568 11665408 23625728 57737216 12550144 17743872 11935744 24313856 57737216 12836864 18178048 13238272 26411008 57737216 13680640 19349504 14311424 27869184 57737216 14221312 20234240 14860288 29433856 57737216 15196160 21159936 15482880 31031296 57737216 15802368 22306816 16326656 32817152 57737216 16867328 23732224 16678912 33832960 57737216 17301504 24256512 17096704 34938880 57737216 17678336 24887296 17907712 36765696 57737216 18464768 25935872 19169280 38846464 57737216 19742720 27590656 19505152 39673856 57737216 20299776 27951104 20430848 41598976 57737216 21291008 29630464 20955136 42868736 57737216 50331648 050905122810 050905122810 050905122810 050905122811 050905122811 53477376 050905122811 050905122811 050905122811 050905122812 050905122812 58720256 050905122812 050905122812 050905122812 050905122813 050905122813 61865984 050905122813 050905122813 050905122813 050905122814 050905122814 66060288 050905122814 050905122814 050905122814 050905122815 050905122815 69206016 050905122815 050905122815 050905122815 050905122816 050905122816 72351744 050905122816 050905122816 050905122816 050905122817 050905122817 76546048 050905122817 050905122817 050905122817 050905122818 050905122818 80740352 050905122818 050905122818 050905122818 050905122819 050905122819 84934656 050905122819 050905122819 050905122819 050905122820 050905122820 89128960 050905122820 050905122820 050905122820 050905122821 050905122821 91226112 050905122821 050905122821 050905122821 050905122822 050905122822 96468992 050905122822 050905122822 050905122822 050905122823 050905122823 99614720 050905122823 050905122823 050905122823 050905122824 050905122824 102760448 050905122824 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 22234112 32572416 22234112 47708160 8126464 26911744 32572416 26911744 47708160 9142272 26911744 39420928 26911744 47708160 9142272 26911744 39420928 26911744 57735168 9142272 26911744 39420928 26911744 57735168 9142272 26911744 39420928 26911744 57735168 9142272 26911744 39420928 26911744 57735168 9142272 32572416 39420928 26911744 57735168 9142272 32572416 39420928 32572416 57735168 10665984 32572416 47708160 32572416 57735168 10665984 32572416 47708160 32572416 57735168 10665984 32572416 47708160 32572416 57735168 10665984 32572416 47708160 32572416 57735168 10665984 32572416 47708160 32572416 57735168 10665984 32572416 22234112 32572416 22234112 47708160 8126464 26911744 32572416 26911744 47708160 9142272 26911744 39420928 26911744 47708160 9142272 26911744 39420928 26911744 57735168 9142272 26911744 39420928 26911744 57735168 9142272 26911744 39420928 26911744 57735168 9142272 26911744 39420928 26911744 57735168 9142272 32572416 39420928 26911744 57735168 9142272 32572416 39420928 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 21872640 30523392 21618688 44343296 7586816 22552576 31408128 22642688 46440448 6923264 24027136 32940032 23060480 47300608 8889344 24403968 33701888 23953408 49192960 5235712 25264128 34856960 24608768 50241536 8381440 25788416 35618816 25264128 52027392 5161984 26796032 37126144 25976832 53673984 8635392 27631616 38043648 26337280 55549952 4064256 28188672 39051264 27303936 57737216 8848384 29130752 40501248 27303936 57737216 8848384 29130752 40501248 27303936 57737216 8848384 29130752 40501248 27303936 57737216 8848384 29130752 40501248 27303936 57737216 8848384 29130752 40501248 27303936 57737216 8848384 29130752 21872640 30523392 21618688 44343296 57737216 22552576 31408128 22642688 46440448 57737216 24027136 32940032 23060480 47300608 57737216 24403968 33701888 23953408 49192960 57737216 25264128 34856960 24608768 50241536 57737216 25788416 35618816 25264128 52027392 57737216 26796032 37126144 25976832 53673984 57737216 27631616 38043648 26337280 55549952 57737216 28188672 39051264 27303936 57737216 57737216 29130752 40501248 27303936 57737216 57737216 29130752 40501248 27303936 57737216 57737216 29130752 40501248 27303936 57737216 57737216 29130752 40501248 27303936 57737216 57737216 29130752 40501248 27303936 57737216 57737216 29130752 106954752 110100480 114294784 117440512 121634816 124780544 127926272 132120576 4194304 132120576 9437184 132120576 15728640 132120576 22020096 132120576 28311552 132120576 34603008 132120576 050905122824 050905122824 050905122825 050905122825 050905122825 050905122825 050905122825 050905122826 050905122826 050905122826 050905122826 050905122826 050905122827 050905122827 050905122827 050905122827 050905122827 050905122829 050905122829 050905122829 050905122829 050905122829 050905122830 050905122830 050905122830 050905122830 050905122830 050905122831 050905122831 050905122831 050905122831 050905122831 050905122832 050905122832 050905122832 050905122832 050905122832 050905122833 050905122833 050905122833 050905122833 050905122833 050905122834 050905122834 050905122834 050905122834 050905122834 050905122835 050905122835 050905122835 050905122835 050905122835 050905122836 050905122836 050905122836 050905122836 050905122836 050905122837 050905122837 050905122837 050905122837 050905122837 050905122838 050905122838 050905122838 050905122838 050905122838 050905122839 050905122839 050905122839 050905122839 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 47708160 32572416 57735168 10665984 32572416 47708160 32572416 57735168 10665984 32572416 47708160 32572416 57735168 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 12697600 39420928 57735168 32572416 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 10665984 32572416 47708160 32572416 7110656 12697600 39420928 57735168 32572416 7110656 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 40501248 27303936 57737216 8848384 29130752 40501248 27303936 57737216 8848384 29130752 40501248 27303936 57737216 8848384 29130752 40501248 27426816 295936 9634816 29261824 40796160 28106752 1901568 5112832 29827072 42041344 29016064 3556352 9634816 30597120 43057152 29671424 4383744 3318784 30949376 43810816 30113792 6095872 6530048 31571968 44826624 30728192 2139136 10396672 32358400 45826048 30728192 2139136 10396672 32358400 45826048 32448512 6005760 11715584 34209792 48168960 32538624 6267904 12174336 34349056 48316416 32776192 6792192 1631232 34619392 48758784 33030144 508928 3073024 34865152 49324032 40501248 27303936 57737216 57737216 29130752 40501248 27303936 57737216 57737216 29130752 40501248 27303936 57737216 57737216 29130752 40501248 27426816 57737216 57737216 29261824 40796160 28106752 57737216 57737216 29827072 42041344 29016064 57737216 57737216 30597120 43057152 29671424 57737216 57737216 30949376 43810816 30113792 57737216 57737216 31571968 44826624 30728192 57737216 57737216 32358400 45826048 30728192 57737216 57737216 32358400 45826048 32448512 57737216 57737216 34209792 48168960 32538624 57737216 57737216 34349056 48316416 32776192 57737216 57737216 34619392 48758784 33030144 57737216 57737216 34865152 49324032 40894464 132120576 47185920 132120576 52428800 132120576 53477376 137363456 53477376 141557760 53477376 144703488 53477376 149946368 56623104 149946368 58720256 152043520 58720256 158334976 58720256 158334976 58720256 164626432 59768832 169869312 65011712 169869312 050905122839 050905122840 050905122840 050905122840 050905122840 050905122840 050905122841 050905122841 050905122841 050905122841 050905122841 050905122842 050905122842 050905122842 050905122842 050905122842 050905122843 050905122843 050905122843 050905122843 050905122843 050905122844 050905122844 050905122844 050905122844 050905122844 050905122845 050905122845 050905122845 050905122845 050905122845 050905122846 050905122846 050905122846 050905122846 050905122846 050905122847 050905122847 050905122847 050905122847 050905122847 050905122848 050905122848 050905122848 050905122848 050905122848 050905122849 050905122849 050905122849 050905122849 050905122849 050905122850 050905122850 050905122850 050905122850 050905122850 050905122851 050905122851 050905122851 050905122851 050905122851 050905122852 050905122852 050905122852 050905122852 050905122852 050905122853 050905122853 050905122853 050905122853 050905122853 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 39420928 57735168 39420928 7110656 12697600 47708160 57735168 39420928 7110656 12697600 47708160 57735168 39420928 7110656 12697600 47708160 57735168 39420928 7110656 12697600 47708160 57735168 39420928 7110656 12697600 47708160 57735168 39420928 7110656 12697600 47708160 57735168 39420928 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 39420928 57735168 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 34635776 3785728 10281984 36085760 51060736 35020800 4310016 11920384 36339712 51707904 35151872 4441088 1024 36438016 51863552 35725312 1172480 3539968 37003264 52871168 36962304 3400704 9634816 38141952 54755328 37412864 4318208 11666432 38764544 55459840 37412864 4318208 11666432 38764544 55459840 37724160 1049600 3515392 39346176 56287232 38780928 3212288 8627200 40452096 57737216 38780928 3212288 8627200 40452096 57737216 38780928 3212288 8627200 40452096 57737216 38780928 3212288 8627200 40452096 57737216 38780928 3212288 8627200 40452096 57737216 38780928 3212288 8627200 40452096 57737216 38780928 34635776 57737216 57737216 36085760 51060736 35020800 57737216 57737216 36339712 51707904 35151872 57737216 57737216 36438016 51863552 35725312 57737216 57737216 37003264 52871168 36962304 57737216 57737216 38141952 54755328 37412864 57737216 57737216 38764544 55459840 37412864 57737216 57737216 38764544 55459840 37724160 57737216 57737216 39346176 56287232 38780928 57737216 57737216 40452096 57737216 38780928 57737216 57737216 40452096 57737216 38780928 57737216 57737216 40452096 57737216 38780928 57737216 57737216 40452096 57737216 38780928 57737216 57737216 40452096 57737216 38780928 57737216 57737216 40452096 57737216 38780928 050905122854 65011712 050905122854 169869312 050905122854 050905122854 050905122854 050905122855 65011712 050905122855 175112192 050905122855 050905122855 050905122855 050905122856 65011712 050905122856 180355072 050905122856 050905122856 050905122856 050905122857 68157440 050905122857 180355072 050905122857 050905122857 050905122857 050905122858 68157440 050905122858 180355072 050905122858 050905122858 050905122858 050905122859 68157440 050905122859 184549376 050905122859 050905122859 050905122859 050905122900 68157440 050905122900 190840832 050905122900 050905122900 050905122900 050905122901 72351744 050905122901 190840832 050905122901 050905122901 050905122901 050905122903 72351744 050905122903 190840832 050905122903 050905122903 3145728 050905122903 050905122904 72351744 050905122904 190840832 050905122904 050905122904 9437184 050905122904 050905122905 72351744 050905122905 190840832 050905122905 050905122905 15728640 050905122905 050905122906 72351744 050905122906 190840832 050905122906 050905122906 22020096 050905122906 050905122907 72351744 050905122907 190840832 050905122907 050905122907 28311552 050905122907 050905122908 72351744 050905122908 190840832 050905122908 050905122908 33554432 050905122908 050905122909 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 7110656 12697600 47708160 57735168 39420928 7110656 12697600 47708160 57735168 39420928 7110656 12697600 47708160 57735168 39420928 7110656 12697600 47708160 7110656 39420928 7110656 12697600 47708160 7110656 39420928 7110656 12697600 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 39420928 5079040 12697600 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 3212288 8627200 40452096 57737216 38780928 3212288 8627200 40452096 57737216 38780928 3212288 8627200 40452096 57737216 39059456 4064256 10527744 41041920 1131520 39297024 1614848 12428288 41426944 1467392 39297024 1614848 12428288 41426944 1467392 40747008 4301824 7652352 42860544 2950144 41508864 5809152 12108800 43753472 4219904 41910272 254976 13681664 44146688 4580352 41910272 254976 13681664 44146688 4580352 43147264 3138560 6407168 45457408 6341632 43376640 3531776 7455744 45629440 6603776 44474368 5301248 12895232 46440448 1434624 44638208 1024 13681664 46571520 1631232 44638208 1024 57737216 57737216 40452096 57737216 38780928 57737216 57737216 40452096 57737216 38780928 57737216 57737216 40452096 57737216 39059456 57737216 57737216 41041920 57737216 39297024 57737216 57737216 41426944 57737216 39297024 57737216 57737216 41426944 57737216 40747008 57737216 57737216 42860544 57737216 41508864 57737216 57737216 43753472 57737216 41910272 57737216 57737216 44146688 57737216 41910272 57737216 57737216 44146688 57737216 43147264 57737216 57737216 45457408 57737216 43376640 57737216 57737216 45629440 57737216 44474368 57737216 57737216 46440448 57737216 44638208 57737216 57737216 46571520 57737216 44638208 57737216 72351744 050905122909 190840832 050905122909 050905122909 39845888 050905122909 050905122910 72351744 050905122910 190840832 050905122910 050905122910 46137344 050905122910 050905122911 72351744 050905122911 190840832 050905122911 050905122911 52428800 050905122911 050905122912 74448896 050905122912 190840832 050905122912 050905122912 53477376 050905122912 050905122913 75497472 050905122913 195035136 050905122913 050905122913 53477376 050905122913 050905122914 75497472 050905122914 200278016 050905122914 050905122914 53477376 050905122914 050905122915 75497472 050905122915 202375168 050905122915 050905122915 53477376 050905122915 050905122916 78643200 050905122916 202375168 050905122916 050905122916 53477376 050905122916 050905122917 80740352 050905122917 204472320 050905122917 050905122917 53477376 050905122917 050905122918 80740352 050905122918 211812352 050905122918 050905122918 53477376 050905122918 050905122919 80740352 050905122919 213909504 050905122919 050905122919 53477376 050905122919 050905122920 80740352 050905122920 213909504 050905122920 050905122920 58720256 050905122920 050905122921 82837504 050905122921 213909504 050905122921 050905122921 59768832 050905122921 050905122922 84934656 050905122922 218103808 050905122922 050905122922 59768832 050905122922 050905122923 84934656 050905122923 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 57735168 7110656 47708160 6094848 14221312 57735168 7110656 47708160 6094848 14221312 57735168 7110656 47708160 6094848 14221312 57735168 7110656 47708160 6094848 14221312 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 14221312 47708160 7110656 47708160 6094848 14221312 47708160 7110656 47708160 6094848 14221312 57735168 7110656 47708160 6094848 14221312 57735168 7110656 47708160 6094848 14221312 57735168 7110656 47708160 6094848 14221312 57735168 7110656 47708160 6094848 14221312 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 13681664 46571520 1631232 45629440 2753536 7644160 47521792 3073024 46784512 5047296 13935616 48422912 4842496 46784512 5047296 13935616 48422912 4842496 46800896 508928 13935616 48422912 4842496 47366144 1885184 3474432 49037312 5825536 47661056 2802688 5833728 49528832 6284288 49233920 5686272 14418944 51118080 2860032 49315840 6013952 15205376 51273728 3122176 49315840 6013952 15205376 51273728 3122176 50003968 7586816 4711424 52174848 4105216 50028544 254976 4842496 52215808 4170752 51306496 2286592 10281984 53346304 254976 52158464 4121600 15459328 54255616 2089984 52158464 4121600 15459328 57737216 46571520 57737216 45629440 57737216 57737216 47521792 57737216 46784512 57737216 57737216 48422912 57737216 46784512 57737216 57737216 48422912 57737216 46800896 57737216 57737216 48422912 57737216 47366144 57737216 57737216 49037312 57737216 47661056 57737216 57737216 49528832 57737216 49233920 57737216 57737216 51118080 57737216 49315840 57737216 57737216 51273728 57737216 49315840 57737216 57737216 51273728 57737216 50003968 57737216 57737216 52174848 57737216 50028544 57737216 57737216 52215808 57737216 51306496 57737216 57737216 53346304 57737216 52158464 57737216 57737216 54255616 57737216 52158464 57737216 57737216 223346688 050905122923 050905122923 59768832 050905122923 050905122924 84934656 050905122924 226492416 050905122924 050905122924 59768832 050905122924 050905122925 85983232 050905122925 226492416 050905122925 050905122925 59768832 050905122925 050905122926 89128960 050905122926 229638144 050905122926 050905122926 59768832 050905122926 050905122927 90177536 050905122927 234881024 050905122927 050905122927 59768832 050905122927 050905122928 90177536 050905122928 238026752 050905122928 050905122928 59768832 050905122928 050905122929 90177536 050905122929 238026752 050905122929 050905122929 63963136 050905122929 050905122930 90177536 050905122930 238026752 050905122930 050905122930 65011712 050905122930 050905122931 90177536 050905122931 243269632 050905122931 050905122931 65011712 050905122931 050905122932 90177536 050905122932 249561088 050905122932 050905122932 65011712 050905122932 050905122933 90177536 050905122933 252706816 050905122933 050905122933 65011712 050905122933 050905122934 96468992 050905122934 252706816 050905122934 050905122934 65011712 050905122934 050905122935 96468992 050905122935 252706816 050905122935 050905122935 69206016 050905122935 050905122936 96468992 050905122936 254803968 050905122936 050905122936 69206016 050905122936 050905122937 96468992 050905122937 261095424 050905122937 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 57735168 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 57735168 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 54255616 2089984 52379648 4449280 1500160 54419456 2417664 53436416 6939648 7595008 55599104 4318208 53608448 7332864 9036800 55902208 1024 54353920 1967104 14083072 56868864 1639424 54583296 2425856 15459328 57163776 1967104 54583296 2425856 15459328 57163776 1967104 55132160 3736576 3662848 57737216 2819072 55132160 3736576 3662848 57737216 2819072 55132160 3736576 3662848 57737216 2819072 55132160 3736576 3662848 57737216 2819072 55132160 3736576 3662848 57737216 2819072 55132160 3736576 3662848 57737216 2819072 55132160 3736576 3662848 57737216 2819072 55132160 3736576 3662848 57737216 54255616 57737216 52379648 57737216 57737216 54419456 57737216 53436416 57737216 57737216 55599104 57737216 53608448 57737216 57737216 55902208 57737216 54353920 57737216 57737216 56868864 57737216 54583296 57737216 57737216 57163776 57737216 54583296 57737216 57737216 57163776 57737216 55132160 57737216 57737216 57737216 57737216 55132160 57737216 57737216 57737216 57737216 55132160 57737216 57737216 57737216 57737216 55132160 57737216 57737216 57737216 57737216 55132160 57737216 57737216 57737216 57737216 55132160 57737216 57737216 57737216 57737216 55132160 57737216 57737216 57737216 57737216 55132160 57737216 57737216 57737216 050905122937 69206016 050905122937 050905122939 96468992 050905122939 266338304 050905122939 050905122939 69206016 050905122939 050905122940 96468992 050905122940 266338304 050905122940 050905122940 71303168 050905122940 050905122941 100663296 050905122941 266338304 050905122941 050905122941 72351744 050905122941 050905122942 102760448 050905122942 266338304 050905122942 050905122942 72351744 050905122942 050905122943 102760448 050905122943 271581184 050905122943 050905122943 72351744 050905122943 050905122944 102760448 050905122944 277872640 050905122944 050905122944 72351744 050905122944 050905122945 102760448 050905122945 279969792 050905122945 2097152 050905122945 72351744 050905122945 050905122946 102760448 050905122946 279969792 050905122946 8388608 050905122946 72351744 050905122946 050905122947 102760448 050905122947 279969792 050905122947 14680064 050905122947 72351744 050905122947 050905122948 102760448 050905122948 279969792 050905122948 20971520 050905122948 72351744 050905122948 050905122949 102760448 050905122949 279969792 050905122949 26214400 050905122949 72351744 050905122949 050905122950 102760448 050905122950 279969792 050905122950 32505856 050905122950 72351744 050905122950 050905122951 102760448 050905122951 279969792 050905122951 38797312 050905122951 72351744 050905122951 050905122952 102760448 050905122952 279969792 050905122952 44040192 050905122952 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 7110656 57735168 8126464 16252928 57735168 7110656 57735168 8126464 16252928 7110656 7110656 57735168 8126464 16252928 7110656 7110656 57735168 8126464 16252928 7110656 7110656 57735168 8126464 16252928 7110656 7110656 57735168 8126464 16252928 7110656 7110656 57735168 8126464 16252928 7110656 7110656 57735168 8126464 18284544 7110656 6094848 57735168 8126464 18284544 7110656 6094848 57735168 8126464 18284544 7110656 6094848 57735168 8126464 18284544 7110656 6094848 57735168 8126464 18284544 7110656 6094848 57735168 8126464 18284544 7110656 6094848 57735168 8126464 18284544 7110656 6094848 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 57735168 8126464 16252928 7110656 5079040 7110656 8126464 18284544 7110656 6094848 7110656 8126464 18284544 7110656 6094848 7110656 8126464 18284544 7110656 6094848 7110656 8126464 18284544 7110656 6094848 7110656 8126464 18284544 7110656 6094848 7110656 8126464 18284544 7110656 6094848 7110656 8126464 18284544 7110656 6094848 2819072 55132160 3736576 3662848 57737216 2819072 56147968 5768192 7988224 1745920 4064256 56475648 6882304 10478592 2163712 787456 56565760 7078912 11002880 2278400 984064 57393152 2212864 15459328 3220480 2425856 57393152 2212864 15459328 3220480 2425856 57393152 2212864 254976 3220480 2425856 57737216 3458048 3400704 3777536 3212288 57737216 3458048 3400704 3777536 3212288 57737216 3458048 3400704 3777536 3212288 57737216 3458048 3400704 3777536 3212288 57737216 3458048 3400704 3777536 3212288 57737216 3458048 3400704 3777536 3212288 57737216 3458048 3400704 3777536 3212288 57737216 55132160 57737216 57737216 57737216 57737216 56147968 57737216 57737216 57737216 57737216 56475648 57737216 57737216 57737216 57737216 56565760 57737216 57737216 57737216 57737216 57393152 57737216 57737216 57737216 57737216 57393152 57737216 57737216 57737216 57737216 57393152 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 72351744 050905122952 050905122953 102760448 050905122953 279969792 050905122953 50331648 050905122953 72351744 050905122953 050905122954 102760448 050905122954 279969792 050905122954 53477376 050905122954 72351744 050905122954 050905122955 102760448 050905122955 279969792 050905122955 53477376 050905122955 76546048 050905122955 050905122956 109051904 050905122956 279969792 050905122956 53477376 050905122956 76546048 050905122956 050905122957 109051904 050905122957 283115520 050905122957 53477376 050905122957 76546048 050905122957 050905122958 109051904 050905122958 289406976 050905122958 53477376 050905122958 76546048 050905122958 050905122959 109051904 050905122959 294649856 050905122959 53477376 050905122959 76546048 050905122959 5242880 050905123000 109051904 050905123000 294649856 050905123000 53477376 050905123000 76546048 050905123000 11534336 050905123001 109051904 050905123001 294649856 050905123001 53477376 050905123001 76546048 050905123001 16777216 050905123002 109051904 050905123002 294649856 050905123002 53477376 050905123002 76546048 050905123002 23068672 050905123003 109051904 050905123003 294649856 050905123003 53477376 050905123003 76546048 050905123003 29360128 050905123004 109051904 050905123004 294649856 050905123004 53477376 050905123004 76546048 050905123004 35651584 050905123005 109051904 050905123005 294649856 050905123005 53477376 050905123005 76546048 050905123005 41943040 050905123006 109051904 050905123006 294649856 050905123006 53477376 050905123006 76546048 050905123006 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 57735168 8126464 18284544 7110656 6094848 57735168 8126464 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 1245184 6094848 7110656 9142272 18284544 1245184 4063232 1245184 7110656 18284544 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 8126464 18284544 7110656 6094848 7110656 8126464 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 7110656 6094848 7110656 9142272 18284544 1245184 6094848 7110656 9142272 18284544 1245184 4063232 1245184 7110656 18284544 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 57737216 3458048 3400704 3777536 3212288 57737216 3458048 3400704 3777536 3212288 1926144 6538240 10871808 5080064 5047296 2606080 7980032 15000576 5579776 1557504 2868224 8635392 16507904 5874688 1950720 3032064 254976 17490944 6046720 2278400 3032064 254976 17490944 6046720 2278400 3032064 254976 17490944 6046720 2278400 3810304 2810880 5571584 6857728 3589120 4572160 4056064 9372672 1033216 4375552 4572160 4056064 9372672 600064 4375552 4572160 4056064 9372672 600064 4573184 485376 7875584 9372672 600064 4573184 485376 7875584 16004096 600064 4573184 485376 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 47185920 109051904 294649856 53477376 76546048 53477376 109051904 294649856 53477376 76546048 53477376 109051904 294649856 53477376 77594624 53477376 109051904 294649856 53477376 80740352 53477376 114294784 294649856 53477376 80740352 53477376 116391936 297795584 53477376 80740352 53477376 116391936 304087040 53477376 80740352 53477376 116391936 310378496 53477376 80740352 53477376 116391936 310378496 56623104 80740352 53477376 117440512 310378496 59768832 81788928 54525952 118489088 312475648 59768832 83886080 56623104 120586240 313524224 59768832 84934656 57671680 120586240 317718528 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 050905123007 050905123007 050905123007 050905123007 050905123007 050905123008 050905123008 050905123008 050905123008 050905123008 050905123009 050905123009 050905123009 050905123009 050905123009 050905123010 050905123010 050905123010 050905123010 050905123010 050905123011 050905123011 050905123011 050905123011 050905123011 050905123012 050905123012 050905123012 050905123012 050905123012 050905123013 050905123013 050905123013 050905123013 050905123013 050905123015 050905123015 050905123015 050905123015 050905123015 050905123016 050905123016 050905123016 050905123016 050905123016 050905123017 050905123017 050905123017 050905123017 050905123017 050905123018 050905123018 050905123018 050905123018 050905123018 050905123019 050905123019 050905123019 050905123019 050905123019 050905123020 050905123020 050905123020 050905123020 050905123020 050905123021 050905123021 050905123021 050905123021 050905123021 050905123022 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 050905123022 050905123022 050905123022 050905123022 050905123023 050905123023 050905123023 050905123023 050905123023 050905123024 050905123024 050905123024 050905123024 050905123024 050905123025 050905123025 050905123025 050905123025 050905123025 050905123026 050905123026 050905123026 050905123026 050905123026 050905123027 050905123027 050905123027 050905123027 050905123027 050905123028 050905123028 050905123028 050905123028 050905123028 050905123029 050905123029 050905123029 050905123029 050905123029 050905123030 050905123030 050905123030 050905123030 050905123030 050905123031 050905123031 050905123031 050905123031 050905123031 050905123032 050905123032 050905123032 050905123032 050905123032 050905123033 050905123033 050905123033 050905123033 050905123033 050905123034 050905123034 050905123034 050905123034 050905123034 050905123035 050905123035 050905123035 050905123035 050905123035 050905123036 050905123036 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 638 634 629 632 618 634 629 632 618 634 629 632 618 634 629 632 618 634 629 632 618 634 629 632 618 634 629 632 618 634 629 632 618 634 629 632 618 634 629 632 618 634 629 632 618 634 632 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 4063232 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 7110656 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 1245184 4063232 1245184 15745024 4063232 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 7875584 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 600064 4573184 485376 16004096 4573184 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 120586240 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 59768832 84934656 57671680 318767104 84934656 050905123036 050905123036 050905123036 050905123037 050905123037 050905123037 050905123037 050905123037 050905123038 050905123038 050905123038 050905123038 050905123038 050905123039 050905123039 050905123039 050905123039 050905123039 050905123040 050905123040 050905123040 050905123040 050905123040 050905123041 050905123041 050905123041 050905123041 050905123041 050905123042 050905123042 050905123042 050905123042 050905123043 050905123043 050905123043 050905123043 050905123044 050905123044 050905123044 050905123044 050905123045 050905123045 050905123045 050905123045 050905123046 050905123046 050905123046 050905123046 050905123047 050905123047 050905123047 050905123047 050905123048 050905123048 050905123048 050905123048 050905123049 050905123049 050905123049 050905123049 050905123050 050905123050 050905123050 050905123050 050905123051 050905123051 050905123051 050905123051 050905123052 050905123052 050905123052 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 050905123054 050905123054 050905123054 050905123055 050905123055 050905123055 050905123056 050905123056 050905123056 050905123057 050905123057 050905123057 050905123058 050905123058 050905123058 050905123059 050905123059 050905123059 050905123100 050905123100 050905123100 050905123101 050905123101 050905123101 050905123102 050905123102 050905123102 050905123103 050905123103 050905123103 050905123104 050905123104 050905123104 050905123105 050905123105 050905123105 050905123106 050905123106 050905123106 050905123107 050905123107 050905123107 050905123108 050905123108 050905123108 050905123109 050905123109 050905123109 050905123110 050905123110 050905123110 050905123111 050905123111 050905123111 050905123112 050905123112 050905123112 050905123113 050905123113 050905123113 050905123114 050905123114 050905123114 050905123115 050905123115 050905123115 050905123116 050905123116 050905123116 050905123117 050905123117 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 050905123117 050905123118 050905123118 050905123118 050905123119 050905123119 050905123119 050905123120 050905123120 050905123120 050905123121 050905123121 050905123121 050905123122 050905123122 050905123122 050905123123 050905123123 050905123123 050905123124 050905123124 050905123124 050905123125 050905123125 050905123125 050905123126 050905123126 050905123126 050905123127 050905123127 050905123127 050905123128 050905123128 050905123128 050905123129 050905123129 050905123129 050905123130 050905123130 050905123130 050905123131 050905123131 050905123131 050905123133 050905123133 050905123133 050905123134 050905123134 050905123134 050905123135 050905123135 050905123135 050905123136 050905123136 050905123136 050905123137 050905123137 050905123137 050905123138 050905123138 050905123138 050905123139 050905123139 050905123139 050905123140 050905123140 050905123140 050905123141 050905123141 050905123141 050905123142 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 634 632 618 632 618 632 618 632 618 632 618 632 618 632 618 632 618 632 618 632 618 632 618 632 618 632 618 632 618 632 618 618 618 618 618 618 618 618 618 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1050 rows selected. SQL> spool off 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 15745024 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 16004096 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 4573184 485376 485376 485376 485376 485376 485376 485376 485376 485376 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 318767104 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 57671680 57671680 57671680 57671680 57671680 57671680 57671680 57671680 050905123142 050905123142 050905123143 050905123143 050905123143 050905123144 050905123144 050905123144 050905123145 050905123145 050905123145 050905123146 050905123146 050905123146 050905123147 050905123147 050905123147 050905123148 050905123148 050905123148 050905123149 050905123149 050905123149 050905123150 050905123150 050905123151 050905123151 050905123152 050905123152 050905123153 050905123153 050905123154 050905123154 050905123155 050905123155 050905123156 050905123156 050905123157 050905123157 050905123158 050905123158 050905123159 050905123159 050905123200 050905123200 050905123201 050905123201 050905123202 050905123202 050905123203 050905123203 050905123204 050905123205 050905123206 050905123207 050905123209 050905123210 050905123211 050905123212 050905123213 Predicted 66.6 Actual 55.0625 Timestamp 50905123157 50905123139 50905123120 50905123102 50905123043 50905123025 50905123006 50905122948 50905122929 50905122911 50905122852 50905122834 Session 618 Session 629 Session 632 Session 634 Session 638 50905122815 70000000 60000000 50000000 40000000 30000000 20000000 10000000 0 50905122757 Memory (Bytes) Session Sort Memory 5 DOP PGA_AGGREGATE_TARGET 4G, 400M _pga_max_size, 333M _smm_px_max_size, 6 DOP SQL> show parameter NAME -----------------------------------O7_DICTIONARY_ACCESSIBILITY __db_cache_size __java_pool_size __large_pool_size __shared_pool_size _pga_max_size _smm_px_max_size active_instance_count aq_tm_processes archive_lag_target asm_diskgroups asm_diskstring asm_power_limit audit_file_dest TYPE ----------boolean big integer big integer big integer big integer big integer integer integer integer integer string string integer string audit_sys_operations audit_trail background_core_dump background_dump_dest backup_tape_io_slaves bitmap_merge_area_size blank_trimming buffer_pool_keep buffer_pool_recycle circuits cluster_database cluster_database_instances cluster_interconnects commit_point_strength compatible control_file_record_keep_time control_files boolean string string string boolean integer boolean string string integer boolean integer string integer string integer string core_dump_dest cpu_count create_bitmap_area_size create_stored_outlines cursor_sharing cursor_space_for_time db_16k_cache_size db_2k_cache_size db_32k_cache_size db_4k_cache_size db_8k_cache_size string integer integer string string boolean big integer big integer big integer big integer big integer NAME -----------------------------------db_block_buffers db_block_checking db_block_checksum db_block_size db_cache_advice db_cache_size db_create_file_dest db_create_online_log_dest_1 db_create_online_log_dest_2 db_create_online_log_dest_3 db_create_online_log_dest_4 db_create_online_log_dest_5 TYPE ----------integer boolean boolean integer string big integer string string string string string string VALUE -----------------------------FALSE 684M 8M 4M 224M 400M 340992 0 0 1 /home/oracle/DBHome1/rdbms/aud it FALSE TRUE partial /home/oracle/admin/test/bdump FALSE 1048576 FALSE FALSE 1 1 10.1.0.2.0 7 /home/oracle/oradata/test/con trol01.ctl, /home/oracle/orada ta/test/control02.ctl, /home/ oracle/oradata/test/control03 .ctl /home/oracle/admin/test/cdump 2 8388608 EXACT FALSE 0 0 0 0 0 VALUE -----------------------------0 FALSE TRUE 8192 ON 0 db_domain db_file_multiblock_read_count db_file_name_convert db_files db_flashback_retention_target db_keep_cache_size db_name db_recovery_file_dest string integer string integer integer big integer string string 32 distributed_lock_timeout dml_locks drs_start enqueue_resources event fal_client fal_server fast_start_io_target fast_start_mttr_target fast_start_parallel_rollback file_mapping fileio_network_adapters 200 1440 0 test /home/oracle/flash_recovery_ar ea big integer 2G big integer 0 string test integer 7 integer 0 boolean FALSE string /home/oracle/DBHome1/dbs/dr1hf dwh.dat string /home/oracle/DBHome1/dbs/dr2hf dwh.dat boolean FALSE boolean TRUE string (PROTOCOL=TCP) (SERVICE=testX DB) integer 60 integer 2924 boolean FALSE integer 3000 string string string integer 0 integer 0 string LOW boolean FALSE string NAME -----------------------------------filesystemio_options fixed_date gc_files_to_locks gcs_server_processes global_context_pool_size global_names hash_area_size hi_shared_memory_address hs_autoregister ifile instance_groups instance_name instance_number instance_type java_max_sessionspace_size java_pool_size java_soft_sessionspace_limit job_queue_processes large_pool_size ldap_directory_access license_max_sessions license_max_users license_sessions_warning local_listener lock_name_space lock_sga log_archive_config log_archive_dest log_archive_dest_1 log_archive_dest_10 log_archive_dest_2 log_archive_dest_3 log_archive_dest_4 TYPE ----------string string string integer string boolean integer integer boolean file string string integer string integer big integer integer integer big integer string integer integer integer string string boolean string string string string string string string db_recovery_file_dest_size db_recycle_cache_size db_unique_name db_writer_processes dbwr_io_slaves ddl_wait_for_locks dg_broker_config_file1 dg_broker_config_file2 dg_broker_start disk_asynch_io dispatchers VALUE -----------------------------none 0 FALSE 131072 0 TRUE test 0 RDBMS 0 0 0 10 0 NONE 0 0 0 FALSE log_archive_dest_5 log_archive_dest_6 log_archive_dest_7 log_archive_dest_8 log_archive_dest_9 log_archive_dest_state_1 log_archive_dest_state_10 log_archive_dest_state_2 log_archive_dest_state_3 log_archive_dest_state_4 log_archive_dest_state_5 log_archive_dest_state_6 log_archive_dest_state_7 log_archive_dest_state_8 string string string string string string string string string string string string string string NAME -----------------------------------log_archive_dest_state_9 log_archive_duplex_dest log_archive_format log_archive_local_first log_archive_max_processes log_archive_min_succeed_dest log_archive_start log_archive_trace log_buffer log_checkpoint_interval log_checkpoint_timeout log_checkpoints_to_alert log_file_name_convert logmnr_max_persistent_sessions max_commit_propagation_delay max_dispatchers max_dump_file_size max_enabled_roles max_shared_servers nls_calendar nls_comp nls_currency nls_date_format nls_date_language nls_dual_currency nls_iso_currency nls_language nls_length_semantics nls_nchar_conv_excp nls_numeric_characters nls_sort nls_territory nls_time_format nls_time_tz_format nls_timestamp_format nls_timestamp_tz_format object_cache_max_size_percent object_cache_optimal_size olap_page_pool_size open_cursors open_links open_links_per_instance optimizer_dynamic_sampling optimizer_features_enable optimizer_index_caching optimizer_index_cost_adj optimizer_mode TYPE ----------string string string boolean integer integer boolean integer integer integer integer boolean string integer integer integer string integer integer string string string string string string string string string string string string string string string string string integer integer big integer integer integer integer integer string integer integer string NAME -----------------------------------os_authent_prefix os_roles parallel_adaptive_multi_user parallel_automatic_tuning TYPE ----------string boolean boolean boolean enable enable enable enable enable enable enable enable enable VALUE -----------------------------enable %t_%s_%r.dbf TRUE 2 1 FALSE 0 524288 0 1800 FALSE 1 700 UNLIMITED 150 AMERICAN BYTE FALSE AMERICA 10 102400 0 300 4 4 2 10.1.0.3 0 100 ALL_ROWS VALUE -----------------------------ops$ FALSE TRUE FALSE parallel_execution_message_size parallel_instance_group parallel_max_servers parallel_min_percent parallel_min_servers parallel_server parallel_server_instances parallel_threads_per_cpu pga_aggregate_target plsql_code_type plsql_compiler_flags plsql_debug plsql_native_library_dir plsql_native_library_subdir_count plsql_optimize_level plsql_v2_compatibility plsql_warnings pre_page_sga processes query_rewrite_enabled query_rewrite_integrity rdbms_server_dn read_only_open_delayed recovery_parallelism remote_archive_enable remote_dependencies_mode remote_listener remote_login_passwordfile remote_os_authent remote_os_roles replication_dependency_tracking resource_limit resource_manager_plan resumable_timeout rollback_segments serial_reuse service_names session_cached_cursors session_max_open_files sessions sga_max_size sga_target shadow_core_dump integer string integer integer integer boolean integer integer big integer string string boolean string integer integer boolean string boolean integer string string string boolean integer string string string string boolean boolean boolean boolean string integer string string string integer integer integer big integer big integer string NAME -----------------------------------shared_memory_address shared_pool_reserved_size shared_pool_size shared_server_sessions shared_servers skip_unusable_indexes smtp_out_server sort_area_retained_size sort_area_size sp_name spfile TYPE ----------integer big integer big integer integer integer boolean string integer integer string string sql92_security sql_trace sql_version sqltune_category standby_archive_dest standby_file_management star_transformation_enabled statistics_level streams_pool_size tape_asynch_io thread timed_os_statistics timed_statistics 2148 40 0 0 FALSE 1 2 4G INTERPRETED INTERPRETED, NON_DEBUG FALSE 0 2 FALSE DISABLE:ALL FALSE 600 TRUE enforced FALSE 0 true TIMESTAMP EXCLUSIVE FALSE FALSE TRUE FALSE 0 disable test 0 10 665 1G 1G partial VALUE -----------------------------0 11744051 0 1 TRUE 0 65536 test /home/oracle/DBHome1/dbs/spfil etest.ora boolean FALSE boolean FALSE string NATIVE string DEFAULT string ?/dbs/arch string MANUAL string TRUE string TYPICAL big integer 100M boolean TRUE integer 0 integer 0 boolean TRUE trace_enabled tracefile_identifier transactions transactions_per_rollback_segment undo_management undo_retention undo_tablespace use_indirect_data_buffers user_dump_dest utl_file_dir workarea_size_policy SQL> @get_undocs boolean string integer integer string integer string boolean string string string TRUE 731 5 AUTO 900 UNDOTBSP2 FALSE /home/oracle/admin/test/udump AUTO Parameter ---------------------------------------_pga_large_extent_size _pga_max_size Description ------------------------PGA large extent size Maximum size of the PGA memory for one process Value ---------1048576 419430400 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE _smm_auto_max_io_size Maximum IO size (in KB) 248 used by sort/hash-join in auto mode _smm_auto_min_io_size Minimum IO size (in KB) 56 used by sort/hash-join in auto mode _smm_bound overwrites memory manager 0 automatically computed bound _smm_control provides controls on the memory manager 0 _smm_freeable_retain value in KB of the instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in 204800 auto mode (serial) _smm_min_size minimum work area size in 1024 auto mode _smm_px_max_size maximum work area size in 340992 auto mode (global) _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 Parameter Description Value ---------------------------------------- ------------------------- ---------_smm_trace Turn on/off tracing for 0 SQL memory manager 15 rows selected. Elapsed: 00:00:00.01 SQL> set autotrace traceonly SQL> get test_parallel 1 select /*+ parallel(test_pga 6) */ 2 * from test_pga 3* order by district_name,name SQL> / 4547752 rows selected. Elapsed: 00:04:45.62 Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=24593 Card=4547752 Bytes=513895976) 1 2 0 1 3 2 PX COORDINATOR PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=24593 Card=454 :Q1001 7752 Bytes=513895976) SORT* (ORDER BY) (Cost=24593 Card=4547752 Bytes=513895 :Q1001 976) 4 5 3 4 PX RECEIVE* (Cost=2880 Card=4547752 Bytes=513895976) :Q1001 PX SEND* (RANGE) OF ':TQ10000' (Cost=2880 Card=454 :Q1000 7752 Bytes=513895976) 6 5 PX BLOCK* (ITERATOR) (Cost=2880 Card=4547752 Byt :Q1000 es=513895976) 7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000 st=2880 Card=4547752 Bytes=513895976) 2 3 4 5 6 7 PARALLEL_TO_SERIAL PARALLEL_COMBINED_WITH_PARENT PARALLEL_COMBINED_WITH_PARENT PARALLEL_TO_PARALLEL PARALLEL_COMBINED_WITH_CHILD PARALLEL_COMBINED_WITH_PARENT Statistics ---------------------------------------------------------660 recursive calls 64 db block gets 79861 consistent gets 155978 physical reads 680 redo size 253759906 bytes sent via SQL*Net to client 3335525 bytes received via SQL*Net from client 303185 SQL*Net roundtrips to/from client 3 sorts (memory) 5 sorts (disk) 4547752 rows processed SQL> spool of SQL> select * from test_results; SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------616 1013760 1013760 868352 868352 050905123536 631 7056384 7056384 6414336 6414336 050905123536 628 8547328 8547328 7176192 7176192 050905123536 617 22234112 22234112 21561344 21561344 050905123536 632 3964928 3964928 3833856 3833856 050905123536 615 4806656 4806656 4136960 4136960 050905123536 616 1234944 1234944 1196032 1196032 050905123537 631 8547328 8547328 8519680 8519680 050905123537 628 10350592 10350592 9961472 9961472 050905123537 617 32572416 32572416 30621696 30621696 050905123537 632 5824512 5824512 5570560 5570560 050905123537 615 7056384 7056384 5849088 5849088 050905123537 616 1503232 1503232 1425408 1425408 050905123538 631 12532736 12532736 10608640 10608640 050905123538 628 12532736 12532736 12369920 12369920 050905123538 617 39420928 39420928 36487168 36487168 050905123538 632 7056384 7056384 6930432 6930432 050905123538 615 8547328 8547328 7151616 7151616 050905123538 616 1827840 1827840 1556480 1556480 050905123539 631 12532736 12532736 12288000 12288000 050905123539 628 15173632 15173632 14049280 14049280 050905123539 617 47708160 47708160 40943616 40943616 050905123539 632 8547328 8547328 7708672 7708672 050905123539 615 8547328 8547328 8011776 8011776 050905123539 616 2220032 2220032 1851392 1851392 050905123540 631 15173632 15173632 13164544 13164544 050905123540 628 18368512 18368512 15261696 15261696 050905123540 617 47708160 47708160 45031424 45031424 050905123540 632 8547328 8547328 8462336 8462336 050905123540 615 10350592 10350592 8953856 8953856 050905123540 616 2220032 2220032 2105344 2105344 050905123541 631 15173632 15173632 14065664 14065664 050905123541 628 18368512 18368512 16629760 16629760 050905123541 617 57735168 57735168 48709632 48709632 050905123541 632 10350592 10350592 9183232 9183232 050905123541 615 10350592 10350592 9773056 9773056 050905123541 616 2695168 2695168 2236416 2236416 050905123542 631 15173632 15173632 14630912 14630912 050905123542 628 18368512 18368512 17973248 17973248 050905123542 617 57735168 57735168 52404224 52404224 050905123542 632 10350592 10350592 10084352 10084352 050905123542 615 12532736 12532736 10567680 10567680 050905123542 616 2695168 2695168 2383872 2383872 050905123543 631 18368512 18368512 15917056 15917056 050905123543 628 22234112 22234112 19185664 19185664 050905123543 617 57735168 57735168 56336384 56336384 050905123543 632 12532736 12532736 10747904 10747904 050905123543 615 12532736 12532736 11444224 11444224 050905123543 616 2695168 2695168 2498560 2498560 050905123544 631 18368512 18368512 16244736 16244736 050905123544 628 22234112 22234112 19554304 19554304 050905123544 617 57735168 7110656 57737216 57737216 5242880 050905123544 632 12532736 12532736 10952704 10952704 050905123544 615 12532736 12532736 11698176 11698176 050905123544 616 2695168 2695168 2498560 2498560 050905123546 631 18368512 18368512 16244736 16244736 050905123546 628 22234112 22234112 19554304 19554304 050905123546 617 57735168 7110656 57737216 57737216 10485760 050905123546 632 12532736 12532736 10952704 10952704 050905123546 615 12532736 12532736 11698176 11698176 050905123546 616 2695168 2695168 2498560 2498560 050905123547 631 18368512 18368512 16244736 16244736 050905123547 628 22234112 22234112 19554304 19554304 050905123547 617 57735168 7110656 57737216 57737216 16777216 050905123547 632 12532736 12532736 10952704 10952704 050905123547 615 12532736 12532736 11698176 11698176 050905123547 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 2695168 18368512 22234112 57735168 12532736 12532736 2695168 18368512 22234112 57735168 12532736 12532736 2695168 18368512 22234112 57735168 12532736 12532736 2695168 18368512 22234112 57735168 12532736 12532736 2695168 18368512 22234112 57735168 12532736 12532736 2695168 18368512 22234112 7110656 12532736 12532736 3269632 18368512 22234112 7110656 12532736 15173632 3269632 22234112 26911744 7110656 15173632 15173632 3269632 22234112 26911744 7110656 15173632 15173632 3269632 22234112 26911744 7110656 15173632 15173632 3269632 22234112 26911744 7110656 15173632 15173632 3964928 22234112 32572416 7110656 18368512 2695168 18368512 22234112 7110656 12532736 12532736 2695168 18368512 22234112 7110656 12532736 12532736 2695168 18368512 22234112 7110656 12532736 12532736 2695168 18368512 22234112 7110656 12532736 12532736 2695168 18368512 22234112 7110656 12532736 12532736 2695168 18368512 22234112 7110656 12532736 12532736 3269632 18368512 22234112 7110656 12532736 15173632 3269632 22234112 26911744 7110656 15173632 15173632 3269632 22234112 26911744 5079040 15173632 15173632 3269632 22234112 26911744 5079040 15173632 15173632 3269632 22234112 26911744 5079040 15173632 15173632 3964928 22234112 32572416 5079040 18368512 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19562496 74752 10952704 11698176 2727936 17711104 21569536 6095872 12230656 12713984 2883584 18718720 22896640 4326400 12771328 13459456 2965504 19226624 23478272 6030336 13066240 13631488 3080192 19955712 24928256 254976 13844480 14295040 3162112 20692992 25886720 4318208 14639104 14802944 3276800 21692416 27205632 4826112 15409152 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19554304 57737216 10952704 11698176 2498560 16244736 19562496 57737216 10952704 11698176 2727936 17711104 21569536 57737216 12230656 12713984 2883584 18718720 22896640 57737216 12771328 13459456 2965504 19226624 23478272 57737216 13066240 13631488 3080192 19955712 24928256 57737216 13844480 14295040 3162112 20692992 25886720 57737216 14639104 14802944 3276800 21692416 27205632 57737216 15409152 23068672 29360128 35651584 40894464 47185920 53477376 55574528 59768832 65011712 68157440 72351744 75497472 050905123548 050905123548 050905123548 050905123548 050905123548 050905123548 050905123549 050905123549 050905123549 050905123549 050905123549 050905123549 050905123550 050905123550 050905123550 050905123550 050905123550 050905123550 050905123551 050905123551 050905123551 050905123551 050905123551 050905123551 050905123552 050905123552 050905123552 050905123552 050905123552 050905123552 050905123553 050905123553 050905123553 050905123553 050905123553 050905123553 050905123554 050905123554 050905123554 050905123554 050905123554 050905123554 050905123555 050905123555 050905123555 050905123555 050905123555 050905123555 050905123556 050905123556 050905123556 050905123556 050905123556 050905123556 050905123557 050905123557 050905123557 050905123557 050905123557 050905123557 050905123558 050905123558 050905123558 050905123558 050905123558 050905123558 050905123559 050905123559 050905123559 050905123559 050905123559 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 18368512 3964928 26911744 32572416 6094848 18368512 18368512 3964928 26911744 32572416 6094848 18368512 18368512 3964928 26911744 32572416 6094848 18368512 18368512 3964928 26911744 32572416 6094848 18368512 22234112 4806656 26911744 39420928 6094848 22234112 22234112 4806656 32572416 39420928 8126464 22234112 22234112 4806656 32572416 39420928 8126464 22234112 22234112 4806656 32572416 39420928 8126464 22234112 22234112 5824512 32572416 39420928 8126464 22234112 26911744 5824512 32572416 39420928 8126464 22234112 26911744 5824512 39420928 47708160 9142272 26911744 26911744 5824512 39420928 47708160 9142272 18368512 3964928 26911744 32572416 6094848 18368512 18368512 3964928 26911744 32572416 6094848 18368512 18368512 3964928 26911744 32572416 6094848 18368512 18368512 3964928 26911744 32572416 6094848 18368512 22234112 4806656 26911744 39420928 6094848 22234112 22234112 4806656 32572416 39420928 8126464 22234112 22234112 4806656 32572416 39420928 8126464 22234112 22234112 4806656 32572416 39420928 8126464 22234112 22234112 5824512 32572416 39420928 8126464 22234112 26911744 5824512 32572416 39420928 8126464 22234112 26911744 5824512 39420928 47708160 9142272 26911744 26911744 5824512 39420928 47708160 9142272 15548416 3596288 22937600 28811264 5293056 15958016 16285696 3653632 23683072 29786112 2548736 16572416 16924672 3776512 24535040 30728192 762880 17031168 17547264 3940352 25567232 32342016 5809152 17653760 18587648 4210688 26435584 33865728 5235712 18538496 19677184 4259840 27262976 34594816 7332864 19120128 20013056 4595712 29614080 37052416 7078912 20676608 21446656 4595712 29630464 37060608 7078912 20676608 21446656 4866048 31473664 39247872 7840768 21790720 22781952 4866048 31498240 39264256 7840768 21815296 22806528 5144576 33439744 42033152 8889344 23027712 24371200 5144576 33439744 42033152 8889344 15548416 3596288 22937600 28811264 57737216 15958016 16285696 3653632 23683072 29786112 57737216 16572416 16924672 3776512 24535040 30728192 57737216 17031168 17547264 3940352 25567232 32342016 57737216 17653760 18587648 4210688 26435584 33865728 57737216 18538496 19677184 4259840 27262976 34594816 57737216 19120128 20013056 4595712 29614080 37052416 57737216 20676608 21446656 4595712 29630464 37060608 57737216 20676608 21446656 4866048 31473664 39247872 57737216 21790720 22781952 4866048 31498240 39264256 57737216 21815296 22806528 5144576 33439744 42033152 57737216 23027712 24371200 5144576 33439744 42033152 57737216 76546048 80740352 84934656 88080384 90177536 94371840 96468992 102760448 102760448 109051904 111149056 117440512 050905123559 050905123600 050905123600 050905123600 050905123600 050905123600 050905123600 050905123601 050905123601 050905123601 050905123601 050905123601 050905123601 050905123602 050905123602 050905123602 050905123602 050905123602 050905123602 050905123603 050905123603 050905123603 050905123603 050905123603 050905123603 050905123604 050905123604 050905123604 050905123604 050905123604 050905123604 050905123605 050905123605 050905123605 050905123605 050905123605 050905123605 050905123606 050905123606 050905123606 050905123606 050905123606 050905123606 050905123607 050905123607 050905123607 050905123607 050905123607 050905123607 050905123608 050905123608 050905123608 050905123608 050905123608 050905123608 050905123609 050905123609 050905123609 050905123609 050905123609 050905123609 050905123610 050905123610 050905123610 050905123610 050905123610 050905123610 050905123611 050905123611 050905123611 050905123611 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 26911744 26911744 5824512 39420928 47708160 9142272 26911744 26911744 5824512 39420928 47708160 9142272 26911744 26911744 7056384 39420928 57735168 9142272 26911744 32572416 7056384 39420928 57735168 9142272 26911744 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 8547328 47708160 57735168 10665984 32572416 32572416 8547328 47708160 57735168 26911744 26911744 5824512 39420928 47708160 9142272 26911744 26911744 5824512 39420928 47708160 9142272 26911744 26911744 7056384 39420928 57735168 9142272 26911744 32572416 7056384 39420928 57735168 9142272 26911744 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 7056384 47708160 57735168 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 23027712 23027712 24371200 24371200 5554176 5554176 35463168 35463168 44679168 44679168 8889344 57737216 24526848 24526848 25600000 25600000 5611520 5611520 35561472 35561472 44892160 44892160 508928 57737216 24559616 24559616 25673728 25673728 5931008 5931008 38043648 38043648 48242688 48242688 8635392 57737216 25788416 25788416 27271168 27271168 5931008 5931008 38043648 38043648 48242688 48242688 8635392 57737216 25788416 25788416 27271168 27271168 6266880 6266880 40247296 40247296 50913280 50913280 8438784 57737216 27090944 27090944 28876800 28876800 6307840 6307840 40534016 40534016 51470336 51470336 10142720 57737216 27369472 27369472 29155328 29155328 6488064 6488064 41205760 41205760 52183040 52183040 2614272 57737216 27959296 27959296 29433856 29433856 6725632 6725632 43032576 43032576 54427648 54427648 9364480 57737216 29155328 29155328 30564352 30564352 6782976 6782976 43139072 43139072 54771712 54771712 9888768 57737216 29188096 29188096 30687232 30687232 7012352 7012352 44097536 44097536 55828480 55828480 4105216 57737216 29720576 29720576 31227904 31227904 7290880 7290880 45596672 45596672 57737216 57737216 10396672 57737216 30711808 30711808 32227328 32227328 7290880 7290880 45596672 45596672 57737216 57737216 050905123611 050905123611 050905123612 050905123612 050905123612 118489088 050905123612 050905123612 050905123612 050905123613 050905123613 050905123613 124780544 050905123613 050905123613 050905123613 050905123614 050905123614 050905123614 124780544 050905123614 050905123614 050905123614 050905123615 050905123615 050905123615 131072000 050905123615 050905123615 050905123615 050905123616 050905123616 050905123616 132120576 050905123616 050905123616 050905123616 050905123617 050905123617 050905123617 137363456 050905123617 050905123617 050905123617 050905123618 050905123618 050905123618 141557760 050905123618 050905123618 050905123618 050905123619 050905123619 050905123619 141557760 050905123619 050905123619 050905123619 050905123620 050905123620 050905123620 145752064 050905123620 050905123620 050905123620 050905123621 050905123621 050905123621 149946368 050905123621 050905123621 050905123621 050905123623 050905123623 2097152 050905123623 149946368 050905123623 050905123623 050905123623 050905123624 050905123624 7340032 050905123624 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 10665984 32572416 32572416 8547328 47708160 57735168 10665984 32572416 32572416 8547328 47708160 57735168 10665984 32572416 32572416 8547328 47708160 57735168 10665984 32572416 32572416 8547328 47708160 57735168 10665984 32572416 32572416 8547328 47708160 57735168 10665984 32572416 32572416 8547328 47708160 57735168 10665984 32572416 32572416 8547328 47708160 57735168 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 39420928 8547328 57735168 7110656 12697600 32572416 39420928 8547328 57735168 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 32572416 8547328 47708160 7110656 10665984 32572416 39420928 8547328 57735168 7110656 12697600 32572416 39420928 8547328 57735168 10396672 30711808 32227328 7290880 45596672 57737216 10396672 30711808 32227328 7290880 45596672 57737216 10396672 30711808 32227328 7290880 45596672 57737216 10396672 30711808 32227328 7290880 45596672 57737216 10396672 30711808 32227328 7290880 45596672 57737216 10396672 30711808 32227328 7290880 45596672 57737216 10396672 30711808 32227328 7290880 45596672 57737216 10396672 30711808 32227328 7290880 45613056 66560 10396672 30720000 32227328 7290880 45613056 66560 10396672 30720000 32227328 7585792 47251456 2434048 7980032 31956992 33546240 7798784 48455680 4006912 12174336 32563200 34357248 7798784 48455680 57737216 30711808 32227328 7290880 45596672 57737216 57737216 30711808 32227328 7290880 45596672 57737216 57737216 30711808 32227328 7290880 45596672 57737216 57737216 30711808 32227328 7290880 45596672 57737216 57737216 30711808 32227328 7290880 45596672 57737216 57737216 30711808 32227328 7290880 45596672 57737216 57737216 30711808 32227328 7290880 45596672 57737216 57737216 30711808 32227328 7290880 45613056 57737216 57737216 30720000 32227328 7290880 45613056 57737216 57737216 30720000 32227328 7585792 47251456 57737216 57737216 31956992 33546240 7798784 48455680 57737216 57737216 32563200 34357248 7798784 48455680 149946368 050905123624 050905123624 050905123624 050905123625 050905123625 13631488 050905123625 149946368 050905123625 050905123625 050905123625 050905123626 050905123626 19922944 050905123626 149946368 050905123626 050905123626 050905123626 050905123627 050905123627 25165824 050905123627 149946368 050905123627 050905123627 050905123627 050905123628 050905123628 31457280 050905123628 149946368 050905123628 050905123628 050905123628 050905123629 050905123629 37748736 050905123629 149946368 050905123629 050905123629 050905123629 050905123630 050905123630 42991616 050905123630 149946368 050905123630 050905123630 050905123630 050905123631 050905123631 49283072 050905123631 149946368 050905123631 050905123631 050905123631 050905123632 050905123632 53477376 050905123632 152043520 050905123632 050905123632 050905123632 050905123633 050905123633 53477376 050905123633 158334976 050905123633 050905123633 050905123633 050905123634 050905123634 53477376 050905123634 159383552 050905123634 050905123634 050905123634 050905123635 050905123635 53477376 050905123635 161480704 050905123635 050905123635 050905123635 050905123636 050905123636 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 7110656 12697600 32572416 39420928 8547328 57735168 7110656 12697600 39420928 39420928 8547328 57735168 7110656 12697600 39420928 39420928 8547328 57735168 7110656 12697600 39420928 39420928 8547328 57735168 7110656 12697600 39420928 39420928 8547328 57735168 7110656 12697600 39420928 39420928 10350592 57735168 7110656 12697600 39420928 39420928 10350592 57735168 7110656 12697600 39420928 39420928 10350592 57735168 7110656 12697600 39420928 39420928 10350592 57735168 7110656 12697600 39420928 39420928 10350592 57735168 7110656 12697600 39420928 47708160 10350592 57735168 7110656 12697600 39420928 47708160 10350592 7110656 12697600 32572416 39420928 8547328 57735168 7110656 12697600 39420928 39420928 8547328 57735168 7110656 12697600 39420928 39420928 8547328 57735168 7110656 12697600 39420928 39420928 8547328 57735168 7110656 12697600 39420928 39420928 8547328 57735168 7110656 12697600 39420928 39420928 10350592 57735168 7110656 12697600 39420928 39420928 10350592 57735168 7110656 12697600 39420928 39420928 10350592 57735168 5079040 12697600 39420928 39420928 10350592 57735168 5079040 12697600 39420928 39420928 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 4006912 57737216 53477376 050905123636 12174336 57737216 167772160 050905123636 32563200 32563200 050905123636 34357248 34357248 050905123636 8028160 8028160 050905123637 50356224 50356224 050905123637 6095872 57737216 54525952 050905123637 6022144 57737216 169869312 050905123637 33759232 33759232 050905123637 35430400 35430400 050905123637 8118272 8118272 050905123638 51077120 51077120 050905123638 1295360 57737216 58720256 050905123638 8840192 57737216 169869312 050905123638 34308096 34308096 050905123638 35782656 35782656 050905123638 8192000 8192000 050905123639 52076544 52076544 050905123639 2212864 57737216 58720256 050905123639 11920384 57737216 171966464 050905123639 35012608 35012608 050905123639 36298752 36298752 050905123639 8192000 8192000 050905123640 52076544 52076544 050905123640 2212864 57737216 58720256 050905123640 11920384 57737216 178257920 050905123640 35012608 35012608 050905123640 36298752 36298752 050905123640 8355840 8355840 050905123641 53706752 53706752 050905123641 3982336 57737216 58720256 050905123641 6030336 57737216 180355072 050905123641 36265984 36265984 050905123641 37412864 37412864 050905123641 8560640 8560640 050905123642 55558144 55558144 050905123642 6145024 57737216 58720256 050905123642 11666432 57737216 180355072 050905123642 37437440 37437440 050905123642 38658048 38658048 050905123642 8560640 8560640 050905123643 55558144 55558144 050905123643 6145024 57737216 58720256 050905123643 11666432 57737216 185597952 050905123643 37437440 37437440 050905123643 38666240 38666240 050905123643 8609792 8609792 050905123644 55803904 55803904 050905123644 6538240 57737216 59768832 050905123644 1745920 57737216 190840832 050905123644 37560320 37560320 050905123644 38871040 38871040 050905123644 8716288 8716288 050905123645 56516608 56516608 050905123645 1164288 57737216 65011712 050905123645 3974144 57737216 190840832 050905123645 37879808 37879808 050905123645 39247872 39247872 050905123645 8953856 8953856 050905123646 57737216 57737216 2097152 050905123646 2737152 57737216 65011712 050905123646 8299520 57737216 190840832 050905123646 38797312 38797312 050905123646 40402944 40402944 050905123646 8953856 8953856 050905123647 57737216 57737216 8388608 050905123647 2737152 57737216 65011712 050905123647 8299520 57737216 190840832 050905123647 38797312 38797312 050905123647 40402944 40402944 050905123647 8953856 8953856 050905123648 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 57735168 7110656 12697600 39420928 47708160 10350592 57735168 7110656 12697600 39420928 47708160 10350592 57735168 7110656 12697600 39420928 47708160 10350592 57735168 7110656 12697600 39420928 47708160 10350592 57735168 7110656 12697600 39420928 47708160 10350592 57735168 7110656 12697600 39420928 47708160 10350592 57735168 7110656 12697600 39420928 47708160 10350592 7110656 7110656 12697600 39420928 47708160 10350592 7110656 7110656 12697600 39420928 47708160 10350592 7110656 7110656 12697600 39420928 47708160 10350592 7110656 7110656 14221312 47708160 47708160 10350592 7110656 7110656 14221312 47708160 47708160 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 12697600 39420928 47708160 10350592 7110656 5079040 14221312 47708160 47708160 10350592 7110656 5079040 14221312 47708160 47708160 57737216 2737152 8299520 38797312 40402944 8953856 57737216 2737152 8299520 38797312 40402944 8953856 57737216 2737152 8299520 38797312 40402944 8953856 57737216 2737152 8299520 38797312 40402944 8953856 57737216 2737152 8299520 38797312 40402944 8953856 57737216 2737152 8299520 38797312 40402944 8953856 57737216 2737152 8299520 38797312 40402944 9109504 844800 3982336 11248640 39100416 41132032 9191424 1090560 4375552 12428288 39305216 41459712 9191424 1090560 4375552 12428288 39305216 41459712 9306112 1541120 656384 3384320 39837696 42008576 9805824 3564544 3671040 12690432 41508864 43941888 57737216 57737216 57737216 38797312 40402944 8953856 57737216 57737216 57737216 38797312 40402944 8953856 57737216 57737216 57737216 38797312 40402944 8953856 57737216 57737216 57737216 38797312 40402944 8953856 57737216 57737216 57737216 38797312 40402944 8953856 57737216 57737216 57737216 38797312 40402944 8953856 57737216 57737216 57737216 38797312 40402944 9109504 57737216 57737216 57737216 39100416 41132032 9191424 57737216 57737216 57737216 39305216 41459712 9191424 57737216 57737216 57737216 39305216 41459712 9306112 57737216 57737216 57737216 39837696 42008576 9805824 57737216 57737216 57737216 41508864 43941888 14680064 050905123648 65011712 050905123648 190840832 050905123648 050905123648 050905123648 050905123649 20971520 050905123649 65011712 050905123649 190840832 050905123649 050905123649 050905123649 050905123650 27262976 050905123650 65011712 050905123650 190840832 050905123650 050905123650 050905123650 050905123651 32505856 050905123651 65011712 050905123651 190840832 050905123651 050905123651 050905123651 050905123652 38797312 050905123652 65011712 050905123652 190840832 050905123652 050905123652 050905123652 050905123653 45088768 050905123653 65011712 050905123653 190840832 050905123653 050905123653 050905123653 050905123654 51380224 050905123654 65011712 050905123654 190840832 050905123654 050905123654 050905123654 050905123655 53477376 050905123655 65011712 050905123655 190840832 050905123655 050905123655 050905123655 050905123656 53477376 050905123656 65011712 050905123656 196083712 050905123656 050905123656 050905123656 050905123658 53477376 050905123658 65011712 050905123658 201326592 050905123658 050905123658 050905123658 050905123659 53477376 050905123659 68157440 050905123659 202375168 050905123659 050905123659 050905123659 050905123700 53477376 050905123700 68157440 050905123700 202375168 050905123700 050905123700 050905123700 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 10350592 7110656 7110656 14221312 47708160 47708160 10350592 7110656 7110656 14221312 47708160 47708160 10350592 7110656 7110656 14221312 47708160 47708160 10350592 7110656 7110656 14221312 47708160 47708160 10350592 7110656 7110656 14221312 47708160 47708160 12532736 7110656 7110656 14221312 47708160 47708160 12532736 7110656 7110656 14221312 47708160 47708160 12532736 7110656 7110656 14221312 47708160 47708160 12532736 7110656 7110656 14221312 47708160 47708160 12532736 7110656 6094848 14221312 47708160 57735168 12532736 7110656 6094848 14221312 47708160 57735168 12532736 7110656 6094848 14221312 47708160 10350592 7110656 5079040 14221312 47708160 47708160 10350592 7110656 5079040 14221312 47708160 47708160 10350592 7110656 5079040 14221312 47708160 47708160 10350592 7110656 5079040 14221312 47708160 47708160 10350592 7110656 5079040 14221312 47708160 47708160 12532736 7110656 5079040 14221312 47708160 47708160 12532736 7110656 5079040 14221312 47708160 47708160 12532736 7110656 5079040 14221312 47708160 47708160 12532736 7110656 5079040 14221312 47708160 47708160 12532736 7110656 6094848 14221312 47708160 57735168 12532736 7110656 6094848 14221312 47708160 57735168 12532736 7110656 6094848 14221312 47708160 9854976 3957760 508928 13935616 41910272 44154880 9854976 3957760 508928 13935616 41910272 44154880 9912320 4637696 1033216 1770496 42393600 44449792 10215424 6095872 2868224 7144448 43335680 45596672 10272768 779264 3654656 9634816 43786240 46014464 10371072 1696768 4572160 13042688 44228608 46424064 10395648 1696768 254976 13173760 44261376 46481408 10395648 1696768 254976 13173760 44261376 46481408 10641408 3073024 2614272 8037376 45670400 47513600 10846208 4645888 4580352 13935616 46694400 48365568 10846208 4645888 4580352 13935616 46694400 48365568 10960896 5104640 5301248 1967104 46997504 9854976 57737216 57737216 57737216 41910272 44154880 9854976 57737216 57737216 57737216 41910272 44154880 9912320 57737216 57737216 57737216 42393600 44449792 10215424 57737216 57737216 57737216 43335680 45596672 10272768 57737216 57737216 57737216 43786240 46014464 10371072 57737216 57737216 57737216 44228608 46424064 10395648 57737216 57737216 57737216 44261376 46481408 10395648 57737216 57737216 57737216 44261376 46481408 10641408 57737216 57737216 57737216 45670400 47513600 10846208 57737216 57737216 57737216 46694400 48365568 10846208 57737216 57737216 57737216 46694400 48365568 10960896 57737216 57737216 57737216 46997504 050905123701 53477376 050905123701 72351744 050905123701 203423744 050905123701 050905123701 050905123701 050905123702 53477376 050905123702 72351744 050905123702 209715200 050905123702 050905123702 050905123702 050905123703 53477376 050905123703 72351744 050905123703 213909504 050905123703 050905123703 050905123703 050905123704 54525952 050905123704 72351744 050905123704 213909504 050905123704 050905123704 050905123704 050905123705 59768832 050905123705 72351744 050905123705 213909504 050905123705 050905123705 050905123705 050905123706 59768832 050905123706 74448896 050905123706 213909504 050905123706 050905123706 050905123706 050905123707 59768832 050905123707 75497472 050905123707 219152384 050905123707 050905123707 050905123707 050905123708 59768832 050905123708 75497472 050905123708 225443840 050905123708 050905123708 050905123708 050905123709 59768832 050905123709 75497472 050905123709 226492416 050905123709 050905123709 050905123709 050905123710 59768832 050905123710 75497472 050905123710 227540992 050905123710 050905123710 050905123710 050905123711 59768832 050905123711 75497472 050905123711 233832448 050905123711 050905123711 050905123711 050905123712 59768832 050905123712 76546048 050905123712 238026752 050905123712 050905123712 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 57735168 12532736 7110656 6094848 14221312 47708160 57735168 12532736 7110656 6094848 14221312 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 12532736 7110656 6094848 14221312 47708160 57735168 12532736 5079040 6094848 14221312 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 48685056 48685056 050905123712 11083776 11083776 050905123713 5694464 57737216 59768832 050905123713 721920 57737216 80740352 050905123713 3605504 57737216 238026752 050905123713 47464448 47464448 050905123713 49061888 49061888 050905123713 11247616 11247616 050905123714 6284288 57737216 62914560 050905123714 1639424 57737216 80740352 050905123714 6882304 57737216 238026752 050905123714 47988736 47988736 050905123714 49741824 49741824 050905123714 11378688 11378688 050905123715 1180672 57737216 65011712 050905123715 3015680 57737216 80740352 050905123715 11273216 57737216 238026752 050905123715 48726016 48726016 050905123715 50642944 50642944 050905123715 11460608 11460608 050905123716 2229248 57737216 65011712 050905123716 4064256 57737216 80740352 050905123716 15205376 57737216 241172480 050905123716 49291264 49291264 050905123716 51412992 51412992 050905123716 11460608 11460608 050905123717 2229248 57737216 65011712 050905123717 4064256 57737216 80740352 050905123717 15205376 57737216 247463936 050905123717 49291264 49291264 050905123717 51412992 51412992 050905123717 11517952 11517952 050905123718 2622464 57737216 65011712 050905123718 4523008 57737216 80740352 050905123718 1639424 57737216 252706816 050905123718 49512448 49512448 050905123718 51748864 51748864 050905123718 11689984 11689984 050905123719 3081216 57737216 65011712 050905123719 508928 57737216 84934656 050905123719 3539968 57737216 252706816 050905123719 49848320 49848320 050905123719 52051968 52051968 050905123719 11780096 11780096 050905123720 3998720 57737216 65011712 050905123720 2147328 57737216 84934656 050905123720 7734272 57737216 252706816 050905123720 50610176 50610176 050905123720 53002240 53002240 050905123720 11935744 11935744 050905123721 1426432 57737216 69206016 050905123721 3458048 57737216 84934656 050905123721 11731968 57737216 252706816 050905123721 51740672 51740672 050905123721 53878784 53878784 050905123721 12115968 12115968 050905123722 2606080 57737216 69206016 050905123722 4572160 57737216 84934656 050905123722 15205376 57737216 253755392 050905123722 52576256 52576256 050905123722 54452224 54452224 050905123722 12115968 12115968 050905123723 2606080 57737216 69206016 050905123723 4572160 57737216 84934656 050905123723 15205376 57737216 260046848 050905123723 52576256 52576256 050905123723 54452224 54452224 050905123723 12115968 12115968 050905123724 2606080 57737216 69206016 050905123724 4572160 57737216 84934656 050905123724 15205376 57737216 265289728 050905123724 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 12532736 7110656 6094848 16252928 57735168 57735168 15173632 7110656 6094848 16252928 57735168 57735168 15173632 7110656 6094848 16252928 57735168 57735168 15173632 7110656 6094848 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 57735168 15173632 7110656 8126464 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 12532736 5079040 6094848 16252928 57735168 57735168 15173632 5079040 6094848 16252928 57735168 57735168 15173632 5079040 6094848 16252928 57735168 57735168 15173632 5079040 6094848 16252928 57735168 57735168 15173632 5079040 8126464 16252928 57735168 5972992 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 52576256 54452224 12304384 3720192 5555200 3851264 52871168 55189504 12345344 4310016 1238016 6865920 53264384 55590912 12369920 762880 1958912 8700928 53510144 55869440 12681216 2663424 4187136 14664704 54607872 57049088 12787712 2925568 4449280 15713280 54755328 57303040 12787712 2925568 4449280 15713280 54755328 57303040 12926976 3777536 5760000 4047872 55164928 57737216 12926976 3843072 5891072 4244480 55197696 57737216 12926976 3843072 5891072 4244480 55197696 57737216 12926976 3843072 5891072 4244480 55197696 57737216 12926976 3843072 5891072 4244480 55197696 57737216 12926976 3843072 5891072 52576256 54452224 12304384 57737216 57737216 57737216 52871168 55189504 12345344 57737216 57737216 57737216 53264384 55590912 12369920 57737216 57737216 57737216 53510144 55869440 12681216 57737216 57737216 57737216 54607872 57049088 12787712 57737216 57737216 57737216 54755328 57303040 12787712 57737216 57737216 57737216 54755328 57303040 12926976 57737216 57737216 57737216 55164928 57737216 12926976 57737216 57737216 57737216 55197696 57737216 12926976 57737216 57737216 57737216 55197696 57737216 12926976 57737216 57737216 57737216 55197696 57737216 12926976 57737216 57737216 57737216 55197696 57737216 12926976 57737216 57737216 69206016 88080384 266338304 69206016 90177536 266338304 72351744 90177536 266338304 72351744 90177536 266338304 72351744 90177536 271581184 72351744 90177536 276824064 72351744 90177536 281018368 72351744 90177536 281018368 6291456 72351744 90177536 281018368 12582912 72351744 90177536 281018368 17825792 72351744 90177536 281018368 24117248 72351744 90177536 050905123724 050905123724 050905123725 050905123725 050905123725 050905123725 050905123725 050905123725 050905123726 050905123726 050905123726 050905123726 050905123726 050905123726 050905123727 050905123727 050905123727 050905123727 050905123727 050905123727 050905123728 050905123728 050905123728 050905123728 050905123728 050905123728 050905123729 050905123729 050905123729 050905123729 050905123729 050905123729 050905123731 050905123731 050905123731 050905123731 050905123731 050905123731 050905123732 050905123732 050905123732 050905123732 050905123732 050905123732 050905123733 050905123733 050905123733 050905123733 050905123733 050905123733 050905123734 050905123734 050905123734 050905123734 050905123734 050905123734 050905123735 050905123735 050905123735 050905123735 050905123735 050905123735 050905123736 050905123736 050905123736 050905123736 050905123736 050905123736 050905123737 050905123737 050905123737 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 57735168 15173632 7110656 8126464 16252928 57735168 7110656 15173632 7110656 8126464 16252928 57735168 7110656 15173632 7110656 8126464 16252928 57735168 7110656 15173632 7110656 8126464 16252928 57735168 7110656 15173632 7110656 8126464 16252928 57735168 7110656 15173632 7110656 8126464 16252928 57735168 7110656 15173632 6094848 8126464 18284544 57735168 7110656 15173632 6094848 8126464 18284544 57735168 7110656 15173632 6094848 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 5079040 8126464 16252928 57735168 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 4244480 57737216 281018368 050905123737 55197696 55197696 050905123737 57737216 57737216 30408704 050905123737 12926976 12926976 050905123738 3843072 57737216 72351744 050905123738 5891072 57737216 90177536 050905123738 4244480 57737216 281018368 050905123738 55197696 55197696 050905123738 57737216 57737216 36700160 050905123738 12926976 12926976 050905123739 3843072 57737216 72351744 050905123739 5891072 57737216 90177536 050905123739 4244480 57737216 281018368 050905123739 55197696 55197696 050905123739 57737216 57737216 41943040 050905123739 12926976 12926976 050905123740 3843072 57737216 72351744 050905123740 5891072 57737216 90177536 050905123740 4244480 57737216 281018368 050905123740 55197696 55197696 050905123740 57737216 57737216 48234496 050905123740 12959744 12959744 050905123741 4236288 57737216 72351744 050905123741 6349824 57737216 90177536 050905123741 5424128 57737216 281018368 050905123741 55435264 55435264 050905123741 836608 57737216 53477376 050905123741 13033472 13033472 050905123742 4826112 57737216 74448896 050905123742 7332864 57737216 92274688 050905123742 8569856 57737216 281018368 050905123742 56123392 56123392 050905123742 1532928 57737216 53477376 050905123742 13066240 13066240 050905123743 254976 57737216 76546048 050905123743 762880 57737216 96468992 050905123743 9159680 57737216 281018368 050905123743 56336384 56336384 050905123743 1655808 57737216 53477376 050905123743 13385728 13385728 050905123744 2483200 57737216 76546048 050905123744 3646464 57737216 96468992 050905123744 15713280 57737216 282066944 050905123744 57344000 57344000 050905123744 2851840 57737216 53477376 050905123744 13385728 13385728 050905123745 2483200 57737216 76546048 050905123745 3646464 57737216 96468992 050905123745 15713280 57737216 288358400 050905123745 57344000 57344000 050905123745 2851840 57737216 53477376 050905123745 13402112 13402112 050905123746 2548736 57737216 76546048 050905123746 3712000 57737216 96468992 050905123746 1024 57737216 294649856 050905123746 57384960 57384960 050905123746 2917376 57737216 53477376 050905123746 13631488 13631488 050905123747 3728384 57737216 76546048 050905123747 5088256 57737216 96468992 050905123747 4326400 57737216 294649856 050905123747 57737216 57737216 4194304 050905123747 3802112 57737216 53477376 050905123747 13631488 13631488 050905123748 3728384 57737216 76546048 050905123748 5088256 57737216 96468992 050905123748 4326400 57737216 294649856 050905123748 57737216 57737216 10485760 050905123748 3802112 57737216 53477376 050905123748 13631488 13631488 050905123749 3728384 57737216 76546048 050905123749 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 8126464 18284544 57735168 7110656 15173632 6094848 8126464 18284544 57735168 7110656 15173632 6094848 8126464 18284544 57735168 7110656 15173632 6094848 8126464 18284544 57735168 7110656 15173632 6094848 8126464 18284544 57735168 7110656 15173632 6094848 8126464 18284544 57735168 7110656 15173632 6094848 8126464 18284544 57735168 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 5088256 4326400 57737216 3802112 13631488 3728384 5088256 4326400 57737216 3802112 13631488 3728384 5088256 4326400 57737216 3802112 13631488 3728384 5088256 4326400 57737216 3802112 13631488 3728384 5088256 4326400 57737216 3802112 13631488 3728384 5088256 4326400 57737216 3802112 13631488 3728384 5088256 4326400 57737216 3802112 13852672 5301248 7250944 10552320 1401856 4826112 13975552 762880 7840768 12780544 1664000 5088256 14032896 762880 508928 13239296 1737728 5145600 14188544 2532352 2147328 17236992 2458624 5661696 14188544 2532352 2147328 17236992 2458624 5661696 14188544 57737216 57737216 57737216 57737216 13631488 57737216 57737216 57737216 57737216 57737216 13631488 57737216 57737216 57737216 57737216 57737216 13631488 57737216 57737216 57737216 57737216 57737216 13631488 57737216 57737216 57737216 57737216 57737216 13631488 57737216 57737216 57737216 57737216 57737216 13631488 57737216 57737216 57737216 57737216 57737216 13852672 57737216 57737216 57737216 57737216 57737216 13975552 57737216 57737216 57737216 57737216 57737216 14032896 57737216 57737216 57737216 57737216 57737216 14188544 57737216 57737216 57737216 57737216 57737216 14188544 57737216 57737216 57737216 57737216 57737216 14188544 96468992 294649856 15728640 53477376 76546048 96468992 294649856 22020096 53477376 76546048 96468992 294649856 28311552 53477376 76546048 96468992 294649856 33554432 53477376 76546048 96468992 294649856 39845888 53477376 76546048 96468992 294649856 46137344 53477376 76546048 96468992 294649856 52428800 53477376 76546048 96468992 294649856 53477376 53477376 80740352 97517568 294649856 53477376 53477376 80740352 102760448 294649856 53477376 53477376 80740352 102760448 297795584 53477376 53477376 80740352 102760448 304087040 53477376 53477376 050905123749 050905123749 050905123749 050905123749 050905123750 050905123750 050905123750 050905123750 050905123750 050905123750 050905123751 050905123751 050905123751 050905123751 050905123751 050905123751 050905123752 050905123752 050905123752 050905123752 050905123752 050905123752 050905123753 050905123753 050905123753 050905123753 050905123753 050905123753 050905123754 050905123754 050905123754 050905123754 050905123754 050905123754 050905123755 050905123755 050905123755 050905123755 050905123755 050905123755 050905123756 050905123756 050905123756 050905123756 050905123756 050905123756 050905123757 050905123757 050905123757 050905123757 050905123757 050905123757 050905123758 050905123758 050905123758 050905123758 050905123758 050905123758 050905123759 050905123759 050905123759 050905123759 050905123759 050905123759 050905123800 050905123800 050905123800 050905123800 050905123800 050905123800 050905123801 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 14647296 6094848 8126464 18284544 7110656 1245184 14647296 6094848 8126464 18284544 7110656 1245184 14647296 4063232 6094848 18284544 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 15173632 6094848 8126464 18284544 7110656 7110656 14647296 6094848 8126464 18284544 7110656 1245184 14647296 6094848 8126464 18284544 7110656 1245184 14647296 4063232 6094848 18284544 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 2532352 2147328 17236992 2458624 5661696 14499840 3908608 3851264 5702656 3269632 6603776 14639104 4563968 4834304 8913920 3965952 713728 14647296 4629504 4965376 9372672 4064256 346112 14647296 4629504 4965376 9372672 4064256 346112 14647296 4319232 508928 9372672 993280 346112 14647296 4319232 6604800 254976 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 57737216 57737216 57737216 57737216 57737216 14499840 57737216 57737216 57737216 57737216 57737216 14639104 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 80740352 102760448 310378496 53477376 53477376 80740352 102760448 310378496 53477376 53477376 80740352 102760448 310378496 53477376 58720256 81788928 103809024 311427072 55574528 59768832 83886080 105906176 313524224 56623104 59768832 84934656 106954752 315621376 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 050905123801 050905123801 050905123801 050905123801 050905123801 050905123802 050905123802 050905123802 050905123802 050905123802 050905123802 050905123803 050905123803 050905123803 050905123803 050905123803 050905123803 050905123804 050905123804 050905123804 050905123804 050905123804 050905123804 050905123805 050905123805 050905123805 050905123805 050905123805 050905123805 050905123806 050905123806 050905123806 050905123806 050905123806 050905123806 050905123808 050905123808 050905123808 050905123808 050905123808 050905123808 050905123809 050905123809 050905123809 050905123809 050905123809 050905123809 050905123810 050905123810 050905123810 050905123810 050905123810 050905123810 050905123811 050905123811 050905123811 050905123811 050905123811 050905123811 050905123812 050905123812 050905123812 050905123812 050905123812 050905123812 050905123813 050905123813 050905123813 050905123813 050905123813 050905123813 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 59768832 84934656 106954752 318767104 57671680 050905123814 050905123814 050905123814 050905123814 050905123814 050905123814 050905123815 050905123815 050905123815 050905123815 050905123815 050905123815 050905123816 050905123816 050905123816 050905123816 050905123816 050905123816 050905123817 050905123817 050905123817 050905123817 050905123817 050905123817 050905123818 050905123818 050905123818 050905123818 050905123818 050905123818 050905123819 050905123819 050905123819 050905123819 050905123819 050905123819 050905123820 050905123820 050905123820 050905123820 050905123820 050905123820 050905123821 050905123821 050905123821 050905123821 050905123821 050905123821 050905123822 050905123822 050905123822 050905123822 050905123822 050905123822 050905123823 050905123823 050905123823 050905123823 050905123823 050905123823 050905123824 050905123824 050905123824 050905123824 050905123824 050905123824 050905123825 050905123825 050905123825 050905123825 050905123825 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 628 617 632 615 616 631 617 632 615 616 631 617 632 615 631 617 632 615 631 617 632 615 631 617 632 615 631 617 632 615 631 617 632 615 631 617 632 615 631 617 632 615 631 617 632 615 631 617 632 615 631 617 632 615 631 617 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 15745024 1245184 1245184 14647296 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 6094848 15745024 1245184 1245184 14647296 4063232 15745024 1245184 1245184 14647296 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 1245184 1245184 4063232 15745024 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 6604800 16004096 993280 346112 14647296 4319232 16004096 993280 346112 14647296 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 993280 346112 4319232 16004096 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 14647296 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 59768832 050905123825 050905123826 84934656 050905123826 106954752 050905123826 318767104 050905123826 57671680 050905123826 59768832 050905123826 050905123827 84934656 050905123827 106954752 050905123827 318767104 050905123827 57671680 050905123827 59768832 050905123827 050905123828 84934656 050905123828 106954752 050905123828 318767104 050905123828 57671680 050905123828 59768832 050905123828 050905123829 84934656 050905123829 318767104 050905123829 57671680 050905123829 59768832 050905123829 050905123830 84934656 050905123830 318767104 050905123830 57671680 050905123830 59768832 050905123830 84934656 050905123831 318767104 050905123831 57671680 050905123831 59768832 050905123831 84934656 050905123832 318767104 050905123832 57671680 050905123832 59768832 050905123832 84934656 050905123833 318767104 050905123833 57671680 050905123833 59768832 050905123833 84934656 050905123834 318767104 050905123834 57671680 050905123834 59768832 050905123834 84934656 050905123835 318767104 050905123835 57671680 050905123835 59768832 050905123835 84934656 050905123836 318767104 050905123836 57671680 050905123836 59768832 050905123836 84934656 050905123837 318767104 050905123837 57671680 050905123837 59768832 050905123837 84934656 050905123838 318767104 050905123838 57671680 050905123838 59768832 050905123838 84934656 050905123839 318767104 050905123839 57671680 050905123839 59768832 050905123839 84934656 050905123840 318767104 050905123840 57671680 050905123840 59768832 050905123840 84934656 050905123841 318767104 050905123841 632 615 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 1245184 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 1245184 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 993280 346112 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57671680 59768832 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 050905123841 050905123841 050905123842 050905123842 050905123842 050905123843 050905123843 050905123843 050905123844 050905123844 050905123844 050905123845 050905123845 050905123845 050905123847 050905123847 050905123847 050905123848 050905123848 050905123848 050905123849 050905123849 050905123849 050905123850 050905123850 050905123850 050905123851 050905123851 050905123851 050905123852 050905123852 050905123852 050905123853 050905123853 050905123853 050905123854 050905123854 050905123854 050905123855 050905123855 050905123855 050905123856 050905123856 050905123856 050905123857 050905123857 050905123857 050905123858 050905123858 050905123858 050905123859 050905123859 050905123859 050905123900 050905123900 050905123900 050905123901 050905123901 050905123901 050905123902 050905123902 050905123902 050905123903 050905123903 050905123903 050905123904 050905123904 050905123904 050905123905 050905123905 050905123905 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 050905123906 050905123906 050905123906 050905123907 050905123907 050905123907 050905123908 050905123908 050905123908 050905123909 050905123909 050905123909 050905123910 050905123910 050905123910 050905123911 050905123911 050905123911 050905123912 050905123912 050905123912 050905123913 050905123913 050905123913 050905123914 050905123914 050905123914 050905123915 050905123915 050905123915 050905123916 050905123916 050905123916 050905123917 050905123917 050905123917 050905123918 050905123918 050905123918 050905123919 050905123919 050905123919 050905123920 050905123920 050905123920 050905123921 050905123921 050905123921 050905123923 050905123923 050905123923 050905123924 050905123924 050905123924 050905123925 050905123925 050905123925 050905123926 050905123926 050905123926 050905123927 050905123927 050905123927 050905123928 050905123928 050905123928 050905123929 050905123929 050905123929 050905123930 050905123930 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 617 632 631 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 15745024 1245184 4063232 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 16004096 993280 4319232 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 318767104 57671680 84934656 050905123930 050905123931 050905123931 050905123931 050905123932 050905123932 050905123932 050905123933 050905123933 050905123933 050905123934 050905123934 050905123934 050905123935 050905123935 050905123935 050905123936 050905123936 050905123936 050905123937 050905123937 050905123937 050905123938 050905123938 050905123938 050905123939 050905123939 050905123939 050905123940 050905123940 050905123940 050905123941 050905123941 050905123941 050905123942 050905123942 050905123942 050905123943 050905123943 050905123943 050905123944 050905123944 050905123944 050905123945 050905123945 050905123945 050905123946 050905123946 050905123946 050905123947 050905123947 050905123947 050905123948 050905123948 050905123948 050905123949 050905123949 050905123949 050905123950 050905123950 050905123950 050905123951 050905123951 050905123951 050905123952 050905123952 050905123952 050905123953 050905123953 050905123953 050905123954 617 632 631 632 631 632 631 632 631 632 631 632 631 632 631 632 631 632 631 632 631 632 631 632 631 632 631 632 631 632 632 632 632 632 632 632 632 632 632 632 15745024 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1313 rows selected. SQL> spool off 15745024 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 4063232 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 1245184 16004096 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 4319232 993280 993280 993280 993280 993280 993280 993280 993280 993280 993280 993280 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 57737216 318767104 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 84934656 57671680 57671680 57671680 57671680 57671680 57671680 57671680 57671680 57671680 57671680 57671680 050905123954 050905123954 050905123955 050905123955 050905123956 050905123956 050905123957 050905123957 050905123958 050905123958 050905123959 050905123959 050905124000 050905124000 050905124001 050905124001 050905124003 050905124003 050905124004 050905124004 050905124005 050905124005 050905124006 050905124006 050905124007 050905124007 050905124008 050905124008 050905124009 050905124009 050905124010 050905124011 050905124012 050905124013 050905124014 050905124015 050905124016 050905124017 050905124018 050905124019 Session 615 Session 616 Session 617 Session 628 Session 631 Session 632 Predicted 55.5 Actual 55.0625 Timestamp 50905124010 50905123955 50905123941 50905123927 50905123912 50905123858 50905123843 50905123829 50905123815 50905123800 50905123746 50905123732 50905123717 50905123703 50905123648 50905123634 50905123619 50905123605 50905123551 50905123536 memory (Bytes) Session Sort Memory 6 DOP 70000000 60000000 50000000 40000000 30000000 20000000 10000000 0 PGA_AGGREGATE_TARGET 4G, 400M _pga_max_size, 333M _smm_px_max_size, 7 DOP SQL> show parameter NAME -----------------------------------O7_DICTIONARY_ACCESSIBILITY __db_cache_size __java_pool_size __large_pool_size __shared_pool_size _pga_max_size _smm_px_max_size active_instance_count aq_tm_processes archive_lag_target asm_diskgroups asm_diskstring asm_power_limit audit_file_dest TYPE ----------boolean big integer big integer big integer big integer big integer integer integer integer integer string string integer string audit_sys_operations audit_trail background_core_dump background_dump_dest backup_tape_io_slaves bitmap_merge_area_size blank_trimming buffer_pool_keep buffer_pool_recycle circuits cluster_database cluster_database_instances cluster_interconnects commit_point_strength compatible control_file_record_keep_time control_files boolean string string string boolean integer boolean string string integer boolean integer string integer string integer string core_dump_dest cpu_count create_bitmap_area_size create_stored_outlines cursor_sharing cursor_space_for_time db_16k_cache_size db_2k_cache_size db_32k_cache_size db_4k_cache_size db_8k_cache_size string integer integer string string boolean big integer big integer big integer big integer big integer NAME -----------------------------------db_block_buffers db_block_checking db_block_checksum db_block_size db_cache_advice db_cache_size db_create_file_dest db_create_online_log_dest_1 db_create_online_log_dest_2 db_create_online_log_dest_3 db_create_online_log_dest_4 db_create_online_log_dest_5 TYPE ----------integer boolean boolean integer string big integer string string string string string string VALUE -----------------------------FALSE 684M 8M 4M 224M 400M 340992 0 0 1 /home/oracle/DBHome1/rdbms/aud it FALSE TRUE partial /home/oracle/admin/test/bdump FALSE 1048576 FALSE FALSE 1 1 10.1.0.2.0 7 /home/oracle/oradata/test/con trol01.ctl, /home/oracle/orada ta/test/control02.ctl, /home/ oracle/oradata/test/control03 .ctl /home/oracle/admin/test/cdump 2 8388608 EXACT FALSE 0 0 0 0 0 VALUE -----------------------------0 FALSE TRUE 8192 ON 0 db_domain db_file_multiblock_read_count db_file_name_convert db_files db_flashback_retention_target db_keep_cache_size db_name db_recovery_file_dest string integer string integer integer big integer string string 32 distributed_lock_timeout dml_locks drs_start enqueue_resources event fal_client fal_server fast_start_io_target fast_start_mttr_target fast_start_parallel_rollback file_mapping fileio_network_adapters 200 1440 0 test /home/oracle/flash_recovery_ar ea big integer 2G big integer 0 string test integer 7 integer 0 boolean FALSE string /home/oracle/DBHome1/dbs/dr1hf dwh.dat string /home/oracle/DBHome1/dbs/dr2hf dwh.dat boolean FALSE boolean TRUE string (PROTOCOL=TCP) (SERVICE=testX DB) integer 60 integer 2924 boolean FALSE integer 3000 string string string integer 0 integer 0 string LOW boolean FALSE string NAME -----------------------------------filesystemio_options fixed_date gc_files_to_locks gcs_server_processes global_context_pool_size global_names hash_area_size hi_shared_memory_address hs_autoregister ifile instance_groups instance_name instance_number instance_type java_max_sessionspace_size java_pool_size java_soft_sessionspace_limit job_queue_processes large_pool_size ldap_directory_access license_max_sessions license_max_users license_sessions_warning local_listener lock_name_space lock_sga log_archive_config log_archive_dest log_archive_dest_1 log_archive_dest_10 log_archive_dest_2 log_archive_dest_3 log_archive_dest_4 TYPE ----------string string string integer string boolean integer integer boolean file string string integer string integer big integer integer integer big integer string integer integer integer string string boolean string string string string string string string db_recovery_file_dest_size db_recycle_cache_size db_unique_name db_writer_processes dbwr_io_slaves ddl_wait_for_locks dg_broker_config_file1 dg_broker_config_file2 dg_broker_start disk_asynch_io dispatchers VALUE -----------------------------none 0 FALSE 131072 0 TRUE test 0 RDBMS 0 0 0 10 0 NONE 0 0 0 FALSE log_archive_dest_5 log_archive_dest_6 log_archive_dest_7 log_archive_dest_8 log_archive_dest_9 log_archive_dest_state_1 log_archive_dest_state_10 log_archive_dest_state_2 log_archive_dest_state_3 log_archive_dest_state_4 log_archive_dest_state_5 log_archive_dest_state_6 log_archive_dest_state_7 log_archive_dest_state_8 string string string string string string string string string string string string string string NAME -----------------------------------log_archive_dest_state_9 log_archive_duplex_dest log_archive_format log_archive_local_first log_archive_max_processes log_archive_min_succeed_dest log_archive_start log_archive_trace log_buffer log_checkpoint_interval log_checkpoint_timeout log_checkpoints_to_alert log_file_name_convert logmnr_max_persistent_sessions max_commit_propagation_delay max_dispatchers max_dump_file_size max_enabled_roles max_shared_servers nls_calendar nls_comp nls_currency nls_date_format nls_date_language nls_dual_currency nls_iso_currency nls_language nls_length_semantics nls_nchar_conv_excp nls_numeric_characters nls_sort nls_territory nls_time_format nls_time_tz_format nls_timestamp_format nls_timestamp_tz_format object_cache_max_size_percent object_cache_optimal_size olap_page_pool_size open_cursors open_links open_links_per_instance optimizer_dynamic_sampling optimizer_features_enable optimizer_index_caching optimizer_index_cost_adj optimizer_mode TYPE ----------string string string boolean integer integer boolean integer integer integer integer boolean string integer integer integer string integer integer string string string string string string string string string string string string string string string string string integer integer big integer integer integer integer integer string integer integer string NAME -----------------------------------os_authent_prefix os_roles parallel_adaptive_multi_user parallel_automatic_tuning TYPE ----------string boolean boolean boolean enable enable enable enable enable enable enable enable enable VALUE -----------------------------enable %t_%s_%r.dbf TRUE 2 1 FALSE 0 524288 0 1800 FALSE 1 700 UNLIMITED 150 AMERICAN BYTE FALSE AMERICA 10 102400 0 300 4 4 2 10.1.0.3 0 100 ALL_ROWS VALUE -----------------------------ops$ FALSE TRUE FALSE parallel_execution_message_size parallel_instance_group parallel_max_servers parallel_min_percent parallel_min_servers parallel_server parallel_server_instances parallel_threads_per_cpu pga_aggregate_target plsql_code_type plsql_compiler_flags plsql_debug plsql_native_library_dir plsql_native_library_subdir_count plsql_optimize_level plsql_v2_compatibility plsql_warnings pre_page_sga processes query_rewrite_enabled query_rewrite_integrity rdbms_server_dn read_only_open_delayed recovery_parallelism remote_archive_enable remote_dependencies_mode remote_listener remote_login_passwordfile remote_os_authent remote_os_roles replication_dependency_tracking resource_limit resource_manager_plan resumable_timeout rollback_segments serial_reuse service_names session_cached_cursors session_max_open_files sessions sga_max_size sga_target shadow_core_dump integer string integer integer integer boolean integer integer big integer string string boolean string integer integer boolean string boolean integer string string string boolean integer string string string string boolean boolean boolean boolean string integer string string string integer integer integer big integer big integer string NAME -----------------------------------shared_memory_address shared_pool_reserved_size shared_pool_size shared_server_sessions shared_servers skip_unusable_indexes smtp_out_server sort_area_retained_size sort_area_size sp_name spfile TYPE ----------integer big integer big integer integer integer boolean string integer integer string string sql92_security sql_trace sql_version sqltune_category standby_archive_dest standby_file_management star_transformation_enabled statistics_level streams_pool_size tape_asynch_io thread timed_os_statistics timed_statistics 2148 80 0 0 FALSE 1 4 4G INTERPRETED INTERPRETED, NON_DEBUG FALSE 0 2 FALSE DISABLE:ALL FALSE 600 TRUE enforced FALSE 0 true TIMESTAMP EXCLUSIVE FALSE FALSE TRUE FALSE 0 disable test 0 10 665 1G 1G partial VALUE -----------------------------0 11744051 0 1 TRUE 0 65536 test /home/oracle/DBHome1/dbs/spfil etest.ora boolean FALSE boolean FALSE string NATIVE string DEFAULT string ?/dbs/arch string MANUAL string TRUE string TYPICAL big integer 100M boolean TRUE integer 0 integer 0 boolean TRUE trace_enabled boolean tracefile_identifier string transactions integer transactions_per_rollback_segment integer undo_management string undo_retention integer undo_tablespace string use_indirect_data_buffers boolean user_dump_dest string utl_file_dir string workarea_size_policy string SQL> @get_undoc SP2-0310: unable to open file "get_undoc.sql" SQL> @get_undocs TRUE 731 5 AUTO 900 UNDOTBSP2 FALSE /home/oracle/admin/test/udump AUTO Parameter ---------------------------------------_pga_large_extent_size _pga_max_size Description ------------------------PGA large extent size Maximum size of the PGA memory for one process Value ---------1048576 419430400 _smm_advice_enabled if TRUE, enable v$pga_advice TRUE _smm_advice_log_size overwrites default size of the PGA advice workarea history log 0 _smm_auto_cost_enabled if TRUE, use the AUTO size policy cost functions TRUE _smm_auto_max_io_size Maximum IO size (in KB) 248 used by sort/hash-join in auto mode _smm_auto_min_io_size Minimum IO size (in KB) 56 used by sort/hash-join in auto mode _smm_bound overwrites memory manager 0 automatically computed bound _smm_control provides controls on the memory manager 0 _smm_freeable_retain value in KB of the instance freeable PGA memory to retain 5120 _smm_max_size maximum work area size in 204800 auto mode (serial) _smm_min_size minimum work area size in 1024 auto mode _smm_px_max_size maximum work area size in 340992 auto mode (global) _smm_retain_size work area retain size in SGA for shared server sessions (0 for AUTO) 0 Parameter Description Value ---------------------------------------- ------------------------- ---------_smm_trace Turn on/off tracing for 0 SQL memory manager 15 rows selected. note change to parallel threads per cpu Elapsed: 00:00:00.00 SQL> set autotrace traceonly SQL> get test_parallel 1 select /*+ parallel(test_pga 7) */ 2 * from test_pga 3* order by district_name,name SQL> / 4547752 rows selected. Elapsed: 00:05:41.19 Execution Plan ---------------------------------------------------------0 SELECT STATEMENT Optimizer=ALL_ROWS (Cost=21079 Card=4547752 Bytes=513895976) 1 2 0 1 3 2 PX COORDINATOR PX SEND* (QC (ORDER)) OF ':TQ10001' (Cost=21079 Card=454 :Q1001 7752 Bytes=513895976) SORT* (ORDER BY) (Cost=21079 Card=4547752 Bytes=513895 :Q1001 976) 4 5 3 4 PX RECEIVE* (Cost=2468 Card=4547752 Bytes=513895976) :Q1001 PX SEND* (RANGE) OF ':TQ10000' (Cost=2468 Card=454 :Q1000 7752 Bytes=513895976) 6 5 PX BLOCK* (ITERATOR) (Cost=2468 Card=4547752 Byt :Q1000 es=513895976) 7 6 TABLE ACCESS* (FULL) OF 'TEST_PGA' (TABLE) (Co :Q1000 st=2468 Card=4547752 Bytes=513895976) 2 3 4 5 6 7 PARALLEL_TO_SERIAL PARALLEL_COMBINED_WITH_PARENT PARALLEL_COMBINED_WITH_PARENT PARALLEL_TO_PARALLEL PARALLEL_COMBINED_WITH_CHILD PARALLEL_COMBINED_WITH_PARENT Statistics ---------------------------------------------------------1133 recursive calls 67 db block gets 79993 consistent gets 147701 physical reads 680 redo size 253863141 bytes sent via SQL*Net to client 3335525 bytes received via SQL*Net from client 303185 SQL*Net roundtrips to/from client 9 sorts (memory) 4 sorts (disk) 4547752 rows processed SQL> spool off SQL> set lines 100 SQL> set pages 10000 SQL> select * from test_results; SID WORK_AREA_SIZE EXPECTED_SIZE ACTUAL_MEM_USED MAX_MEM_USED TEMPSEG_SIZE NOW ----- -------------- ------------- --------------- ------------ ------------ -----------630 2220032 2220032 1851392 1851392 050905124831 626 1234944 1234944 1089536 1089536 050905124831 629 10350592 10350592 8650752 8650752 050905124831 627 830464 830464 688128 688128 050905124831 632 3269632 3269632 2957312 2957312 050905124831 628 2695168 2695168 2236416 2236416 050905124831 631 553984 553984 458752 458752 050905124831 630 2695168 2695168 2506752 2506752 050905124832 626 1503232 1503232 1417216 1417216 050905124832 629 15173632 15173632 12697600 12697600 050905124832 627 1013760 1013760 901120 901120 050905124832 632 4806656 4806656 4063232 4063232 050905124832 628 3269632 3269632 2809856 2809856 050905124832 631 553984 553984 548864 548864 050905124832 630 3269632 3269632 3080192 3080192 050905124833 626 2695168 2695168 2293760 2293760 050905124833 629 18368512 18368512 16908288 16908288 050905124833 627 1234944 1234944 1204224 1204224 050905124833 632 5824512 5824512 5677056 5677056 050905124833 628 4806656 4806656 4194304 4194304 050905124833 631 830464 830464 745472 745472 050905124833 630 3964928 3964928 3883008 3883008 050905124834 626 3269632 3269632 2949120 2949120 050905124834 629 22234112 22234112 20455424 20455424 050905124834 627 1827840 1827840 1531904 1531904 050905124834 632 7056384 7056384 6823936 6823936 050905124834 628 5824512 5824512 5341184 5341184 050905124834 631 1013760 1013760 851968 851968 050905124834 630 4806656 4806656 4612096 4612096 050905124835 626 3964928 3964928 3530752 3530752 050905124835 629 26911744 26911744 24469504 24469504 050905124835 627 2220032 2220032 1900544 1900544 050905124835 632 8547328 8547328 8003584 8003584 050905124835 628 7056384 7056384 6086656 6086656 050905124835 631 1013760 1013760 983040 983040 050905124835 630 5824512 5824512 5283840 5283840 050905124836 626 3964928 3964928 3866624 3866624 050905124836 629 32572416 32572416 28393472 28393472 050905124836 627 2220032 2220032 2138112 2138112 050905124836 632 10350592 10350592 9158656 9158656 050905124836 628 7056384 7056384 6856704 6856704 050905124836 631 1234944 1234944 1097728 1097728 050905124836 630 7056384 7056384 6086656 6086656 050905124837 626 4806656 4806656 4448256 4448256 050905124837 629 32572416 32572416 31834112 31834112 050905124837 627 2695168 2695168 2457600 2457600 050905124837 632 12532736 12532736 10420224 10420224 050905124837 628 8547328 8547328 7921664 7921664 050905124837 631 1234944 1234944 1212416 1212416 050905124837 630 7056384 7056384 6660096 6660096 050905124838 626 4806656 4806656 4702208 4702208 050905124838 629 39420928 39420928 34758656 34758656 050905124838 627 2695168 2695168 2686976 2686976 050905124838 632 12532736 12532736 11395072 11395072 050905124838 628 10350592 10350592 8765440 8765440 050905124838 631 1503232 1503232 1302528 1302528 050905124838 630 8547328 8547328 7528448 7528448 050905124839 626 5824512 5824512 5341184 5341184 050905124839 629 39420928 39420928 38150144 38150144 050905124839 627 3269632 3269632 3260416 3260416 050905124839 632 15173632 15173632 12845056 12845056 050905124839 628 10350592 10350592 9715712 9715712 050905124839 631 1503232 1503232 1458176 1458176 050905124839 630 8547328 8547328 8069120 8069120 050905124840 626 5824512 5824512 5701632 5701632 050905124840 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 47708160 3964928 15173632 12532736 1827840 10350592 7056384 47708160 3964928 18368512 12532736 2220032 10350592 7056384 47708160 4806656 18368512 12532736 2220032 10350592 7056384 47708160 4806656 18368512 12532736 2220032 10350592 7056384 47708160 4806656 18368512 12532736 2220032 10350592 7056384 47708160 4806656 18368512 12532736 2220032 10350592 7056384 47708160 4806656 18368512 12532736 2220032 10350592 7056384 47708160 4806656 18368512 12532736 2220032 10350592 7056384 47708160 4806656 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 12532736 7056384 6602752 47708160 3964928 15173632 12532736 1827840 10350592 7056384 47708160 3964928 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 10350592 7056384 6602752 4806656 18368512 12532736 2220032 12532736 7056384 6602752 41623552 3563520 13934592 10829824 1622016 8912896 6266880 45088768 3842048 15515648 11886592 1843200 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 132096 4038656 16359424 12296192 1990656 10428416 6889472 3302400 41623552 3563520 13934592 10829824 1622016 8912896 6266880 45088768 3842048 15515648 11886592 1843200 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4005888 16334848 12296192 1990656 9584640 6651904 47710208 4038656 16359424 12296192 1990656 10428416 6889472 47710208 2097152 8388608 14680064 19922944 26214400 32505856 38797312 44040192 44040192 050905124840 050905124840 050905124840 050905124840 050905124840 050905124841 050905124841 050905124841 050905124841 050905124841 050905124841 050905124841 050905124842 050905124842 050905124842 050905124842 050905124842 050905124842 050905124842 050905124843 050905124843 050905124843 050905124843 050905124843 050905124843 050905124843 050905124844 050905124844 050905124844 050905124844 050905124844 050905124844 050905124844 050905124845 050905124845 050905124845 050905124845 050905124845 050905124845 050905124845 050905124846 050905124846 050905124846 050905124846 050905124846 050905124846 050905124846 050905124847 050905124847 050905124847 050905124847 050905124847 050905124847 050905124847 050905124848 050905124848 050905124848 050905124848 050905124848 050905124848 050905124848 050905124850 050905124850 050905124850 050905124850 050905124850 050905124850 050905124850 050905124851 050905124851 050905124851 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 4806656 18368512 15173632 2220032 12532736 8547328 6602752 4806656 18368512 15173632 2695168 12532736 8547328 6602752 4806656 22234112 15173632 2695168 12532736 8547328 6602752 4806656 22234112 15173632 2695168 12532736 8547328 6602752 5824512 22234112 15173632 2695168 12532736 8547328 6602752 5824512 22234112 18368512 2695168 15173632 10350592 6602752 5824512 22234112 18368512 3269632 15173632 10350592 6602752 5824512 26911744 18368512 3269632 15173632 10350592 6602752 5824512 26911744 18368512 3269632 15173632 10350592 6094848 5824512 26911744 18368512 3269632 15173632 10350592 6094848 7056384 4806656 18368512 15173632 2220032 12532736 8547328 6602752 4806656 18368512 15173632 2695168 12532736 8547328 6602752 4806656 22234112 15173632 2695168 12532736 8547328 4571136 4806656 22234112 15173632 2695168 12532736 8547328 4571136 5824512 22234112 15173632 2695168 12532736 8547328 4571136 5824512 22234112 18368512 2695168 15173632 10350592 4571136 5824512 22234112 18368512 3269632 15173632 10350592 4571136 5824512 26911744 18368512 3269632 15173632 10350592 4571136 5824512 26911744 18368512 3269632 15173632 10350592 6094848 5824512 26911744 18368512 3269632 15173632 10350592 6094848 7056384 4325376 17440768 13033472 2129920 10813440 7217152 5587968 4431872 18194432 13508608 2260992 11173888 7421952 1958912 4562944 18776064 13631488 2359296 11640832 7815168 4645888 4784128 19660800 14262272 2465792 11935744 8003584 1639424 4980736 20201472 14630912 2539520 12288000 8323072 3539968 5079040 20733952 15212544 2613248 12926976 8757248 2950144 5251072 21766144 15958016 2727936 13197312 9019392 1680384 5349376 22274048 16203776 2801664 13795328 9461760 4301824 5627904 23085056 16719872 2932736 14139392 9748480 2229248 5816320 23846912 16982016 2949120 14467072 10272768 5047296 5939200 4325376 17440768 13033472 2129920 10813440 7217152 47710208 4431872 18194432 13508608 2260992 11173888 7421952 47710208 4562944 18776064 13631488 2359296 11640832 7815168 47710208 4784128 19660800 14262272 2465792 11935744 8003584 47710208 4980736 20201472 14630912 2539520 12288000 8323072 47710208 5079040 20733952 15212544 2613248 12926976 8757248 47710208 5251072 21766144 15958016 2727936 13197312 9019392 47710208 5349376 22274048 16203776 2801664 13795328 9461760 47710208 5627904 23085056 16719872 2932736 14139392 9748480 47710208 5816320 23846912 16982016 2949120 14467072 10272768 47710208 5939200 47185920 49283072 50331648 53477376 56623104 56623104 59768832 61865984 63963136 65011712 050905124851 050905124851 050905124851 050905124851 050905124852 050905124852 050905124852 050905124852 050905124852 050905124852 050905124852 050905124853 050905124853 050905124853 050905124853 050905124853 050905124853 050905124853 050905124854 050905124854 050905124854 050905124854 050905124854 050905124854 050905124854 050905124855 050905124855 050905124855 050905124855 050905124855 050905124855 050905124855 050905124856 050905124856 050905124856 050905124856 050905124856 050905124856 050905124856 050905124857 050905124857 050905124857 050905124857 050905124857 050905124857 050905124857 050905124858 050905124858 050905124858 050905124858 050905124858 050905124858 050905124858 050905124859 050905124859 050905124859 050905124859 050905124859 050905124859 050905124859 050905124900 050905124900 050905124900 050905124900 050905124900 050905124900 050905124900 050905124901 050905124901 050905124901 050905124901 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 26911744 18368512 3269632 15173632 12532736 6094848 7056384 26911744 18368512 3269632 18368512 12532736 6094848 7056384 26911744 22234112 3964928 18368512 12532736 6094848 7056384 26911744 22234112 3964928 18368512 12532736 6094848 7056384 32572416 22234112 3964928 18368512 12532736 6094848 7056384 32572416 22234112 3964928 18368512 12532736 7618560 7056384 32572416 22234112 3964928 18368512 12532736 7618560 8547328 32572416 22234112 3964928 18368512 12532736 7618560 8547328 32572416 22234112 3964928 18368512 12532736 7618560 8547328 32572416 22234112 3964928 22234112 15173632 7618560 8547328 32572416 26911744 18368512 3269632 15173632 12532736 6094848 7056384 26911744 18368512 3269632 18368512 12532736 6094848 7056384 26911744 22234112 3964928 18368512 12532736 6094848 7056384 26911744 22234112 3964928 18368512 12532736 6094848 7056384 32572416 22234112 3964928 18368512 12532736 6094848 7056384 32572416 22234112 3964928 18368512 12532736 7618560 7056384 32572416 22234112 3964928 18368512 12532736 7618560 8547328 32572416 22234112 3964928 18368512 12532736 7618560 8547328 32572416 22234112 3964928 18368512 12532736 7618560 8547328 32572416 22234112 3964928 22234112 15173632 7618560 8547328 32572416 24657920 17580032 3112960 14639104 10420224 1819648 6021120 25165824 17817600 3178496 15343616 10878976 5293056 6397952 26451968 18776064 3309568 15433728 10960896 1024 6471680 26746880 18857984 3342336 16031744 11550720 4064256 6692864 27713536 19472384 3473408 16211968 11608064 508928 6848512 28057600 19652608 3497984 16695296 11943936 3851264 7053312 29073408 20701184 3571712 17227776 12247040 7062528 7258112 30031872 21225472 3833856 17252352 12263424 1024 7315456 30121984 21381120 3866624 17924096 12492800 3343360 7716864 31367168 21962752 3956736 18522112 12861440 6554624 7897088 32235520 24657920 17580032 3112960 14639104 10420224 47710208 6021120 25165824 17817600 3178496 15343616 10878976 47710208 6397952 26451968 18776064 3309568 15433728 10960896 47710208 6471680 26746880 18857984 3342336 16031744 11550720 47710208 6692864 27713536 19472384 3473408 16211968 11608064 47710208 6848512 28057600 19652608 3497984 16695296 11943936 47710208 7053312 29073408 20701184 3571712 17227776 12247040 47710208 7258112 30031872 21225472 3833856 17252352 12263424 47710208 7315456 30121984 21381120 3866624 17924096 12492800 47710208 7716864 31367168 21962752 3956736 18522112 12861440 47710208 7897088 32235520 68157440 68157440 73400320 73400320 77594624 77594624 77594624 83886080 83886080 84934656 050905124901 050905124901 050905124901 050905124902 050905124902 050905124902 050905124902 050905124902 050905124902 050905124902 050905124903 050905124903 050905124903 050905124903 050905124903 050905124903 050905124903 050905124904 050905124904 050905124904 050905124904 050905124904 050905124904 050905124904 050905124905 050905124905 050905124905 050905124905 050905124905 050905124905 050905124905 050905124906 050905124906 050905124906 050905124906 050905124906 050905124906 050905124906 050905124907 050905124907 050905124907 050905124907 050905124907 050905124907 050905124907 050905124908 050905124908 050905124908 050905124908 050905124908 050905124908 050905124908 050905124909 050905124909 050905124909 050905124909 050905124909 050905124909 050905124909 050905124910 050905124910 050905124910 050905124910 050905124910 050905124910 050905124910 050905124911 050905124911 050905124911 050905124911 050905124911 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 26911744 4806656 22234112 15173632 7618560 8547328 32572416 26911744 4806656 22234112 15173632 7618560 8547328 39420928 26911744 4806656 22234112 15173632 8634368 8547328 39420928 26911744 4806656 22234112 15173632 8634368 8547328 39420928 26911744 4806656 22234112 15173632 8634368 10350592 39420928 26911744 4806656 22234112 15173632 8634368 10350592 39420928 26911744 4806656 22234112 15173632 8634368 10350592 39420928 26911744 4806656 22234112 18368512 8634368 10350592 39420928 26911744 4806656 26911744 18368512 8634368 10350592 39420928 32572416 4806656 26911744 18368512 8634368 10350592 47708160 32572416 26911744 4806656 22234112 15173632 7618560 8547328 32572416 26911744 4806656 22234112 15173632 7618560 8547328 39420928 26911744 4806656 22234112 15173632 8634368 8547328 39420928 26911744 4806656 22234112 15173632 8634368 8547328 39420928 26911744 4806656 22234112 15173632 8634368 10350592 39420928 26911744 4806656 22234112 15173632 8634368 10350592 39420928 26911744 4806656 22234112 15173632 8634368 10350592 39420928 26911744 4806656 22234112 18368512 8634368 10350592 39420928 26911744 4806656 26911744 18368512 8634368 10350592 39420928 32572416 4806656 26911744 18368512 8634368 10350592 47708160 32572416 22798336 4071424 18546688 12886016 1041408 7913472 32497664 22855680 4071424 19226624 13344768 4383744 8101888 33374208 23625728 4112384 20283392 13811712 7857152 8454144 34488320 24240128 4169728 20283392 13811712 7857152 8454144 34496512 24240128 4169728 20914176 14213120 3326976 8765440 35373056 25018368 4374528 21250048 14868480 6538240 9076736 36503552 25591808 4571136 21553152 15138816 8111104 9388032 37167104 26058752 4677632 21766144 15179776 1942528 9412608 37748736 26263552 4702208 22462464 15450112 4957184 9715712 38772736 27189248 4775936 23027712 15802368 8365056 10010624 39755776 27967488 22798336 4071424 18546688 12886016 47710208 7913472 32497664 22855680 4071424 19226624 13344768 47710208 8101888 33374208 23625728 4112384 20283392 13811712 47710208 8454144 34488320 24240128 4169728 20283392 13811712 47710208 8454144 34496512 24240128 4169728 20914176 14213120 47710208 8765440 35373056 25018368 4374528 21250048 14868480 47710208 9076736 36503552 25591808 4571136 21553152 15138816 47710208 9388032 37167104 26058752 4677632 21766144 15179776 47710208 9412608 37748736 26263552 4702208 22462464 15450112 47710208 9715712 38772736 27189248 4775936 23027712 15802368 47710208 10010624 39755776 27967488 90177536 90177536 90177536 96468992 96468992 96468992 99614720 103809024 103809024 103809024 050905124911 050905124911 050905124912 050905124912 050905124912 050905124912 050905124912 050905124912 050905124912 050905124913 050905124913 050905124913 050905124913 050905124913 050905124913 050905124913 050905124914 050905124914 050905124914 050905124914 050905124914 050905124914 050905124914 050905124915 050905124915 050905124915 050905124915 050905124915 050905124915 050905124915 050905124916 050905124916 050905124916 050905124916 050905124916 050905124916 050905124916 050905124917 050905124917 050905124917 050905124917 050905124917 050905124917 050905124917 050905124918 050905124918 050905124918 050905124918 050905124918 050905124918 050905124918 050905124919 050905124919 050905124919 050905124919 050905124919 050905124919 050905124919 050905124920 050905124920 050905124920 050905124920 050905124920 050905124920 050905124920 050905124921 050905124921 050905124921 050905124921 050905124921 050905124921 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 5824512 26911744 18368512 8634368 10350592 47708160 32572416 5824512 26911744 18368512 8634368 10350592 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 32572416 22234112 10158080 12532736 47708160 39420928 5824512 5824512 26911744 18368512 8634368 10350592 47708160 32572416 5824512 26911744 18368512 8634368 10350592 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 26911744 18368512 10158080 12532736 47708160 32572416 5824512 32572416 22234112 10158080 12532736 47708160 39420928 5824512 4841472 23027712 15802368 8365056 10010624 39755776 27967488 4841472 23699456 16048128 3007488 10264576 40747008 28909568 5013504 24567808 16359424 6939648 10493952 42147840 29687808 5169152 24961024 16506880 9364480 10633216 43040768 30154752 5210112 24961024 16506880 9364480 10633216 43040768 30154752 5210112 25468928 17170432 3466240 10805248 44081152 30564352 5300224 26083328 17678336 7070720 11075584 45129728 31236096 5529600 26419200 17866752 9364480 11378688 45924352 31686656 5611520 26435584 17940480 254976 11378688 45957120 31703040 5611520 27082752 18481152 3662848 11649024 47136768 32874496 5701632 4841472 23027712 15802368 47710208 10010624 39755776 27967488 4841472 23699456 16048128 47710208 10264576 40747008 28909568 5013504 24567808 16359424 47710208 10493952 42147840 29687808 5169152 24961024 16506880 47710208 10633216 43040768 30154752 5210112 24961024 16506880 47710208 10633216 43040768 30154752 5210112 25468928 17170432 47710208 10805248 44081152 30564352 5300224 26083328 17678336 47710208 11075584 45129728 31236096 5529600 26419200 17866752 47710208 11378688 45924352 31686656 5611520 26435584 17940480 47710208 11378688 45957120 31703040 5611520 27082752 18481152 47710208 11649024 47136768 32874496 5701632 110100480 111149056 111149056 113246208 119537664 119537664 119537664 121634816 127926272 127926272 050905124921 050905124922 050905124922 050905124922 050905124922 050905124922 050905124922 050905124922 050905124923 050905124923 050905124923 050905124923 050905124923 050905124923 050905124923 050905124924 050905124924 050905124924 050905124924 050905124924 050905124924 050905124924 050905124925 050905124925 050905124925 050905124925 050905124925 050905124925 050905124925 050905124926 050905124926 050905124926 050905124926 050905124926 050905124926 050905124926 050905124928 050905124928 050905124928 050905124928 050905124928 050905124928 050905124928 050905124929 050905124929 050905124929 050905124929 050905124929 050905124929 050905124929 050905124930 050905124930 050905124930 050905124930 050905124930 050905124930 050905124930 050905124931 050905124931 050905124931 050905124931 050905124931 050905124931 050905124931 050905124932 050905124932 050905124932 050905124932 050905124932 050905124932 050905124932 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 32572416 22234112 10158080 12532736 47708160 39420928 7056384 32572416 22234112 10158080 12532736 47708160 39420928 7056384 32572416 22234112 10158080 12532736 47708160 39420928 7056384 32572416 22234112 10158080 12532736 47708160 39420928 7056384 32572416 22234112 10158080 12532736 47708160 39420928 7056384 32572416 22234112 10158080 12532736 47708160 39420928 7056384 32572416 22234112 10158080 12532736 47708160 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 22234112 10158080 12532736 6602752 39420928 7056384 32572416 27369472 18735104 5366784 11771904 47710208 33153024 5857280 27369472 18735104 5366784 11771904 47710208 33153024 5857280 27369472 18735104 5366784 11771904 47710208 33153024 5857280 27369472 18735104 5366784 11771904 47710208 33153024 5857280 27369472 18735104 5366784 11771904 47710208 33153024 5857280 27369472 18735104 5366784 11771904 47710208 33153024 5857280 27369472 18735104 5366784 11771904 47710208 33153024 5857280 27648000 18931712 6611968 11993088 705536 33415168 5914624 28106752 19226624 9364480 12124160 1786880 34054144 6053888 28106752 19226624 9364480 12124160 1786880 34054144 6053888 28786688 27369472 18735104 47710208 11771904 47710208 33153024 5857280 27369472 18735104 47710208 11771904 47710208 33153024 5857280 27369472 18735104 47710208 11771904 47710208 33153024 5857280 27369472 18735104 47710208 11771904 47710208 33153024 5857280 27369472 18735104 47710208 11771904 47710208 33153024 5857280 27369472 18735104 47710208 11771904 47710208 33153024 5857280 27369472 18735104 47710208 11771904 47710208 33153024 5857280 27648000 18931712 47710208 11993088 47710208 33415168 5914624 28106752 19226624 47710208 12124160 47710208 34054144 6053888 28106752 19226624 47710208 12124160 47710208 34054144 6053888 28786688 127926272 4194304 127926272 10485760 127926272 15728640 127926272 22020096 127926272 28311552 127926272 34603008 127926272 40894464 127926272 44040192 130023424 44040192 135266304 44040192 050905124933 050905124933 050905124933 050905124933 050905124933 050905124933 050905124933 050905124934 050905124934 050905124934 050905124934 050905124934 050905124934 050905124934 050905124935 050905124935 050905124935 050905124935 050905124935 050905124935 050905124935 050905124936 050905124936 050905124936 050905124936 050905124936 050905124936 050905124936 050905124937 050905124937 050905124937 050905124937 050905124937 050905124937 050905124937 050905124938 050905124938 050905124938 050905124938 050905124938 050905124938 050905124938 050905124939 050905124939 050905124939 050905124939 050905124939 050905124939 050905124939 050905124940 050905124940 050905124940 050905124940 050905124940 050905124940 050905124940 050905124941 050905124941 050905124941 050905124941 050905124941 050905124941 050905124941 050905124942 050905124942 050905124942 050905124942 050905124942 050905124942 050905124942 050905124943 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 22234112 11681792 12532736 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 8547328 32572416 22234112 11681792 15173632 6602752 39420928 8547328 32572416 22234112 11681792 15173632 6602752 39420928 8547328 32572416 22234112 22234112 11681792 12532736 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 7056384 32572416 22234112 11681792 15173632 6602752 39420928 8547328 32572416 22234112 11681792 15173632 6602752 39420928 8547328 32572416 22234112 11681792 15173632 6602752 39420928 8547328 32572416 22234112 19439616 3662848 12476416 3015680 34725888 6258688 29442048 20086784 7201792 13107200 4334592 35561472 6479872 30081024 20684800 10871808 13303808 5497856 36487168 6578176 30081024 20684800 10871808 13303808 5497856 36487168 6578176 30187520 20799488 1024 13352960 5587968 36577280 6610944 30326784 20865024 2294784 13410304 656384 37076992 6676480 30842880 21356544 5702656 13697024 1639424 37773312 6873088 31358976 21676032 9307136 14114816 2950144 38690816 7086080 31498240 21757952 10617856 14229504 3277824 39010304 7184384 31498240 21757952 508928 14229504 3277824 39018496 7184384 32088064 22093824 19439616 47710208 12476416 47710208 34725888 6258688 29442048 20086784 47710208 13107200 47710208 35561472 6479872 30081024 20684800 47710208 13303808 47710208 36487168 6578176 30081024 20684800 47710208 13303808 47710208 36487168 6578176 30187520 20799488 47710208 13352960 47710208 36577280 6610944 30326784 20865024 47710208 13410304 47710208 37076992 6676480 30842880 21356544 47710208 13697024 47710208 37773312 6873088 31358976 21676032 47710208 14114816 47710208 38690816 7086080 31498240 21757952 47710208 14229504 47710208 39010304 7184384 31498240 21757952 47710208 14229504 47710208 39018496 7184384 32088064 22093824 050905124943 136314880 050905124943 050905124943 44040192 050905124943 050905124943 050905124943 050905124944 050905124944 136314880 050905124944 050905124944 44040192 050905124944 050905124944 050905124944 050905124945 050905124945 136314880 050905124945 050905124945 44040192 050905124945 050905124945 050905124945 050905124946 050905124946 141557760 050905124946 050905124946 44040192 050905124946 050905124946 050905124946 050905124947 050905124947 145752064 050905124947 050905124947 46137344 050905124947 050905124947 050905124947 050905124948 050905124948 145752064 050905124948 050905124948 49283072 050905124948 050905124948 050905124948 050905124949 050905124949 145752064 050905124949 050905124949 49283072 050905124949 050905124949 050905124949 050905124950 050905124950 145752064 050905124950 050905124950 49283072 050905124950 050905124950 050905124950 050905124951 050905124951 149946368 050905124951 050905124951 49283072 050905124951 050905124951 050905124951 050905124952 050905124952 155189248 050905124952 050905124952 49283072 050905124952 050905124952 050905124952 050905124953 050905124953 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 11681792 15173632 6602752 47708160 8547328 32572416 26911744 11681792 15173632 6602752 47708160 8547328 39420928 26911744 11681792 15173632 6602752 47708160 8547328 39420928 26911744 11681792 15173632 6602752 47708160 8547328 39420928 26911744 11681792 15173632 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 11681792 15173632 4571136 47708160 8547328 32572416 26911744 11681792 15173632 4571136 47708160 8547328 39420928 26911744 11681792 15173632 4571136 47708160 8547328 39420928 26911744 11681792 15173632 4571136 47708160 8547328 39420928 26911744 11681792 15173632 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 3720192 14499840 4391936 39763968 7299072 32514048 22306816 5686272 14647296 525312 40148992 7331840 33128448 22822912 9815040 14999552 1704960 41041920 7553024 33333248 22970368 11125760 15138816 2163712 41279488 7585792 33333248 22970368 11125760 15138816 2163712 41279488 7585792 34103296 23330816 3589120 15376384 3343360 42033152 7790592 34553856 23797760 6210560 15671296 1680384 42631168 7856128 35225600 24297472 9356288 15876096 2794496 43335680 7938048 35774464 24772608 12698624 16064512 3908608 44220416 8085504 35774464 24772608 12698624 16064512 3908608 44220416 8085504 35938304 24870912 1024 47710208 14499840 47710208 39763968 7299072 32514048 22306816 47710208 14647296 47710208 40148992 7331840 33128448 22822912 47710208 14999552 47710208 41041920 7553024 33333248 22970368 47710208 15138816 47710208 41279488 7585792 33333248 22970368 47710208 15138816 47710208 41279488 7585792 34103296 23330816 47710208 15376384 47710208 42033152 7790592 34553856 23797760 47710208 15671296 47710208 42631168 7856128 35225600 24297472 47710208 15876096 47710208 43335680 7938048 35774464 24772608 47710208 16064512 47710208 44220416 8085504 35774464 24772608 47710208 16064512 47710208 44220416 8085504 35938304 24870912 47710208 155189248 050905124953 050905124953 49283072 050905124953 050905124953 050905124953 050905124954 050905124954 155189248 050905124954 050905124954 53477376 050905124954 050905124954 050905124954 050905124955 050905124955 155189248 050905124955 050905124955 53477376 050905124955 050905124955 050905124955 050905124956 050905124956 159383552 050905124956 050905124956 53477376 050905124956 050905124956 050905124956 050905124957 050905124957 164626432 050905124957 050905124957 53477376 050905124957 050905124957 050905124957 050905124958 050905124958 165675008 050905124958 050905124958 53477376 050905124958 050905124958 050905124958 050905124959 050905124959 165675008 050905124959 050905124959 56623104 050905124959 050905124959 050905124959 050905125000 050905125000 165675008 050905125000 050905125000 56623104 050905125000 050905125000 050905125000 050905125001 050905125001 165675008 050905125001 050905125001 56623104 050905125001 050905125001 050905125001 050905125002 050905125002 171966464 050905125002 050905125002 56623104 050905125002 050905125002 050905125002 050905125004 050905125004 177209344 050905125004 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 8547328 39420928 26911744 13205504 18368512 6602752 47708160 10350592 39420928 26911744 13205504 18368512 6602752 47708160 10350592 39420928 26911744 13205504 18368512 6602752 47708160 10350592 39420928 26911744 13205504 18368512 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 47708160 8547328 39420928 26911744 13205504 18368512 4571136 6602752 10350592 39420928 26911744 13205504 18368512 4571136 6602752 10350592 39420928 26911744 13205504 18368512 4571136 6602752 10350592 39420928 26911744 13205504 18368512 16121856 4039680 44376064 8110080 36388864 25165824 3015680 16310272 762880 45056000 8208384 36970496 25886720 7341056 16629760 2466816 46112768 8355840 37634048 26402816 10748928 16957440 3580928 46899200 8478720 37953536 26484736 12190720 17154048 4105216 47333376 8503296 37953536 26484736 12190720 17154048 4105216 47333376 8503296 38199296 26566656 1041408 17244160 4301824 47505408 8536064 38412288 26648576 2221056 17367040 508928 47710208 8593408 38412288 26648576 2221056 17367040 508928 47710208 8593408 38412288 26648576 2221056 17367040 508928 47710208 8593408 38412288 26648576 2221056 17367040 16121856 47710208 44376064 8110080 36388864 25165824 47710208 16310272 47710208 45056000 8208384 36970496 25886720 47710208 16629760 47710208 46112768 8355840 37634048 26402816 47710208 16957440 47710208 46899200 8478720 37953536 26484736 47710208 17154048 47710208 47333376 8503296 37953536 26484736 47710208 17154048 47710208 47333376 8503296 38199296 26566656 47710208 17244160 47710208 47505408 8536064 38412288 26648576 47710208 17367040 47710208 47710208 8593408 38412288 26648576 47710208 17367040 47710208 47710208 8593408 38412288 26648576 47710208 17367040 47710208 47710208 8593408 38412288 26648576 47710208 17367040 050905125004 56623104 050905125004 050905125004 050905125004 050905125005 050905125005 177209344 050905125005 050905125005 59768832 050905125005 050905125005 050905125005 050905125006 050905125006 177209344 050905125006 050905125006 59768832 050905125006 050905125006 050905125006 050905125007 050905125007 177209344 050905125007 050905125007 59768832 050905125007 050905125007 050905125007 050905125008 050905125008 180355072 050905125008 050905125008 59768832 050905125008 050905125008 050905125008 050905125009 050905125009 186646528 050905125009 050905125009 59768832 050905125009 050905125009 050905125009 050905125010 050905125010 187695104 050905125010 050905125010 62914560 050905125010 050905125010 050905125010 050905125011 050905125011 187695104 050905125011 050905125011 62914560 050905125011 5242880 050905125011 050905125011 050905125012 050905125012 187695104 050905125012 050905125012 62914560 050905125012 10485760 050905125012 050905125012 050905125013 050905125013 187695104 050905125013 050905125013 62914560 050905125013 16777216 050905125013 050905125013 050905125014 050905125014 187695104 050905125014 050905125014 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 6602752 47708160 10350592 39420928 26911744 13205504 18368512 6602752 47708160 10350592 39420928 26911744 13205504 18368512 6602752 47708160 10350592 39420928 26911744 13205504 18368512 6602752 47708160 10350592 39420928 26911744 13205504 18368512 6602752 6602752 10350592 39420928 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 22234112 6094848 4571136 6602752 10350592 39420928 26911744 13205504 18368512 4571136 6602752 10350592 39420928 26911744 13205504 18368512 4571136 6602752 10350592 39420928 26911744 13205504 18368512 4571136 6602752 10350592 39420928 26911744 13205504 18368512 4571136 6602752 10350592 39420928 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 18368512 6094848 6602752 10350592 47708160 32572416 13205504 22234112 6094848 508928 47710208 8593408 38412288 26648576 2221056 17367040 508928 47710208 8593408 38412288 26648576 2221056 17367040 508928 47710208 8593408 38412288 26648576 2221056 17367040 508928 47710208 8593408 38608896 26804224 3269632 17481728 508928 435200 8642560 39247872 27262976 6611968 17702912 2475008 1336320 8732672 39919616 27746304 9954304 17997824 3523584 2384896 8830976 40534016 28024832 12444672 18186240 4572160 3286016 8888320 40534016 28024832 12444672 18186240 4572160 3286016 8888320 40869888 28155904 1557504 18259968 5096448 3556352 8970240 41189376 28295168 2999296 18391040 5555200 47710208 47710208 8593408 38412288 26648576 47710208 17367040 47710208 47710208 8593408 38412288 26648576 47710208 17367040 47710208 47710208 8593408 38412288 26648576 47710208 17367040 47710208 47710208 8593408 38608896 26804224 47710208 17481728 47710208 47710208 8642560 39247872 27262976 47710208 17702912 47710208 47710208 8732672 39919616 27746304 47710208 17997824 47710208 47710208 8830976 40534016 28024832 47710208 18186240 47710208 47710208 8888320 40534016 28024832 47710208 18186240 47710208 47710208 8888320 40869888 28155904 47710208 18259968 47710208 47710208 8970240 41189376 28295168 47710208 18391040 47710208 62914560 050905125014 22020096 050905125014 050905125014 050905125015 050905125015 187695104 050905125015 050905125015 62914560 050905125015 28311552 050905125015 050905125015 050905125016 050905125016 187695104 050905125016 050905125016 62914560 050905125016 33554432 050905125016 050905125016 050905125017 050905125017 187695104 050905125017 050905125017 62914560 050905125017 39845888 050905125017 050905125017 050905125018 050905125018 187695104 050905125018 050905125018 62914560 050905125018 44040192 050905125018 050905125018 050905125019 050905125019 187695104 050905125019 050905125019 62914560 050905125019 44040192 050905125019 050905125019 050905125020 050905125020 187695104 050905125020 050905125020 62914560 050905125020 44040192 050905125020 050905125020 050905125021 050905125021 188743680 050905125021 050905125021 62914560 050905125021 44040192 050905125021 050905125021 050905125022 050905125022 195035136 050905125022 050905125022 62914560 050905125022 44040192 050905125022 050905125022 050905125023 050905125023 199229440 050905125023 050905125023 62914560 050905125023 44040192 050905125023 050905125023 050905125024 050905125024 199229440 050905125024 050905125024 67108864 050905125024 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 3834880 9035776 41902080 28606464 5948416 18595840 1303552 4383744 9224192 42582016 29204480 9290752 18833408 2417664 5022720 9453568 43008000 29532160 11387904 18997248 3138560 5358592 9584640 43229184 29712384 12567552 19111936 3597312 5571584 9682944 43393024 29786112 13353984 19185664 3793920 5587968 9715712 43606016 29884416 14205952 19234816 3990528 254976 9773056 43606016 29884416 14205952 19234816 3990528 254976 9773056 43606016 29884416 14205952 19234816 3990528 254976 9773056 43868160 30007296 1745920 19349504 4252672 582656 9814016 44089344 30121984 2925568 19464192 4645888 779264 47710208 9035776 41902080 28606464 47710208 18595840 47710208 47710208 9224192 42582016 29204480 47710208 18833408 47710208 47710208 9453568 43008000 29532160 47710208 18997248 47710208 47710208 9584640 43229184 29712384 47710208 19111936 47710208 47710208 9682944 43393024 29786112 47710208 19185664 47710208 47710208 9715712 43606016 29884416 47710208 19234816 47710208 47710208 9773056 43606016 29884416 47710208 19234816 47710208 47710208 9773056 43606016 29884416 47710208 19234816 47710208 47710208 9773056 43868160 30007296 47710208 19349504 47710208 47710208 9814016 44089344 30121984 47710208 19464192 47710208 47710208 44040192 050905125024 050905125024 050905125025 050905125025 199229440 050905125025 050905125025 68157440 050905125025 44040192 050905125025 050905125025 050905125026 050905125026 199229440 050905125026 050905125026 68157440 050905125026 44040192 050905125026 050905125026 050905125027 050905125027 199229440 050905125027 050905125027 68157440 050905125027 44040192 050905125027 050905125027 050905125028 050905125028 199229440 050905125028 050905125028 68157440 050905125028 44040192 050905125028 050905125028 050905125029 050905125029 199229440 050905125029 050905125029 68157440 050905125029 49283072 050905125029 050905125029 050905125030 050905125030 200278016 050905125030 050905125030 68157440 050905125030 49283072 050905125030 050905125030 050905125031 050905125031 205520896 050905125031 050905125031 68157440 050905125031 49283072 050905125031 050905125031 050905125032 050905125032 210763776 050905125032 050905125032 68157440 050905125032 49283072 050905125032 050905125032 050905125033 050905125033 211812352 050905125033 050905125033 68157440 050905125033 49283072 050905125033 050905125033 050905125034 050905125034 211812352 050905125034 050905125034 68157440 050905125034 49283072 050905125034 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 47708160 32572416 14729216 22234112 6094848 6602752 10350592 9871360 44433408 30294016 4760576 19595264 5301248 1238016 9969664 44589056 30416896 5678080 19636224 762880 1565696 10002432 45228032 30883840 8299520 19800064 1942528 2352128 10108928 45899776 31424512 11707392 20135936 3187712 3204096 10215424 46047232 31604736 12755968 20258816 3580928 3400704 10248192 46145536 31727616 13542400 20348928 3777536 3662848 10272768 46292992 31858688 14459904 20422656 4039680 3793920 10313728 46292992 31858688 14459904 20422656 4039680 3793920 10313728 46292992 31858688 14459904 20422656 4039680 3793920 10313728 46374912 31924224 762880 20496384 4170752 3924992 10338304 9871360 44433408 30294016 47710208 19595264 47710208 47710208 9969664 44589056 30416896 47710208 19636224 47710208 47710208 10002432 45228032 30883840 47710208 19800064 47710208 47710208 10108928 45899776 31424512 47710208 20135936 47710208 47710208 10215424 46047232 31604736 47710208 20258816 47710208 47710208 10248192 46145536 31727616 47710208 20348928 47710208 47710208 10272768 46292992 31858688 47710208 20422656 47710208 47710208 10313728 46292992 31858688 47710208 20422656 47710208 47710208 10313728 46292992 31858688 47710208 20422656 47710208 47710208 10313728 46374912 31924224 47710208 20496384 47710208 47710208 10338304 211812352 68157440 49283072 211812352 72351744 49283072 211812352 72351744 49283072 211812352 72351744 49283072 211812352 72351744 49283072 211812352 72351744 49283072 212860928 72351744 49283072 218103808 72351744 49283072 224395264 72351744 49283072 224395264 72351744 49283072 050905125034 050905125035 050905125035 050905125035 050905125035 050905125035 050905125035 050905125035 050905125036 050905125036 050905125036 050905125036 050905125036 050905125036 050905125036 050905125037 050905125037 050905125037 050905125037 050905125037 050905125037 050905125037 050905125038 050905125038 050905125038 050905125038 050905125038 050905125038 050905125038 050905125039 050905125039 050905125039 050905125039 050905125039 050905125039 050905125039 050905125040 050905125040 050905125040 050905125040 050905125040 050905125040 050905125040 050905125042 050905125042 050905125042 050905125042 050905125042 050905125042 050905125042 050905125043 050905125043 050905125043 050905125043 050905125043 050905125043 050905125043 050905125044 050905125044 050905125044 050905125044 050905125044 050905125044 050905125044 050905125045 050905125045 050905125045 050905125045 050905125045 050905125045 050905125045 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 47708160 32572416 14729216 22234112 6094848 6602752 12532736 47708160 32572416 14729216 22234112 6094848 6602752 12532736 47708160 32572416 14729216 22234112 6094848 6602752 12532736 47708160 32572416 14729216 22234112 6094848 6602752 12532736 47708160 39420928 14729216 22234112 6094848 6602752 12532736 47708160 39420928 14729216 22234112 6094848 6602752 12532736 47708160 39420928 14729216 22234112 6094848 6602752 12532736 47708160 39420928 14729216 22234112 7618560 6602752 12532736 47708160 39420928 14729216 22234112 7618560 6602752 12532736 47708160 39420928 14729216 22234112 7618560 6602752 12532736 47708160 47708160 32572416 14729216 22234112 6094848 6602752 12532736 47708160 32572416 14729216 22234112 6094848 6602752 12532736 47708160 32572416 14729216 22234112 6094848 6602752 12532736 47708160 32572416 14729216 22234112 6094848 4571136 12532736 47708160 39420928 14729216 22234112 6094848 4571136 12532736 47708160 39420928 14729216 22234112 6094848 4571136 12532736 47708160 39420928 14729216 22234112 6094848 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 46440448 31989760 2270208 20553728 4367360 4056064 10371072 46538752 32096256 2991104 20594688 4629504 4252672 10403840 46563328 32104448 3253248 20611072 4695040 4318208 10412032 46940160 32391168 5219328 20709376 5219328 4645888 10436608 47218688 32768000 7316480 20840448 5809152 582656 10493952 47480832 33038336 9020416 20971520 508928 910336 10559488 47521792 33087488 9217024 20987904 508928 1041408 10584064 47710208 33292288 10593280 21118976 1557504 1303552 10649600 47710208 33325056 10986496 21151744 1623040 1369088 10665984 47710208 33357824 11117568 21151744 1688576 1369088 10674176 47710208 46440448 31989760 47710208 20553728 47710208 47710208 10371072 46538752 32096256 47710208 20594688 47710208 47710208 10403840 46563328 32104448 47710208 20611072 47710208 47710208 10412032 46940160 32391168 47710208 20709376 47710208 47710208 10436608 47218688 32768000 47710208 20840448 47710208 47710208 10493952 47480832 33038336 47710208 20971520 47710208 47710208 10559488 47521792 33087488 47710208 20987904 47710208 47710208 10584064 47710208 33292288 47710208 21118976 47710208 47710208 10649600 47710208 33325056 47710208 21151744 47710208 47710208 10665984 47710208 33357824 47710208 21151744 47710208 47710208 10674176 47710208 224395264 72351744 49283072 224395264 72351744 49283072 224395264 72351744 49283072 224395264 72351744 52428800 224395264 74448896 53477376 224395264 77594624 53477376 224395264 77594624 53477376 3145728 224395264 77594624 53477376 8388608 224395264 77594624 53477376 14680064 224395264 77594624 53477376 20971520 050905125046 050905125046 050905125046 050905125046 050905125046 050905125046 050905125046 050905125047 050905125047 050905125047 050905125047 050905125047 050905125047 050905125047 050905125048 050905125048 050905125048 050905125048 050905125048 050905125048 050905125048 050905125049 050905125049 050905125049 050905125049 050905125049 050905125049 050905125049 050905125050 050905125050 050905125050 050905125050 050905125050 050905125050 050905125050 050905125051 050905125051 050905125051 050905125051 050905125051 050905125051 050905125051 050905125052 050905125052 050905125052 050905125052 050905125052 050905125052 050905125052 050905125053 050905125053 050905125053 050905125053 050905125053 050905125053 050905125053 050905125054 050905125054 050905125054 050905125054 050905125054 050905125054 050905125054 050905125055 050905125055 050905125055 050905125055 050905125055 050905125055 050905125055 050905125056 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 39420928 14729216 22234112 7618560 6602752 12532736 47708160 39420928 14729216 22234112 7618560 6602752 12532736 47708160 39420928 14729216 22234112 7618560 6602752 12532736 47708160 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 33357824 11117568 21151744 1688576 1369088 10674176 47710208 33357824 11117568 21151744 1688576 1369088 10674176 47710208 33357824 11117568 21151744 1688576 1369088 10674176 47710208 33357824 11117568 21151744 1688576 1369088 10674176 885760 33423360 11576320 21200896 1885184 1500160 10706944 1172480 33628160 13214720 21315584 2409472 1958912 10747904 1360896 33824768 14459904 21372928 2868224 2221056 10772480 1360896 33824768 14459904 21372928 2868224 2221056 10772480 1598464 33964032 1745920 21471232 3326976 2417664 10805248 1819648 34144256 2991104 21569536 3785728 2745344 10903552 2352128 34390016 33357824 47710208 21151744 47710208 47710208 10674176 47710208 33357824 47710208 21151744 47710208 47710208 10674176 47710208 33357824 47710208 21151744 47710208 47710208 10674176 47710208 33357824 47710208 21151744 47710208 47710208 10674176 47710208 33423360 47710208 21200896 47710208 47710208 10706944 47710208 33628160 47710208 21315584 47710208 47710208 10747904 47710208 33824768 47710208 21372928 47710208 47710208 10772480 47710208 33824768 47710208 21372928 47710208 47710208 10772480 47710208 33964032 47710208 21471232 47710208 47710208 10805248 47710208 34144256 47710208 21569536 47710208 47710208 10903552 47710208 34390016 050905125056 224395264 050905125056 050905125056 77594624 050905125056 53477376 050905125056 050905125056 27262976 050905125057 050905125057 224395264 050905125057 050905125057 77594624 050905125057 53477376 050905125057 050905125057 32505856 050905125058 050905125058 224395264 050905125058 050905125058 77594624 050905125058 53477376 050905125058 050905125058 38797312 050905125059 050905125059 224395264 050905125059 050905125059 77594624 050905125059 53477376 050905125059 050905125059 44040192 050905125100 050905125100 224395264 050905125100 050905125100 77594624 050905125100 53477376 050905125100 050905125100 44040192 050905125101 050905125101 224395264 050905125101 050905125101 77594624 050905125101 53477376 050905125101 050905125101 44040192 050905125102 050905125102 226492416 050905125102 050905125102 77594624 050905125102 53477376 050905125102 050905125102 44040192 050905125103 050905125103 232783872 050905125103 050905125103 77594624 050905125103 53477376 050905125103 050905125103 44040192 050905125104 050905125104 236978176 050905125104 050905125104 77594624 050905125104 53477376 050905125104 050905125104 44040192 050905125105 050905125105 236978176 050905125105 050905125105 77594624 050905125105 53477376 050905125105 050905125105 44040192 050905125106 050905125106 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 14729216 22234112 7618560 6602752 12532736 6602752 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 14729216 22234112 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 14729216 22234112 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 5678080 21889024 4572160 3269632 11001856 2810880 34627584 7906304 22126592 5358592 3793920 11116544 2933760 34668544 8430592 22200320 5555200 1024 11165696 3474432 35028992 11969536 22536192 6603776 918528 11329536 3703808 35209216 13673472 22650880 7062528 1246208 11378688 4113408 35536896 16491520 22757376 1680384 1639424 11452416 4113408 35536896 16491520 22757376 1680384 1639424 11452416 4113408 35536896 16491520 22757376 1680384 1639424 11452416 4670464 35889152 3015680 22986752 2401280 2294784 11583488 5366784 36241408 6423552 23175168 3515392 3081216 11673600 5874688 36511744 8389632 47710208 21889024 47710208 47710208 11001856 47710208 34627584 47710208 22126592 47710208 47710208 11116544 47710208 34668544 47710208 22200320 47710208 47710208 11165696 47710208 35028992 47710208 22536192 47710208 47710208 11329536 47710208 35209216 47710208 22650880 47710208 47710208 11378688 47710208 35536896 47710208 22757376 47710208 47710208 11452416 47710208 35536896 47710208 22757376 47710208 47710208 11452416 47710208 35536896 47710208 22757376 47710208 47710208 11452416 47710208 35889152 47710208 22986752 47710208 47710208 11583488 47710208 36241408 47710208 23175168 47710208 47710208 11673600 47710208 36511744 47710208 236978176 050905125106 050905125106 77594624 050905125106 53477376 050905125106 050905125106 44040192 050905125107 050905125107 236978176 050905125107 050905125107 77594624 050905125107 55574528 050905125107 050905125107 44040192 050905125108 050905125108 236978176 050905125108 050905125108 77594624 050905125108 56623104 050905125108 050905125108 44040192 050905125109 050905125109 236978176 050905125109 050905125109 77594624 050905125109 56623104 050905125109 050905125109 44040192 050905125111 050905125111 236978176 050905125111 050905125111 80740352 050905125111 56623104 050905125111 050905125111 44040192 050905125112 050905125112 239075328 050905125112 050905125112 83886080 050905125112 56623104 050905125112 050905125112 44040192 050905125113 050905125113 245366784 050905125113 050905125113 83886080 050905125113 56623104 050905125113 050905125113 44040192 050905125114 050905125114 250609664 050905125114 050905125114 83886080 050905125114 56623104 050905125114 050905125114 44040192 050905125115 050905125115 251658240 050905125115 050905125115 83886080 050905125115 56623104 050905125115 050905125115 44040192 050905125116 050905125116 251658240 050905125116 050905125116 83886080 050905125116 56623104 050905125116 050905125116 44040192 050905125117 050905125117 251658240 050905125117 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 12532736 6602752 39420928 16760832 26911744 7618560 6602752 15173632 6602752 39420928 16760832 26911744 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 12532736 6602752 39420928 16760832 26911744 7618560 4571136 15173632 6602752 39420928 16760832 26911744 23298048 4170752 3539968 11722752 6349824 36823040 11404288 23609344 5153792 975872 11821056 1549312 37388288 15139840 24018944 6398976 1762304 11984896 1680384 37470208 15729664 24068096 6661120 1958912 12001280 1680384 37470208 15729664 24068096 6661120 1958912 12001280 1942528 37584896 1557504 24141824 6988800 2221056 12017664 2204672 37715968 2933760 24297472 7316480 2483200 12148736 3187712 38379520 7455744 24715264 2532352 3793920 12435456 3843072 38690816 10667008 24887296 3515392 656384 12484608 4498432 39034880 14205952 25214976 4891648 1311744 12615680 4826112 39362560 16237568 25337856 23298048 47710208 47710208 11722752 47710208 36823040 47710208 23609344 47710208 47710208 11821056 47710208 37388288 47710208 24018944 47710208 47710208 11984896 47710208 37470208 47710208 24068096 47710208 47710208 12001280 47710208 37470208 47710208 24068096 47710208 47710208 12001280 47710208 37584896 47710208 24141824 47710208 47710208 12017664 47710208 37715968 47710208 24297472 47710208 47710208 12148736 47710208 38379520 47710208 24715264 47710208 47710208 12435456 47710208 38690816 47710208 24887296 47710208 47710208 12484608 47710208 39034880 47710208 25214976 47710208 47710208 12615680 47710208 39362560 47710208 25337856 050905125117 83886080 050905125117 59768832 050905125117 050905125117 47185920 050905125118 050905125118 251658240 050905125118 050905125118 83886080 050905125118 60817408 050905125118 050905125118 49283072 050905125119 050905125119 251658240 050905125119 050905125119 83886080 050905125119 60817408 050905125119 050905125119 49283072 050905125120 050905125120 256901120 050905125120 050905125120 83886080 050905125120 60817408 050905125120 050905125120 49283072 050905125121 050905125121 262144000 050905125121 050905125121 83886080 050905125121 60817408 050905125121 050905125121 49283072 050905125122 050905125122 266338304 050905125122 050905125122 83886080 050905125122 60817408 050905125122 050905125122 49283072 050905125123 050905125123 266338304 050905125123 050905125123 87031808 050905125123 60817408 050905125123 050905125123 49283072 050905125124 050905125124 266338304 050905125124 050905125124 89128960 050905125124 61865984 050905125124 050905125124 49283072 050905125125 050905125125 266338304 050905125125 050905125125 89128960 050905125125 63963136 050905125125 050905125125 49283072 050905125126 050905125126 266338304 050905125126 050905125126 89128960 050905125126 63963136 050905125126 050905125126 49283072 050905125127 050905125127 269484032 050905125127 050905125127 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 7618560 6094848 15173632 6602752 39420928 16760832 26911744 7618560 6094848 15173632 6602752 39420928 16760832 26911744 7618560 6094848 15173632 6602752 47708160 16760832 26911744 8634368 6094848 15173632 6602752 47708160 16760832 26911744 8634368 6094848 15173632 6602752 47708160 16760832 26911744 8634368 6094848 15173632 6602752 47708160 16760832 26911744 8634368 6094848 15173632 6602752 47708160 16760832 26911744 8634368 6094848 15173632 6602752 47708160 16760832 26911744 8634368 6094848 15173632 6602752 47708160 16760832 26911744 8634368 6094848 15173632 6602752 47708160 16760832 26911744 8634368 7618560 6094848 15173632 6602752 39420928 16760832 26911744 7618560 6094848 15173632 6602752 39420928 16760832 26911744 7618560 6094848 15173632 4571136 47708160 16760832 26911744 8634368 6094848 15173632 4571136 47708160 16760832 26911744 8634368 6094848 15173632 4571136 47708160 16760832 26911744 8634368 6094848 15173632 4571136 47708160 16760832 26911744 8634368 6094848 15173632 4571136 47708160 16760832 26911744 8634368 6094848 15173632 4571136 47708160 16760832 26911744 8634368 6094848 15173632 4571136 47708160 16760832 26911744 8634368 6094848 15173632 4571136 47708160 16760832 26911744 8634368 5547008 1639424 12681216 4826112 39362560 16237568 25337856 5547008 1639424 12681216 4891648 39395328 762880 25346048 5612544 1704960 12705792 5153792 39559168 2794496 25501696 6202368 2032640 12771328 762880 40091648 6595584 25821184 7513088 3015680 12976128 1811456 40435712 8889344 26034176 8365056 3671040 13017088 2204672 40656896 10789888 26320896 254976 4064256 13115392 2991104 41287680 14984192 26771456 2483200 4850688 13254656 3253248 41394176 16425984 26894336 3007488 5047296 13320192 3253248 41410560 16491520 26902528 3007488 508928 13336576 3253248 41410560 16491520 26902528 3007488 47710208 47710208 12681216 47710208 39362560 47710208 25337856 47710208 47710208 12681216 47710208 39395328 47710208 25346048 47710208 47710208 12705792 47710208 39559168 47710208 25501696 47710208 47710208 12771328 47710208 40091648 47710208 25821184 47710208 47710208 12976128 47710208 40435712 47710208 26034176 47710208 47710208 13017088 47710208 40656896 47710208 26320896 47710208 47710208 13115392 47710208 41287680 47710208 26771456 47710208 47710208 13254656 47710208 41394176 47710208 26894336 47710208 47710208 13320192 47710208 41410560 47710208 26902528 47710208 47710208 13336576 47710208 41410560 47710208 26902528 47710208 89128960 050905125127 63963136 050905125127 050905125127 49283072 050905125128 050905125128 274726912 050905125128 050905125128 89128960 050905125128 63963136 050905125128 050905125128 49283072 050905125129 050905125129 281018368 050905125129 050905125129 89128960 050905125129 63963136 050905125129 050905125129 52428800 050905125130 050905125130 281018368 050905125130 050905125130 89128960 050905125130 63963136 050905125130 050905125130 53477376 050905125131 050905125131 281018368 050905125131 050905125131 89128960 050905125131 63963136 050905125131 050905125131 53477376 050905125132 050905125132 281018368 050905125132 050905125132 91226112 050905125132 63963136 050905125132 050905125132 53477376 050905125133 050905125133 281018368 050905125133 050905125133 96468992 050905125133 63963136 050905125133 050905125133 53477376 050905125134 050905125134 281018368 050905125134 050905125134 96468992 050905125134 63963136 050905125134 050905125134 53477376 050905125135 050905125135 281018368 050905125135 050905125135 96468992 050905125135 67108864 050905125135 050905125135 53477376 050905125136 050905125136 286261248 050905125136 050905125136 96468992 050905125136 68157440 050905125136 050905125136 53477376 050905125137 050905125137 291504128 050905125137 050905125137 96468992 050905125137 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 508928 13336576 3580928 41558016 2270208 27000832 3597312 1033216 13385728 4236288 41844736 5809152 27230208 4842496 1688576 13688832 508928 42205184 8299520 27394048 5628928 2212864 13803520 1295360 42762240 11183104 27680768 6677504 2868224 13860864 1491968 43024384 13804544 27910144 7398400 3261440 13975552 1819648 43245568 15246336 28073984 7857152 3654656 14041088 1819648 43245568 15246336 28073984 508928 3654656 14041088 2016256 43368448 16425984 28131328 508928 3982336 14131200 2212864 43474944 17474560 28213248 508928 4244480 14221312 2278400 43548672 17998848 28278784 1491968 4375552 47710208 13336576 47710208 41558016 47710208 27000832 47710208 47710208 13385728 47710208 41844736 47710208 27230208 47710208 47710208 13688832 47710208 42205184 47710208 27394048 47710208 47710208 13803520 47710208 42762240 47710208 27680768 47710208 47710208 13860864 47710208 43024384 47710208 27910144 47710208 47710208 13975552 47710208 43245568 47710208 28073984 47710208 47710208 14041088 47710208 43245568 47710208 28073984 47710208 47710208 14041088 47710208 43368448 47710208 28131328 47710208 47710208 14131200 47710208 43474944 47710208 28213248 47710208 47710208 14221312 47710208 43548672 47710208 28278784 47710208 47710208 68157440 050905125137 050905125137 53477376 050905125138 050905125138 294649856 050905125138 050905125138 96468992 050905125138 68157440 050905125138 050905125138 53477376 050905125139 050905125139 294649856 050905125139 050905125139 96468992 050905125139 68157440 050905125139 050905125139 56623104 050905125140 050905125140 294649856 050905125140 050905125140 96468992 050905125140 68157440 050905125140 050905125140 56623104 050905125141 050905125141 294649856 050905125141 050905125141 96468992 050905125141 68157440 050905125141 050905125141 56623104 050905125142 050905125142 294649856 050905125142 050905125142 96468992 050905125142 68157440 050905125142 050905125142 56623104 050905125143 050905125143 294649856 050905125143 050905125143 99614720 050905125143 68157440 050905125143 050905125143 56623104 050905125144 050905125144 294649856 050905125144 050905125144 103809024 050905125144 68157440 050905125144 050905125144 56623104 050905125145 050905125145 294649856 050905125145 050905125145 103809024 050905125145 68157440 050905125145 050905125145 56623104 050905125146 050905125146 294649856 050905125146 050905125146 103809024 050905125146 68157440 050905125146 050905125146 56623104 050905125148 050905125148 298844160 050905125148 050905125148 103809024 050905125148 68157440 050905125148 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 47708160 18284544 32572416 8634368 6094848 15173632 6602752 44474368 18284544 29122560 8634368 6094848 14647296 6602752 44474368 18284544 29122560 8634368 4571136 14647296 2539520 44474368 18284544 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 47708160 18284544 32572416 8634368 6094848 15173632 4571136 44474368 18284544 29122560 8634368 6094848 14647296 4571136 44474368 18284544 29122560 8634368 4571136 14647296 2539520 44474368 18284544 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 14245888 2278400 43548672 17998848 28278784 1491968 4375552 14245888 2278400 43548672 17998848 28278784 1491968 4375552 14245888 2343936 43589632 1024 28303360 1623040 4506624 14254080 2999296 43966464 5178368 28893184 3326976 5555200 14458880 3589120 44474368 8717312 29122560 4375552 910336 14647296 3589120 44474368 8717312 29122560 4375552 5335040 14647296 1024 44474368 8717312 29122560 7875584 5335040 14647296 2540544 44474368 508928 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 14245888 47710208 43548672 47710208 28278784 47710208 47710208 14245888 47710208 43548672 47710208 28278784 47710208 47710208 14245888 47710208 43589632 47710208 28303360 47710208 47710208 14254080 47710208 43966464 47710208 28893184 47710208 47710208 14458880 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 050905125148 56623104 050905125149 050905125149 303038464 050905125149 050905125149 103809024 050905125149 68157440 050905125149 050905125149 56623104 050905125150 050905125150 307232768 050905125150 050905125150 103809024 050905125150 68157440 050905125150 050905125150 56623104 050905125151 050905125151 311427072 050905125151 050905125151 103809024 050905125151 68157440 050905125151 050905125151 56623104 050905125152 050905125152 311427072 050905125152 050905125152 103809024 050905125152 70254592 050905125152 050905125152 56623104 050905125153 050905125153 311427072 050905125153 050905125153 103809024 050905125153 73400320 050905125153 050905125153 57671680 050905125154 050905125154 312475648 050905125154 050905125154 104857600 050905125154 73400320 050905125154 050905125154 59768832 050905125155 050905125155 314572800 050905125155 050905125155 106954752 050905125155 73400320 050905125155 050905125155 59768832 050905125156 050905125156 318767104 050905125156 050905125156 106954752 050905125156 73400320 050905125156 050905125156 59768832 050905125157 050905125157 318767104 050905125157 050905125157 106954752 050905125157 73400320 050905125157 050905125157 59768832 050905125158 050905125158 318767104 050905125158 050905125158 106954752 050905125158 73400320 050905125158 050905125158 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 59768832 050905125159 050905125159 318767104 050905125159 050905125159 106954752 050905125159 73400320 050905125159 050905125159 59768832 050905125200 050905125200 318767104 050905125200 050905125200 106954752 050905125200 73400320 050905125200 050905125200 59768832 050905125201 050905125201 318767104 050905125201 050905125201 106954752 050905125201 73400320 050905125201 050905125201 59768832 050905125202 050905125202 318767104 050905125202 050905125202 106954752 050905125202 73400320 050905125202 050905125202 59768832 050905125203 050905125203 318767104 050905125203 050905125203 106954752 050905125203 73400320 050905125203 050905125203 59768832 050905125204 050905125204 318767104 050905125204 050905125204 106954752 050905125204 73400320 050905125204 050905125204 59768832 050905125205 050905125205 318767104 050905125205 050905125205 106954752 050905125205 73400320 050905125205 050905125205 59768832 050905125206 050905125206 318767104 050905125206 050905125206 106954752 050905125206 73400320 050905125206 050905125206 59768832 050905125207 050905125207 318767104 050905125207 050905125207 106954752 050905125207 73400320 050905125207 050905125207 59768832 050905125208 050905125208 318767104 050905125208 050905125208 106954752 050905125208 73400320 050905125208 050905125208 59768832 050905125209 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 629 627 632 628 631 630 626 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 16252928 29122560 7110656 4571136 14647296 2539520 44474368 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 16765952 29122560 7875584 5335040 14647296 2540544 44474368 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 14647296 47710208 44474368 050905125209 318767104 050905125209 050905125209 106954752 050905125209 73400320 050905125209 050905125209 59768832 050905125210 050905125210 318767104 050905125210 050905125210 106954752 050905125210 73400320 050905125210 050905125210 59768832 050905125211 050905125211 318767104 050905125211 050905125211 106954752 050905125211 73400320 050905125211 050905125211 59768832 050905125212 050905125212 318767104 050905125212 050905125212 106954752 050905125212 73400320 050905125212 050905125212 59768832 050905125213 050905125213 318767104 050905125213 050905125213 106954752 050905125213 73400320 050905125213 050905125213 59768832 050905125214 050905125214 318767104 050905125214 050905125214 106954752 050905125214 73400320 050905125214 050905125214 59768832 050905125215 050905125215 318767104 050905125215 050905125215 106954752 050905125215 73400320 050905125215 050905125215 59768832 050905125216 050905125216 318767104 050905125216 050905125216 106954752 050905125216 73400320 050905125216 050905125216 59768832 050905125217 050905125217 318767104 050905125217 050905125217 106954752 050905125217 73400320 050905125217 050905125217 59768832 050905125218 050905125218 318767104 050905125218 050905125218 106954752 050905125218 73400320 050905125218 050905125218 59768832 050905125219 050905125219 629 627 628 631 630 626 629 627 628 631 630 626 629 627 628 631 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 630 626 629 627 628 16252928 29122560 4571136 14647296 2539520 44474368 16252928 29122560 4571136 14647296 2539520 44474368 16252928 29122560 4571136 14647296 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 16252928 29122560 4571136 14647296 2539520 44474368 16252928 29122560 4571136 14647296 2539520 44474368 16252928 29122560 4571136 14647296 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 2539520 44474368 16252928 29122560 4571136 16765952 29122560 5335040 14647296 2540544 44474368 16765952 29122560 5335040 14647296 2540544 44474368 16765952 29122560 5335040 14647296 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 2540544 44474368 16765952 29122560 5335040 47710208 29122560 47710208 14647296 47710208 44474368 47710208 29122560 47710208 14647296 47710208 44474368 47710208 29122560 47710208 14647296 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 47710208 44474368 47710208 29122560 47710208 318767104 050905125219 050905125219 73400320 050905125219 050905125219 59768832 050905125220 050905125220 318767104 050905125220 050905125220 73400320 050905125220 050905125220 59768832 050905125222 050905125222 318767104 050905125222 050905125222 73400320 050905125222 050905125222 59768832 050905125223 050905125223 318767104 050905125223 050905125223 73400320 050905125223 59768832 050905125224 050905125224 318767104 050905125224 050905125224 73400320 050905125224 59768832 050905125225 050905125225 318767104 050905125225 050905125225 73400320 050905125225 59768832 050905125226 050905125226 318767104 050905125226 050905125226 73400320 050905125226 59768832 050905125227 050905125227 318767104 050905125227 050905125227 73400320 050905125227 59768832 050905125228 050905125228 318767104 050905125228 050905125228 73400320 050905125228 59768832 050905125229 050905125229 318767104 050905125229 050905125229 73400320 050905125229 59768832 050905125230 050905125230 318767104 050905125230 050905125230 73400320 050905125230 59768832 050905125231 050905125231 318767104 050905125231 050905125231 73400320 050905125231 59768832 050905125232 050905125232 318767104 050905125232 050905125232 73400320 050905125232 59768832 050905125233 050905125233 318767104 050905125233 050905125233 73400320 050905125233 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 050905125234 318767104 050905125234 050905125234 73400320 050905125234 050905125235 318767104 050905125235 050905125235 73400320 050905125235 050905125236 318767104 050905125236 050905125236 73400320 050905125236 050905125237 318767104 050905125237 050905125237 73400320 050905125237 050905125238 318767104 050905125238 050905125238 73400320 050905125238 050905125239 318767104 050905125239 050905125239 73400320 050905125239 050905125240 318767104 050905125240 050905125240 73400320 050905125240 050905125241 318767104 050905125241 050905125241 73400320 050905125241 050905125242 318767104 050905125242 050905125242 73400320 050905125242 050905125243 318767104 050905125243 050905125243 73400320 050905125243 050905125244 318767104 050905125244 050905125244 73400320 050905125244 050905125245 318767104 050905125245 050905125245 73400320 050905125245 050905125246 318767104 050905125246 050905125246 73400320 050905125246 050905125247 318767104 050905125247 050905125247 73400320 050905125247 050905125248 318767104 050905125248 050905125248 73400320 050905125248 050905125249 318767104 050905125249 050905125249 73400320 050905125249 050905125250 318767104 050905125250 050905125250 73400320 050905125250 050905125251 318767104 050905125251 050905125251 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 73400320 050905125251 050905125252 318767104 050905125252 050905125252 73400320 050905125252 050905125253 318767104 050905125253 050905125253 73400320 050905125253 050905125254 318767104 050905125254 050905125254 73400320 050905125254 050905125255 318767104 050905125255 050905125255 73400320 050905125255 050905125256 318767104 050905125256 050905125256 73400320 050905125256 050905125257 318767104 050905125257 050905125257 73400320 050905125257 050905125258 318767104 050905125258 050905125258 73400320 050905125258 050905125300 318767104 050905125300 050905125300 73400320 050905125300 050905125301 318767104 050905125301 050905125301 73400320 050905125301 050905125302 318767104 050905125302 050905125302 73400320 050905125302 050905125303 318767104 050905125303 050905125303 73400320 050905125303 050905125304 318767104 050905125304 050905125304 73400320 050905125304 050905125305 318767104 050905125305 050905125305 73400320 050905125305 050905125306 318767104 050905125306 050905125306 73400320 050905125306 050905125307 318767104 050905125307 050905125307 73400320 050905125307 050905125308 318767104 050905125308 050905125308 73400320 050905125308 050905125309 318767104 050905125309 050905125309 73400320 050905125309 050905125310 318767104 050905125310 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 050905125310 73400320 050905125310 050905125311 318767104 050905125311 050905125311 73400320 050905125311 050905125312 318767104 050905125312 050905125312 73400320 050905125312 050905125313 318767104 050905125313 050905125313 73400320 050905125313 050905125314 318767104 050905125314 050905125314 73400320 050905125314 050905125315 318767104 050905125315 050905125315 73400320 050905125315 050905125316 318767104 050905125316 050905125316 73400320 050905125316 050905125317 318767104 050905125317 050905125317 73400320 050905125317 050905125318 318767104 050905125318 050905125318 73400320 050905125318 050905125319 318767104 050905125319 050905125319 73400320 050905125319 050905125320 318767104 050905125320 050905125320 73400320 050905125320 050905125321 318767104 050905125321 050905125321 73400320 050905125321 050905125322 318767104 050905125322 050905125322 73400320 050905125322 050905125323 318767104 050905125323 050905125323 73400320 050905125323 050905125324 318767104 050905125324 050905125324 73400320 050905125324 050905125325 318767104 050905125325 050905125325 73400320 050905125325 050905125326 318767104 050905125326 050905125326 73400320 050905125326 050905125327 318767104 050905125327 050905125327 73400320 050905125327 050905125328 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 629 627 628 626 627 628 626 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 16252928 29122560 4571136 44474368 29122560 4571136 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 16765952 29122560 5335040 44474368 29122560 5335040 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 47710208 29122560 47710208 44474368 29122560 47710208 44474368 318767104 050905125328 050905125328 73400320 050905125328 050905125329 318767104 050905125329 050905125329 73400320 050905125329 050905125330 318767104 050905125330 050905125330 73400320 050905125330 050905125331 318767104 050905125331 050905125331 73400320 050905125331 050905125332 318767104 050905125332 050905125332 73400320 050905125332 050905125333 318767104 050905125333 050905125333 73400320 050905125333 050905125334 318767104 050905125334 050905125334 73400320 050905125334 050905125335 318767104 050905125335 050905125335 73400320 050905125335 050905125336 318767104 050905125336 050905125336 73400320 050905125336 050905125337 318767104 050905125337 050905125337 73400320 050905125337 050905125339 318767104 050905125339 050905125339 73400320 050905125339 050905125340 318767104 050905125340 050905125340 73400320 050905125340 050905125341 318767104 050905125341 050905125341 73400320 050905125341 050905125342 318767104 050905125342 050905125342 73400320 050905125342 050905125343 318767104 050905125343 050905125343 73400320 050905125343 050905125344 318767104 050905125344 050905125344 73400320 050905125344 050905125345 318767104 050905125345 050905125345 73400320 050905125345 050905125346 050905125346 73400320 050905125346 050905125347 627 628 626 627 628 626 627 628 626 627 628 626 627 628 626 627 628 626 627 628 626 627 628 626 627 628 626 627 628 626 627 628 626 627 628 626 627 626 627 626 627 626 627 626 626 626 626 626 626 626 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 44474368 29122560 44474368 29122560 44474368 29122560 44474368 44474368 44474368 44474368 44474368 44474368 44474368 1961 rows selected. SQL> spool of 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 4571136 44474368 29122560 44474368 29122560 44474368 29122560 44474368 29122560 44474368 44474368 44474368 44474368 44474368 44474368 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 5335040 44474368 29122560 44474368 29122560 44474368 29122560 44474368 29122560 44474368 44474368 44474368 44474368 44474368 44474368 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 47710208 44474368 29122560 44474368 29122560 44474368 29122560 44474368 29122560 44474368 44474368 44474368 44474368 44474368 44474368 44474368 050905125347 73400320 050905125347 050905125348 050905125348 73400320 050905125348 050905125349 050905125349 73400320 050905125349 050905125350 050905125350 73400320 050905125350 050905125351 050905125351 73400320 050905125351 050905125352 050905125352 73400320 050905125352 050905125353 050905125353 73400320 050905125353 050905125354 050905125354 73400320 050905125354 050905125355 050905125355 73400320 050905125355 050905125356 050905125356 73400320 050905125356 050905125357 050905125357 73400320 050905125357 050905125358 050905125358 73400320 050905125358 050905125359 050905125359 050905125400 050905125400 050905125401 050905125401 050905125402 050905125402 050905125403 050905125404 050905125405 050905125406 050905125407 050905125408 050905125409 DOP 7 Predicted 47.57143 Timestamp Actual 42.4140625 50905125348 50905125319 50905125250 50905125222 50905125153 50905125124 50905125055 50905125026 50905124957 50905124929 Session 626 Session 627 Session 628 Session 629 Session 630 Session 631 Session 632 50905124900 60000000 50000000 40000000 30000000 20000000 10000000 0 50905124831 Memory (Bytes) Session Sort Size 7 DOP