Bala, May 07, 2001 - 10:01 am UTC
Bala, May 07, 2001 - 10:02 am UTC
Peter, May 07, 2001 - 6:04 pm UTC
Good Jobs and Thanks for your efforts.
Excellent
Narendra, July 01, 2001 - 10:13 pm UTC
Hi Tom
Congratulations ,Really you are doing a great job,keep it up.
Awaiting your next Book .
Your Book
R.Ganguli, August 20, 2001 - 4:00 pm UTC
Tom,
I finished your book, and it cleared up many of my doubts, it's one of the best. I am going to go through it a second time. Why don't you write a book for the DBA's with more details on the internals, latches , File Systems , RAIDs etc.
Thank you
Ran
Book details
Abdal-Rahman Agha, October 21, 2001 - 7:01 am UTC
I still have no info about your book. Please, can write specific details about your book so that I can request it from the bookshop that has it. e.g, the ISBN, the Title, the Price, the Bookshop that is the book available in.
Thanks.
October 21, 2001 - 9:10 am UTC
just goto </code>
http://asktom.oracle.com/ <code>
A link into amazon that provides all of the above is there (well, except for the bookshop, I don't know what bookshops there are in Yemen)
OK
Roselyn, April 09, 2004 - 3:12 am UTC
Hi Tom,
How concurrency control is achieved in Oracle?could you
please explain in simple words?
Bye!
Cusor leak problem for implicit cursor
Purushotham, January 10, 2005 - 3:53 am UTC
Hi Tom,
Thanks for taking time to answer our questions. You site is one stop for me. I have encountered a problem recently. DBA logged an issue for memory leak. But most of the queries I found over there are implict cursors.
1. How could Implicit cursors be tagged as memory leaks ?
2. Below is the query they use to find the memory leaks
select
oc.sid sid,
oc.hash_value hash,
s.module module,
oc.sql_text text,
count(*) count
from v$open_cursor oc , v$session s
where s.sid = oc.sid
group by oc.sid,oc.hash_value,oc.sql_text,s.module
having count(*) > 5
order by 4;
I am confused about whether this query is the right one to find out memory leaks. Please throw some light on this.