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

Thread: How To kill a Session

  1. #1
    Join Date
    Jan 2001
    Posts
    1

    Thumbs down

    How To kill a Session

  2. #2
    Join Date
    Feb 2000
    Location
    Washington DC
    Posts
    1,843

    Its dba command

    SQL> SELECT sid,serail# from v$session;

    ALTER SYSTEM kill session (sid,serial#);




  3. #3
    Join Date
    Dec 2000
    Posts
    4
    SELECT sid, serial#
    FROM v$session
    WHERE username = ‘user name’;

    SID SERIAL#
    ------- ----------
    34 3948

    ALTER SYSTEM
    KILL SESSION ‘34,3948’;

    With regards
    SATYA

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