We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db39249 commit ac80e1dCopy full SHA for ac80e1d
data-platform/core-converged-db/real-application-testing/sql-performance-analyzer/scripts-spa/report-summary.sql
@@ -0,0 +1,15 @@
1
+REM Script: report-summary.sql
2
+REM Generate summary report in HTML
3
+
4
+-- please use the following SQL*Plus formats
5
+set long 1000000 longchunksize 1000000 linesize 200 head off feedback off echo off
6
7
+-- enter task name
8
+variable result clob
9
+execute :result := dbms_sqlpa.report_analysis_task(task_name => '&Taskname', -
10
+ type => 'HTML', -
11
+ section => 'SUMMARY');
12
+-- spool the HTML report
13
+spool rep_summary.html
14
+print result
15
+spool off
0 commit comments