SQL command for killing Oracle user sessions

Here’s a small piece of SQL to generate SQL commands for killing all user sessions of a given user (you need to be sys/system):

select 'alter system kill session ''' || sid || ',' || serial# || ''';'
from gv$session
where username='USER'
and machine='PCNAME';

Über Stefan

Polyglot Clean Code Developer

Ein Kommentar

  1. Hey super, danke für die Zeilen Code!!
    Erleichtert schon ein wenig die Arbeit, Thumbs Up!

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

To create code blocks or other preformatted text, indent by four spaces:

    This will be displayed in a monospaced font. The first four 
    spaces will be stripped off, but all other whitespace
    will be preserved.
    
    Markdown is turned off in code blocks:
     [This is not a link](http://example.com)

To create not a block, but an inline code span, use backticks:

Here is some inline `code`.

For more help see http://daringfireball.net/projects/markdown/syntax