Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Strife

  1. Strife

    contention on 'session allocation' latch

    Hi, thanks for that.. will be looking at the library cache problem next (it is only a small issue).. currently the main problem is with block buffer latches.
  2. Strife

    contention on 'session allocation' latch

    nope that's not it.. the hash_buckets by default are set to 2x the number of buffers and that is the case in this db. we are working on finding the hashing algorithm now to understand why a db would need even one more bucket than number of buffers. the problem is with the number of latches...
  3. Strife

    contention on 'session allocation' latch

    nope.. thats not it.. buffer cache is already at 100%. if anyone is interested this is my conclusion: Recommend setting _db_block_hash_latches = 4096 # in 8.1.x default for this with 40000 block buffers is 1024 I have found a high number of waits for the latch 'cache buffers chains' and...
  4. Strife

    contention on 'session allocation' latch

    more analysis on this is showing 'library cache' and 'cache buffers chains' latches to have the highest waits.. could this possibly mean reducing the block buffers as the buffer cache hit-ratio is at 100%.. anyone have experiance with this type of contention? Thanks
  5. Strife

    contention on 'session allocation' latch

    Hi all, have noticed the session allocaion latch is running at 97.7% on a good day! the system is running very slow. Any ideas on how to reduce contention for this type of latch? System is: Oracle81630 Sun OS 4cpus 3Gb Ram. SGA: buffers 320M shared pool 160M OAS 4081. Most connection are...
  6. Strife

    to find the Database links

    or if you need to identify the active open database links then try: select * from sys.v_$dblink; -- This will only return rows if the link is active!
  7. Strife

    to find the Database links

    Hi, Actually Santhosh, you asked for a list of defined database links in the database and LINK$ is the source table for this.. is this what you need? select 'create public database link ' || name || ' connect to ' || userid || ' identified by ' || password || ' using ''' ||...
  8. Strife

    to find the Database links

    select * from sys.link$ -- this shows all including passwords!
  9. Strife

    Upgrading From Oracle 7 to Oracle 8i

    yeap that sounds about right and you should consider using export/import to migrate your db.. only look at the migration utility if you don't have enough space for export/import.
  10. Strife

    A PL/SQL question

    Hi all, I would like to know how to declare an array like myvar(100,50) so it can be referrenced in code like: declare temp number; myvar of type ? begin .. do some stuff for i in 1..100 loop temp := myvar(i,10); end loop; .. do more stuff exception end; I am aware of this type...

Part and Inventory Search

Back
Top