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

Thread: Idle timeout

  1. #1
    Join Date
    Jan 2001
    Posts
    12
    Hi,
    I created a profile with idle timeout option 5 minutes. Then I assigned this profile to a user. I used this user name to connect using SQL plus. Even there is no activity for 5 minutes or more the user don't get disconnected. Is there other setting I should do to accomplish that ??

    regards,
    DB_Lover

  2. #2
    Join Date
    Oct 2000
    Location
    Saskatoon, SK, Canada
    Posts
    3,925
    Yeah, issue

    sqlplus SYS/syspassword@service_name
    SQL> ALTER SYSTEM SET RESOURCE_LIMIT=TRUE;

    also include the RESOURCE_LIMIT=TRUE in the initsid.ora file such that when you get to restart your instance next time this becomes effective automatically.

    Sam
    Thanx
    Sam



    Life is a journey, not a destination!


  3. #3
    Join Date
    Jan 2001
    Posts
    12
    Thank you for the quick reply.
    I have resource_limit already set to true but still not working.
    I use Oracle 7.3.4.

    Regrads
    DB_Lover

  4. #4
    Join Date
    Feb 2001
    Posts
    184
    Ok,

    Please Follow these Steps.
    Create Profile prof1 Limit Idle_Time 5;

    Alter system Set Resource_Limit = True;

    Alter User username Profile Prof1;

    Connect That user, do any select and leave the session opened for five minutes, then Issue any select , You will get the Error that not Connect or so.

    This parameter sessting is only as long as the Instance is Running. If you shutdown the Database that will be false.

    Any Transactions Pending in that session will be rolled back.

    Hope this will work.
    Thanks

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