AWR and ADDR [message #250102] |
Sat, 07 July 2007 20:57 |
yamon
Messages: 22 Registered: July 2006
|
Junior Member |
|
|
I recently read about using the AWR and ADDR features in the book "Oracle High Performance Tuning for 9i and 10g" by Gavin JT Powell. Could someone please confirm if these options are available from the Enterprise Manager Console for Oracle Standard Edition, because I am having difficulty installing Enterprise Manager for this version on a particular Oracle instance, and would like to confirm if it is worth perusing.
Ay advice is very much appreciated.
|
|
|
|
|
Re: AWR and ADDR [message #250148 is a reply to message #250141] |
Sun, 08 July 2007 12:02 |
|
Michel Cadot
Messages: 68716 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Correct, I forgot to mention this one:
SQL> Col name format a43 heading "Feature"
SQL> Col detected_usages format 999,990 heading "Detected|usages"
SQL> Col currently_used format a06 heading "Curr.|used?"
SQL> select name, detected_usages, currently_used
2 from dba_feature_usage_statistics
3 where name in ('Automatic Workload Repository','Automatic Database Diagnostic Monitor')
4 /
Detected Curr.
Feature usages used?
------------------------------------------- -------- ------
Automatic Database Diagnostic Monitor 0 FALSE
Automatic Workload Repository 0 FALSE
2 rows selected.
Regards
Michel
|
|
|