Warning: count(): Parameter must be an array or an object that implements Countable in /membri/oraclefaq/qa-include/app/format.php on line 384
ORA-00029: la sessione non è una sessione utente - Oracle FAQ - Il forum italiano su oracle
0 voti
251 visite
quesito posto in SQL e PLSQL da (2.4k punti)

Causa: Si sta cercando di killare una sessione che non è una sessione utente tramite il comando:

ALTER SYSTEM KILL SESSION

Azione: Riprovare con una sessione utente valida, ad esempio si può utilizzare la seguente query per costruire dinamicamente lo statement:

SELECT s.*,
       p.spid,
       s.username,
       s.program,
       'ALTER SYSTEM KILL SESSION ''' || s.sid ||  ',' || s.serial# || ''' IMMEDIATE;' as session_id
FROM   gv$session s
       JOIN gv$process p ON p.addr = s.paddr AND p.inst_id = s.inst_id
WHERE  s.type != 'BACKGROUND'
  AND  s.username = 'USERNAME';
 

 

ORA-00029: session is not a user session
 
Cause: The session ID specified in an ALTER SYSTEM KILL SESSION command
was not a user session (for example, recursive, etc.).
 
Action: Retry with a user session ID.

Fai il log in oppure registrati per rispondere al quesito.

Domande correlate


Warning: count(): Parameter must be an array or an object that implements Countable in /membri/oraclefaq/qa-include/app/format.php on line 384

Warning: count(): Parameter must be an array or an object that implements Countable in /membri/oraclefaq/qa-include/app/format.php on line 384

Warning: count(): Parameter must be an array or an object that implements Countable in /membri/oraclefaq/qa-include/app/format.php on line 384

Warning: count(): Parameter must be an array or an object that implements Countable in /membri/oraclefaq/qa-include/app/format.php on line 384

Warning: count(): Parameter must be an array or an object that implements Countable in /membri/oraclefaq/qa-include/app/format.php on line 384
0 voti
0 risposte 506 visite
quesito posto 23 Febbraio 2014 in SQL e PLSQL da carlo10 (2.4k punti)
0 voti
0 risposte 2k visite
quesito posto 23 Febbraio 2014 in SQL e PLSQL da carlo10 (2.4k punti)
0 voti
0 risposte 356 visite
quesito posto 23 Febbraio 2014 in SQL e PLSQL da carlo10 (2.4k punti)
0 voti
0 risposte 2.6k visite
0 voti
0 risposte 114 visite
...