---------------------------------------------------------------------------------------- -- -- File name: cs_table_stats_chart.sql -- -- Purpose: CBO Statistics History for given Table (time series chart) -- -- Author: Carlos Sierra -- -- Version: 2022/10/20 -- -- Usage: Execute connected to PDB. -- -- Enter Table when requested. -- -- Example: $ sqlplus / as sysdba -- SQL> @cs_table_stats_chart.sql -- -- Notes: Developed and tested on 19c -- --------------------------------------------------------------------------------------- -- @@cs_internal/cs_primary.sql @@cs_internal/cs_cdb_warn.sql @@cs_internal/cs_set.sql @@cs_internal/cs_def.sql @@cs_internal/cs_file_prefix.sql -- DEF cs_script_name = 'cs_table_stats_chart'; DEF cs_hours_range_default = '8760'; -- @@cs_internal/&&cs_set_container_to_cdb_root. -- COL cs_hours_range_default NEW_V cs_hours_range_default NOPRI; SELECT TRIM(TO_CHAR(LEAST(TRUNC((SYSDATE - MIN(last_analyzed)) * 24), TO_NUMBER('&&cs_hours_range_default.')))) AS cs_hours_range_default FROM &&cs_tools_schema..dbc_tables / -- @@cs_internal/cs_sample_time_from_and_to.sql @@cs_internal/cs_snap_id_from_and_to.sql -- COL owner NEW_V owner FOR A30 HEA 'TABLE_OWNER'; COL oracle_maintained FOR A4 HEA 'ORCL'; COL tables FOR 999,990; BREAK ON oracle_maintained SKIP PAGE DUPL; SELECT /*+ OPT_PARAM('_px_cdb_view_enabled' 'FALSE') */ u.oracle_maintained, t.owner, COUNT(DISTINCT t.table_name) AS tables FROM &&cs_tools_schema..dbc_tables t, cdb_users u WHERE t.pdb_name = '&&cs_con_name.' AND t.snap_time BETWEEN TO_DATE('&&cs_sample_time_from.', '&&cs_datetime_full_format.') AND TO_DATE('&&cs_sample_time_to.', '&&cs_datetime_full_format.') AND u.username = t.owner GROUP BY u.oracle_maintained, t.owner ORDER BY u.oracle_maintained DESC, t.owner / COL table_owner NEW_V table_owner FOR A30; PRO PRO 3. Table Owner: DEF table_owner = '&3.'; UNDEF 3; SELECT UPPER(NVL('&&table_owner.', '&&owner.')) table_owner FROM DUAL / -- COL table_name FOR A30 PRI; COL num_rows FOR 999,999,999,990; COL blocks FOR 9,999,999,990; WITH sq1 AS ( SELECT /*+ OPT_PARAM('_px_cdb_view_enabled' 'FALSE') */ t.table_name, t.num_rows, t.blocks, t.last_analyzed, ROW_NUMBER() OVER (PARTITION BY t.table_name ORDER BY t.snap_time DESC) AS rn FROM &&cs_tools_schema..dbc_tables t, v$containers c, cdb_users u WHERE t.pdb_name = '&&cs_con_name.' AND t.owner = '&&table_owner.' AND t.snap_time BETWEEN TO_DATE('&&cs_sample_time_from.', '&&cs_datetime_full_format.') AND TO_DATE('&&cs_sample_time_to.', '&&cs_datetime_full_format.') AND c.name = t.pdb_name AND u.con_id = c.con_id AND u.username = t.owner ) SELECT t.table_name, t.num_rows, t.blocks, t.last_analyzed FROM sq1 t WHERE t.rn = 1 ORDER BY t.table_name / PRO PRO 4. Table Name: DEF table_name = '&4.'; UNDEF 4; COL table_name NEW_V table_name FOR A30 NOPRI; SELECT UPPER(TRIM('&&table_name.')) table_name FROM DUAL; -- PRO PRO 5. Graph Type: [{Line}|Scatter|Area] DEF graph_type = '&5.'; UNDEF 5; COL cs_graph_type NEW_V cs_graph_type NOPRI; SELECT CASE WHEN '&&graph_type.' IN ('Line', 'Scatter', 'Area') THEN '&&graph_type.' ELSE 'Line' END AS cs_graph_type FROM DUAL / -- PRO PRO 6. Trendlines Type: &&cs_trendlines_types. DEF cs_trendlines_type = '&6.'; UNDEF 6; COL cs_trendlines_type NEW_V cs_trendlines_type NOPRI; COL cs_trendlines NEW_V cs_trendlines NOPRI; COL cs_hAxis_maxValue NEW_V cs_hAxis_maxValue NOPRI; SELECT CASE WHEN LOWER(TRIM(NVL('&&cs_trendlines_type.', 'none'))) IN ('linear', 'polynomial', 'exponential', 'none') THEN LOWER(TRIM(NVL('&&cs_trendlines_type.', 'none'))) ELSE 'none' END AS cs_trendlines_type, CASE WHEN LOWER(TRIM(NVL('&&cs_trendlines_type.', 'none'))) = 'none' THEN '//' END AS cs_trendlines, CASE WHEN LOWER(TRIM(NVL('&&cs_trendlines_type.', 'none'))) IN ('linear', 'polynomial', 'exponential') THEN '&&cs_hAxis_maxValue.' END AS cs_hAxis_maxValue FROM DUAL / -- SELECT '&&cs_file_prefix._&&cs_script_name._&&table_owner..&&table_name.' cs_file_name FROM DUAL; -- DEF report_title = "&&table_owner..&&table_name."; DEF chart_title = "&&table_owner..&&table_name."; DEF xaxis_title = ""; DEF vaxis_title = ""; DEF hAxis_maxValue = "&&cs_hAxis_maxValue."; DEF cs_trendlines_series = ", 0:{}, 1:{}"; -- -- (isStacked is true and baseline is null) or (not isStacked and baseline >= 0) --DEF is_stacked = "isStacked: false,"; DEF is_stacked = "isStacked: true,"; --DEF vaxis_baseline = ", baseline:&&cs_num_cpu_cores., baselineColor:'red'"; DEF vaxis_baseline = ""; --DEF chart_foot_note_2 = "
2) "; DEF chart_foot_note_2 = ""; DEF chart_foot_note_3 = ""; DEF chart_foot_note_3 = ""; DEF chart_foot_note_4 = ""; DEF report_foot_note = 'SQL> @&&cs_script_name..sql "&&cs_sample_time_from." "&&cs_sample_time_to." "&&table_owner." "&&table_name." "&&cs_graph_type." "&&cs_trendlines_type."'; -- @@cs_internal/cs_spool_head_chart.sql -- PRO ,{label:'Num Rows', id:'1', type:'number'} PRO ,{label:'Blocks', id:'2', type:'number'} PRO ] -- SET HEA OFF PAGES 0; /****************************************************************************************/ WITH FUNCTION num_format (p_number IN NUMBER, p_round IN NUMBER DEFAULT 0) RETURN VARCHAR2 IS BEGIN IF p_number IS NULL OR ROUND(p_number, p_round) <= 0 THEN RETURN 'null'; ELSE RETURN TO_CHAR(ROUND(p_number, p_round)); END IF; END num_format; /****************************************************************************************/ my_query AS ( SELECT DISTINCT last_analyzed, num_rows, blocks, num_rows/GREATEST(blocks,1) AS rows_per_block, avg_row_len, sample_size FROM &&cs_tools_schema..dbc_tables WHERE pdb_name = '&&cs_con_name.' AND owner = '&&table_owner.' AND table_name = '&&table_name.' AND snap_time BETWEEN TO_DATE('&&cs_sample_time_from.', '&&cs_datetime_full_format.') AND TO_DATE('&&cs_sample_time_to.', '&&cs_datetime_full_format.') AND num_rows + blocks >= 0 ) SELECT ', [new Date('|| TO_CHAR(q.last_analyzed, 'YYYY')|| /* year */ ','||(TO_NUMBER(TO_CHAR(q.last_analyzed, 'MM')) - 1)|| /* month - 1 */ ','||TO_CHAR(q.last_analyzed, 'DD')|| /* day */ ','||TO_CHAR(q.last_analyzed, 'HH24')|| /* hour */ ','||TO_CHAR(q.last_analyzed, 'MI')|| /* minute */ ','||TO_CHAR(q.last_analyzed, 'SS')|| /* second */ ')'|| ','||num_format(q.num_rows)|| ','||num_format(q.blocks)|| ']' FROM my_query q ORDER BY q.last_analyzed / /****************************************************************************************/ SET HEA ON PAGES 100; -- -- [Line|Area|SteppedArea|Scatter] -- DEF cs_chart_type = 'Line'; -- DEF cs_chart_type = 'Scatter'; DEF cs_chart_type = '&&cs_graph_type.'; -- disable explorer with "//" when using Pie DEF cs_chart_option_explorer = ''; -- enable pie options with "" when using Pie DEF cs_chart_option_pie = '//'; -- use oem colors DEF cs_oem_colors_series = '//'; DEF cs_oem_colors_slices = '//'; -- for line charts DEF cs_curve_type = ''; -- @@cs_internal/cs_spool_id_chart.sql @@cs_internal/cs_spool_tail_chart.sql PRO PRO &&report_foot_note. -- @@cs_internal/&&cs_set_container_to_curr_pdb. -- @@cs_internal/cs_undef.sql @@cs_internal/cs_reset.sql