如何徹底殺死Oracle會話

來源:互聯網
上載者:User
當你覺得一個長時間啟動並執行一個PL/SQL,有問題時需要立即中止,怎麼辦:有兩種方法:
1.執行 alter system kill session ' sid,serial#'
    這裡的sid,serial# 可以在V$Session中找到。執行這個命令,有時候不一定有效。而且看起來殺掉了,
    但是使用的相關資源,也不一定被釋放了。那麼這時候就要用到下面這種方法了:
2.作業系統級的命令OraKill
   這個命令是Oracle內建的命令,在Oracle_Home的bin目錄下。
   執行不帶任何參數的OraKill, 會給出下面的提示:
     Usage:  orakill sid thread
     where sid    = the Oracle instance ID to target
        thread = the thread id of the thread to kill
      The thread id should be retrieved from the spid column of a query such as:

        select spid, osuser, s.program from
        v$process p, v$session s where p.addr=s.paddr

     這個命令瞬間會把相關的進程殺掉,所以使用的時候一定要小心。
     相關的文章,請參見http://www.eygle.com/faq/Kill_Session.htm

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.