AWR [message #500732] |
Wed, 23 March 2011 04:48 |
|
gxeon
Messages: 53 Registered: January 2011 Location: Mumbai
|
Member |
|
|
Hello Sir
Need one help...i am taking the AWR report 2 times per day on Production Server since last one week due to which my SYSAUX tablespace is getting full. what should i do ?
please let me know is it ok?, to take AWR report on daily basis on Production Server ?
how can i remove the old AWR reports in order to make free space in SYSAUX ?
GG
|
|
|
Re: AWR [message #500733 is a reply to message #500732] |
Wed, 23 March 2011 05:28 |
|
Michel Cadot
Messages: 68716 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
Quote:what should i do ?
Either increase the tablespace or purge old awr data
Quote:is it ok?, to take AWR report on daily basis on Production Server ?
Do you use them? If not, why do you generate them?
Quote:how can i remove the old AWR reports in order to make free space in SYSAUX ?
To manually purge them, you can use
BEGIN
dbms_workload_repository.drop_snapshot_range(low_snap_id => <XXX>, high_snap_id=><YYY>);
END;
/
You can use DBMS_WORKLOAD_REPOSITORY.MODIFY_SNAPSHOT_SETTINGS to modify the retention period.
Regards
Michel
[Updated on: Wed, 23 March 2011 05:44] Report message to a moderator
|
|
|
|
|
|
|
|
Re: AWR [message #502395 is a reply to message #502388] |
Wed, 06 April 2011 03:37 |
cookiemonster
Messages: 13958 Registered: September 2008 Location: Rainy Manchester
|
Senior Member |
|
|
Are the users complaining about the performance of the application or particular bits?
If bits then you should probably look at what those bits are actually doing rather than the awr.
|
|
|
|
|
Re: AWR [message #502460 is a reply to message #502434] |
Wed, 06 April 2011 08:26 |
|
gxeon
Messages: 53 Registered: January 2011 Location: Mumbai
|
Member |
|
|
Hello
I am new to Oracle DBA....today i took the AWR report and i got these 'Top 5 Timed Events'. but i am not understanding it correctly, can anyone please help in this regard.
GG
Top 5 Timed Events Avg %Total
~~~~~~~~~~~~~~~~~~ wait Call
Event Waits Time (s) (ms) Time Wait Class
------------------------------ ------------ ----------- ------ ------ ----------
log file sync 22,404 6,638 296 55.1 Commit
LGWR wait on LNS 29,075 6,285 216 52.2 Network
LGWR-LNS wait on channel 439,776 6,285 14 52.2 Other
LNS wait on SENDREQ 29,025 6,283 216 52.2 Network
log buffer space 3,155 2,834 898 23.5 Configurat
|
|
|
Re: AWR [message #502463 is a reply to message #502460] |
Wed, 06 April 2011 08:37 |
|
Michel Cadot
Messages: 68716 Registered: March 2007 Location: Saint-Maur, France, https...
|
Senior Member Account Moderator |
|
|
If you want to learn then you have to FIRST read.
The second link will give the explaination of the event you have in your report.
Regards
Michel
[Updated on: Wed, 06 April 2011 08:37] Report message to a moderator
|
|
|