Skip to content

Commit ac80e1d

Browse files
authored
Create report-summary.sql
1 parent db39249 commit ac80e1d

File tree

1 file changed

+15
-0
lines changed
  • data-platform/core-converged-db/real-application-testing/sql-performance-analyzer/scripts-spa

1 file changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)