2026-03-12 20:23:15
This commit is contained in:
129
csierra/cs_sql_bind_capture_one_chart.sql
Normal file
129
csierra/cs_sql_bind_capture_one_chart.sql
Normal file
@@ -0,0 +1,129 @@
|
||||
----------------------------------------------------------------------------------------
|
||||
--
|
||||
-- File name: cs_sql_bind_capture_one_chart.sql
|
||||
--
|
||||
-- Purpose: SQL Bind Capture for given SQL_ID and Bind name (time series chart)
|
||||
--
|
||||
-- Author: Carlos Sierra
|
||||
--
|
||||
-- Version: 2022/11/22
|
||||
--
|
||||
-- Usage: Execute connected to PDB.
|
||||
--
|
||||
-- Enter SQL_ID and Bind name when requested.
|
||||
--
|
||||
-- Example: $ sqlplus / as sysdba
|
||||
-- SQL> @cs_sql_bind_capture_one_chart.sql
|
||||
--
|
||||
-- Notes: Developed and tested on 19c
|
||||
--
|
||||
---------------------------------------------------------------------------------------
|
||||
--
|
||||
@@cs_internal/cs_primary.sql
|
||||
@@cs_internal/cs_set.sql
|
||||
@@cs_internal/cs_def.sql
|
||||
@@cs_internal/cs_file_prefix.sql
|
||||
--
|
||||
DEF cs_script_name = 'cs_sql_bind_capture_one_chart';
|
||||
DEF cs_hours_range_default = '168';
|
||||
--
|
||||
@@cs_internal/cs_sample_time_from_and_to.sql
|
||||
@@cs_internal/cs_snap_id_from_and_to.sql
|
||||
--
|
||||
PRO 3. SQL_ID:
|
||||
DEF cs_sql_id = '&3.';
|
||||
UNDEF 3;
|
||||
--
|
||||
PRO 4. Bind name: (e.g.: :1, :2, :3, :4, ...)
|
||||
DEF cs_bind_name = '&4.';
|
||||
UNDEF 4;
|
||||
--
|
||||
@@cs_internal/&&cs_set_container_to_cdb_root.
|
||||
--
|
||||
SELECT '&&cs_file_prefix._&&cs_script_name._&&cs_sql_id.' cs_file_name FROM DUAL;
|
||||
--
|
||||
DEF report_title = 'SQL Bind values captured between &&cs_sample_time_from. and &&cs_sample_time_to. UTC';
|
||||
DEF chart_title = '&&report_title.';
|
||||
DEF xaxis_title = 'SQL_ID &&cs_sql_id. Bind &&cs_bind_name.';
|
||||
DEF vaxis_title = '';
|
||||
--
|
||||
-- (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 = "<br>2) ";
|
||||
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." "&&cs_sql_id." "&&cs_bind_name."';
|
||||
--
|
||||
@@cs_internal/cs_spool_head_chart.sql
|
||||
--
|
||||
PRO ,{label:'&&cs_bind_name', id:'1', 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 c.last_captured AS time,
|
||||
TO_NUMBER(c.value_string) AS value
|
||||
FROM &&cs_tools_schema..iod_sql_bind_capture c
|
||||
WHERE c.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 &&cs_con_id. IN (1, c.con_id)
|
||||
AND c.sql_id = '&&cs_sql_id.'
|
||||
AND c.name = '&&cs_bind_name.'
|
||||
ORDER BY
|
||||
c.last_captured,
|
||||
c.value_string
|
||||
)
|
||||
/****************************************************************************************/
|
||||
SELECT ', [new Date('||
|
||||
TO_CHAR(q.time, 'YYYY')|| /* year */
|
||||
','||(TO_NUMBER(TO_CHAR(q.time, 'MM')) - 1)|| /* month - 1 */
|
||||
','||TO_CHAR(q.time, 'DD')|| /* day */
|
||||
','||TO_CHAR(q.time, 'HH24')|| /* hour */
|
||||
','||TO_CHAR(q.time, 'MI')|| /* minute */
|
||||
','||TO_CHAR(q.time, 'SS')|| /* second */
|
||||
')'||
|
||||
','||num_format(q.value)||
|
||||
']'
|
||||
FROM my_query q
|
||||
ORDER BY
|
||||
q.time
|
||||
/
|
||||
/****************************************************************************************/
|
||||
SET HEA ON PAGES 100;
|
||||
--
|
||||
-- [Line|Area|SteppedArea|Scatter]
|
||||
DEF cs_chart_type = 'Line';
|
||||
-- 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
|
||||
--
|
||||
Reference in New Issue
Block a user