Skip to content

Commit c84b7a8

Browse files
authored
Create summary-report-for-devs.sql
1 parent b5e6e75 commit c84b7a8

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
REM Script: summary-report-for-devs.sql
2+
REM DBMS_SQLTUNE for database developers for all statements executed by the user
3+
4+
-- list all monitored statement executed by the user
5+
-- enter value for type (e.g. TEXT, HTML, ACTIVE)
6+
-- use the proposed SQL*Plus formats to get a correct report output
7+
8+
set trimspool on
9+
set trim on
10+
set pagesize 0
11+
set linesize 32767
12+
set long 1000000
13+
set longchunksize 1000000
14+
15+
select DBMS_SQLTUNE.REPORT_SQL_MONITOR_LIST(type=>'TEXT') from dual;

0 commit comments

Comments
 (0)