Skip to the content.

ORA-01940: cannot drop a user that is currently connected

해당 유저에 대한 세션이 있음

  1. 세션 확인
     SELECT * FROM V$SESSION WHERE USERNAME = 'owner_name';
    
  2. 해당 SID, SERIAL# 으로 세션 끊기
     ALTER SYSTEM KILL SESSION 'sid,serial#';