1. Identify DB installation directory and set
ORACLE_HOME to home of DB Install.
export ORACLE_HOME=/opt/oracle/app/product/11.2.0/dbhome_1
 
2. Find pmon process and export SID
ps -aef | grep _pmon
export ORACLE_SID=orcl
3. Export bin directory
cd ${ORACLE_HOME}/rdbms/admin/
export PATH=${PATH}:${ORACLE_HOME}/bin
 
4. find . -name awrrpt.sql
navigate to awrrpt.sql and connect to SQL
sqlplus
sqlplus "/ as sysdba"
@awrrpt.sql
ORACLE_HOME to home of DB Install.
export ORACLE_HOME=/opt/oracle/app/product/11.2.0/dbhome_1
2. Find pmon process and export SID
ps -aef | grep _pmon
export ORACLE_SID=orcl
3. Export bin directory
cd ${ORACLE_HOME}/rdbms/admin/
export PATH=${PATH}:${ORACLE_HOME}/bin
4. find . -name awrrpt.sql
navigate to awrrpt.sql and connect to SQL
sqlplus
sqlplus "/ as sysdba"
@awrrpt.sql
Using DB EM Console
=================
Navigate to ${ORACLE_HOME}/bin  and execute emctl.
  ./emctl status dbconsole 
we can able to see em console for DB using below URL.
     https://localhost:1158/em
Login as sysdba and password
click on Home -> Server - >  Automatic Workload Repository -> Run Compare Periods report
By snapshot select Begin and End snapshot
Click on generate report
 
 
No comments:
Post a Comment