Skip to content

Commit

Permalink
v1801
Browse files Browse the repository at this point in the history
  • Loading branch information
carlos-sierra committed Jan 16, 2018
1 parent d2aab47 commit 34f0e1d
Show file tree
Hide file tree
Showing 117 changed files with 3,175 additions and 7,790 deletions.
22 changes: 22 additions & 0 deletions changelog.txt
@@ -1,6 +1,28 @@
Changelog
=========

v1801 (2018-01-15)
=====
1. Remove SQLT references
2. Use GV$ instead of V$ for flashback views on "2d. Backup and Recovery"
3. Fix ORA-01476: divisor is equal to zero, on "3e.NNN. CPU Time Percent for Instance"
4. Exclude GSMADMIN_INTERNAL from "2.b.NNN. Segments in Reserved Tablespaces"
5. Add "Last DDL by date" and "Last DDL by pdb and date" to "2a Database Administration"
6. New edb360_config_dbid configuration parameter allows to execute eDB360 for a dbid on AWR other than v$database.dbid
7. Added "Statistics Gathering History Report" for 12c (DBMS_STATS.REPORT_STATS_OPERATIONS) under "3c. Cost-based Optimizer (CBO) Statistics"
8. Report "2b.NNN. Tables with excessive wasted space" considers now partitioned tables
9. New report "2b.NNN. Tables with actual size greater than estimated" is added for 12c
10. Added SGA Allocation (x$ksmssinfo) under "4a. System Global Area (SGA) Statistics History"
11. Added "OS Load and CPU Subscription Threshold" charts under "3e. Operating System (OS) Statistics History"
12. Added db_unique_name to 0c alert log copy section
13. New parameter edb360_output_directory allows to create zip and most staging files into a directory other than "."
14. Added Tablespace Usage Metrics (CDB_TABLESPACE_USAGE_METRICS) under "2b Storage"
15. Added configuration parameters to optionally add host_name suffix to haxis in all charts
16. Added "Open Cursors Count per Session" under "2.a Database Administration"
17. Added "Session Cursor Cache Misses per Session" under "2.a Database Administration"
18. Added "Session Cursor Cache (total and hits)" under "5.d System Statistics per Snap Interval"
19. Added "Cached Cursors List per Session" under "2.a Database Administration"

v1715 (2017-07-28)
=====
1. Moved the Report Auto Tuning Task from 3d to 3b
Expand Down
4 changes: 2 additions & 2 deletions edb360.sql 100644 → 100755
@@ -1,7 +1,7 @@
/*****************************************************************************************
EDB360 - Enkitec's Oracle Database 360-degree View
edb360_copyright (C) 2016 Carlos Sierra
EDB360 - An Oracle Database 360-degree View
edb360_copyright (C) 2018 Carlos Sierra
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
Binary file added js/SQLd360_all_pages_logo.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file modified js/googlecode.css 100644 → 100755
Empty file.
Empty file modified js/highlight.pack.js 100644 → 100755
Empty file.
Empty file modified js/sql-formatter.js 100644 → 100755
Empty file.
Empty file modified js/vs.css 100644 → 100755
Empty file.
Empty file modified license.txt 100644 → 100755
Empty file.
13 changes: 11 additions & 2 deletions readme.txt
@@ -1,4 +1,4 @@
edb360 v1715 (2017-07-28) by Carlos Sierra
edb360 v1801 (2018-01-15) by Carlos Sierra
~~~~~~~~~~~~
edb360 is a "free to use" tool to perform an initial assessment of an Oracle database.

Expand Down Expand Up @@ -98,6 +98,15 @@ Notes
grant execute on dbms_workload_repository to xxx;
grant execute on dbms_lock to xxx;

6. When executed in a Container Database make sure to connect sys as sysdba

Due to the way the DBA_ and CDB_ views work in a multi tenant environment
we require the connection to be with sys as sysdba
or a user with the sysdba role granted

When having only one PDB, connect to the CDB to collect for CDB and PDB.
When having more than one PDB, connect to each PDB to collect for each PDB.

****************************************************************************************

Troubleshooting
Expand All @@ -122,7 +131,7 @@ Steps:

****************************************************************************************

edb360 - Enkitec's Oracle Database 360-degree View
edb360 - An Oracle Database 360-degree View
Copyright (C) 2017 Carlos Sierra

This program is free software: you can redistribute it and/or modify
Expand Down
168 changes: 0 additions & 168 deletions sql/OLDsqld360_5i_stats.sql

This file was deleted.

1 change: 0 additions & 1 deletion sql/awr_ash_pre_check.sql
Expand Up @@ -32,7 +32,6 @@ SET TRIMS ON;
SET TRIM ON;
SET TI OFF;
SET TIMI OFF;
SET ARRAY 1000;
SET NUM 20;
SET SQLBL ON;
SET BLO .;
Expand Down
23 changes: 0 additions & 23 deletions sql/bmcs.sql

This file was deleted.

16 changes: 15 additions & 1 deletion sql/edb360_00_config.sql
Expand Up @@ -72,13 +72,27 @@ DEF edb360_eadam_row_limit = 10000000;
-- tool repository. set only if edb360 or eadam repository has been created
DEF tool_repo_user = '';

-- move generated edb360 zip file to directory (i.e.: /home/oracle/csierra/edb360/prod/)
-- output directory for most staging files part of the zip (e.g.: "" or "./" or "/tmp/" or "/home/oracle/csierra/edb360/prod/")
DEF edb360_output_directory = '';

-- move generated edb360 zip file to directory (e.g.: "" or "./" or "/tmp/" or "/home/oracle/csierra/edb360/prod/")
DEF edb360_move_directory = '';

-- use only if you have to skip esp and escp (value --skip--) else null
--DEF skip_esp_and_escp = '--skip--';
DEF skip_esp_and_escp = '';

-- use if you need tool to act on a dbid stored on AWR, but that is not the current v$database.dbid
DEF edb360_config_dbid = '';

-- the following 3 allow the display of host_name suffix on charts
-- for example, to display ad2.r1 when host_name is iod-db-kiev-02008.node.ad2.r1, set them to
-- separator = '.', position = '1' and occurrence = '2'
-- when all 3 are null then host_name suffix remains null
DEF edb360_host_name_separator = '';
DEF edb360_host_name_position = '';
DEF edb360_host_name_occurrence = '';

/**************************** not recommended to modify *********************************/

-- excluding report types reduce usability while providing marginal performance gain
Expand Down

0 comments on commit 34f0e1d

Please sign in to comment.