FLUSH SHARED_POOL [message #422982] |
Mon, 21 September 2009 10:20 |
sundarfaq
Messages: 235 Registered: October 2007 Location: Chennai
|
Senior Member |
|
|
hI,
I have execueted the below statements
ALTER SYSTEM FLUSH SHARED_POOL
after executing, the query was very very slow.
how we will revert the FLUSH SHARED_POOL?
Please help me..
thanks,
Michael
|
|
|
|
|
|
Re: FLUSH SHARED_POOL [message #423002 is a reply to message #422982] |
Mon, 21 September 2009 13:17 |
Bill B
Messages: 1971 Registered: December 2004
|
Senior Member |
|
|
I have never had a valid reason in 25 years to flush the shared pool except when I just had to try it and then i did it on test. Oracle will handle the pool quite nicely and the result of flushing (normally) is a very slow server until the pool is rebuilt from usage of the database.
|
|
|
Re: FLUSH SHARED_POOL [message #423110 is a reply to message #422982] |
Tue, 22 September 2009 03:33 |
bishtoo
Messages: 20 Registered: August 2009
|
Junior Member |
|
|
shared pool helps in performance boost since it has shared sql area which keeps info about recently executed SQLs..
So same sqls are not parsed again and again..thus saving precious time in execution..so once you flushed shared pool it will be empty and there will be nothing like sql parsed info of previous SQls..
In your case, oracle will again populate shred sql and performance will come to normal..
|
|
|