DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

Thread: SQLNET.EXPIRE_TIME

Hybrid View

  1. #1
    Join Date
    Jan 2002
    Posts
    18

    Question

    hi,

    i have an N tier application that opens dedicated connections that generally sit dormant, yet take up 135MB memory each.

    i want to kill these off after a certain period of time, but was unsuccessful doing so with the Profile of the user the application connects with. wondering if this param will help AND do i have to bounce the instance to have this take affect?

    thanks in advance!
    -ad

  2. #2
    Join Date
    Mar 2002
    Location
    Mesa, Arizona
    Posts
    1,204
    Don't know if it'll actually kill the server session, but I do know that you don't have to bounce the db to reconfigure SQL*NET.

    135 mb per session... wow!
    "I do not fear computers. I fear the lack of them." Isaac Asimov
    Oracle Scirpts DBA's need

  3. #3
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    SQLNET.EXPIRE_TIME will kill inactive connections. However, it will not kill them until the connection requests to do something.

    For example, say you have your SQLNET.EXPIRE_TIME set to 10 minutes. A connection will still show up in v$session until 10 minutes has passed AND somebody tries to execute something on that connection. If the session is really idle, it could sit for days without anybody executing anything. Then when they do, they'll be pissed off because their connection died.

    Setting up shared servers would be a better use of your memory, IMHO.
    Jeff Hunter

  4. #4
    Join Date
    Jan 2002
    Posts
    18
    hmmm... ok , thanks. i thought it did a tnsping back to the client connection, and if no response after a given time, signalled pmon to kill off the session and rollback any uncommited transactions.

    definitely will consider other options

    thanks again!

  5. #5
    Join Date
    Feb 2001
    Posts
    389
    sqlnet.expire_time is useless against JDBC connections.
    why not use MTS with connection pooling , but MTS is not good for
    connections which hold session connection for a long time.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width