Skip to content

Commit b69a20e

Browse files
committed
add comments about 18c+ SE usage
1 parent 9cf712d commit b69a20e

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

Diff for: create_sql_baseline.sql

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@
1515
-- You can get the SQL_HANDLE from DBA_SQL_PLAN_BASELINES
1616
--
1717
-- More info:
18-
-- SQL Plan Baselines - DBMS_SPM in EE licenses - see http://jonathanlewis.wordpress.com/2011/01/12/fake-baselines/
18+
-- SQL Plan Baselines - DBMS_SPM in EE licenses
19+
-- - https://jonathanlewis.wordpress.com/2011/01/12/fake-baselines/
20+
-- DBMS_SPM basic baseline use is included in Oracle EE in 11g+ and SE from 18c+
21+
-- - https://blogs.oracle.com/optimizer/does-the-use-of-sql-plan-management-and-the-dbmsspm-database-package-require-a-tuning-or-diagnostic-pack-license
22+
--
1923
--------------------------------------------------------------------------------------------------------
2024
SET SERVEROUT ON SIZE 1000000
2125

Diff for: drop_sql_baseline.sql

+5
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ DEF sql_handle=&1
44
-- as this is what DBMS_XPLAN reports as used... (so no manual lookup from plan_name -> sql_handle
55
-- is needed)
66

7+
-- You can get the SQL_HANDLE from DBA_SQL_PLAN_BASELINES
8+
9+
-- DBMS_SPM basic baseline use is included in Oracle EE in 11g+ and SE from 18c+
10+
-- https://blogs.oracle.com/optimizer/does-the-use-of-sql-plan-management-and-the-dbmsspm-database-package-require-a-tuning-or-diagnostic-pack-license
11+
712
SET SERVEROUT ON SIZE 1000000
813

914
DECLARE

0 commit comments

Comments
 (0)