Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

ORACLE series script 2: life-saving stored procedure emergency handling script

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Background: the long-term execution of stored procedures in the database leads to excessive resource consumption. Through the following expectations, we can quickly locate stored procedures, quickly intervene processing, and restore database performance. Long-term operation and maintenance through the following statements? t or above database? Yes, it works every time.

-- query the executing stored procedure

Select * from v$db_object_cache where locks > 0 and pins > 0 and type='PROCEDURE'

-- query the execution stored procedure session id of the activity

Select b.sid,b.SERIAL#

From SYS.V$ACCESS a, SYS.V$session b

Where a.type = 'PROCEDURE'

And (a.OBJECT like upper ('% PR_SEA_PAD_JKF_LGK_GOODS_TOP%') or)

A.OBJECT like lower ('% PR_SEA_RTK_JKF_E_ENTRY_COUNT%'))

And a.sid = b.sid

And b.status = 'ACTIVE'

-- stop the session

Alter system kill session '539 and 2022'

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report