当前位置:网站首页>Database exception resolution caused by large table delete data deletion
Database exception resolution caused by large table delete data deletion
2022-07-07 15:18:00 【1024 questions】
One 、 Problem description
Two 、 Check the database
3、 ... and 、 Put forward a plan
Four 、 Execution process
One 、 Problem descriptionI was on my way to work this morning , Customers in the group say , There is a 24G The big table of ,delete Deleted 26 I haven't run for hours , At present, the process is still running. Let me help you deal with it , Stop the current process , And keep the data corresponding to the conditions , Delete the redundant data .
Two 、 Check the database1. Not open for filing
2.UNDO The table space is full
3、 ... and 、 Put forward a plan1. After communication , This table is the test data table , Not currently in use ;
So I plan to rename This table , adopt ctas The way to get the data you need , Rebuild indexes and related constraints .
2. There is a problem :delete The process has been executed 26 Hours , If kill process , Must lead to undo Roll back , Rolling back enables parallelism by default, resulting in high database and system load , So we need to deal with it in advance , Set parameters _fast_start_parallel_rollback_ Turn off the UNDO parallel .
-- View rollback parameter settings , Whether it is the default parallelism SQL> show parameter fast_start_parallel_rollbackNAME TYPE VALUE------------------------------------ ----------- ------------------------------fast_start_parallel_rollback string LOW--LOW representative Turn on CPU*2 parallel -- Set up spfile Cancel parallel SQL> alter system set fast_start_parallel_rollback=false;System altered.
Four 、 Execution process 1. Backup retention Table creation statement .
2. Record current invalid object .
SELECT d.OWNER ,d.OBJECT_NAME ,d.OBJECT_TYPE ,d.statusFROM dba_objects dWHERE d.status = 'INVALID' AND d.owner = '**';
3. see delete process pid, The system level kill fall .
-- Inquire about SID, SERIAL#select s.SQL_TEXT, se.SID, se.SERIAL# from v$session se, v$sql s where s.sql_id = se.SQL_ID and username = '**' and status = 'ACTIVE' and s.SQL_TEXT like '%delete * from *****%';-- Database level kill process alter system kill session '2953,31083';
Report errors
ERROR at line 1:
ORA-00031: session marked for kill
-- The system level kill process
select spid, osuser, s.program
from v$session s,v$process p
where s.paddr=p.addr and s.sid=2953;
kill -9 105257
4. Observe undo Rollback condition
-- View the waiting Events select inst_id,event,count(*) from gv$session a where a.status='ACTIVE' and not (a.type = 'BACKGROUND' and a.state='WAITING' and a.wait_class='Idle') group by inst_id,event order by a.inst_id,count(*) desc;---------------------------------------------------1wait for a undo record611resmgr:cpu quantum291enq: RO - fast object reuse221enq: CR - block range reuse ckpt201free buffer waits17-- View the current data rollback alter session set nls_date_format='yyyy-mm-dd hh24:mi:ss';select usn, state, undoblockstotal "Total", undoblocksdone "Done", undoblockstotal - undoblocksdone "ToDo", decode(cputime, 0, 'unknown', sysdate + (((undoblockstotal - undoblocksdone) / (undoblocksdone / cputime)) / 86400)) "Estimated time to complete" from v$fast_start_transactions where state = 'RECOVERING';---------------------------------------------------83RECOVERING9026713455902625826-4 month -21
5. Look at the system load ,IO load , Memory usage
6. Wait for rollback to complete , For a long time .
7. After successful rollback ,rename The original table .
rename table to table_20210410;
8.CTAS Get the required data to a new table ( The original table name ) in .
create table USER.TABLEnologging parallel 8tablespace TBSas select /*+parallel(TABLE,'8')*/ * from USER.TABLE_20210410where *** like '******%';-- Cancel parallel alter table USER.TABLE noparallel;-- Turn on loggingalter table USER.TABLE logging;
9.rename Indexes , And rebuild the index .
alter index USER.INDEX1 rename to INDEX1_20210410;-- Rebuild index create index USER.INDEX1 on USER.TABLE (***) tablespace TBS parallel 8;-- Cancel parallel alter index USER.INDEX1 noparallel;
10. Create constraints , to grant authorization .
11. Match invalid object , Is the data consistent
12.drop fall rename Table of .
drop table USER.TABLE_20210410 cascade;
The above is the big watch delete Details of database exception resolution caused by deleting data , More about delete Please pay attention to other relevant articles of software development network for information about abnormal deletion of data database !
边栏推荐
- 最安全的证券交易app都有哪些
- Change win10 Screensaver
- Bye, Dachang! I'm going to the factory today
- Lidar Knowledge Drop
- 大表delete删数据导致数据库异常解决
- Xiaomi's path of chip self-development
- Ctfshow, information collection: Web3
- How does the database perform dynamic custom sorting?
- Niuke real problem programming - day15
- Zhiting doesn't use home assistant to connect Xiaomi smart home to homekit
猜你喜欢
There is a cow, which gives birth to a heifer at the beginning of each year. Each heifer has a heifer at the beginning of each year since the fourth year. Please program how many cows are there in the
Niuke real problem programming - day14
Ctfshow, information collection: Web3
Niuke real problem programming - Day9
【数据挖掘】视觉模式挖掘:Hog特征+余弦相似度/k-means聚类
[deep learning] image hyperspectral experiment: srcnn/fsrcnn
CTFshow,信息搜集:web8
MySQL installation configuration 2021 in Windows Environment
Apache多个组件漏洞公开(CVE-2022-32533/CVE-2022-33980/CVE-2021-37839)
Ctfshow, information collection: web8
随机推荐
Yyds dry goods inventory # solve the real problem of famous enterprises: cross line
Niuke real problem programming - Day12
CTFshow,信息搜集:web9
Niuke real problem programming - day15
Stream learning notes
TypeScript 发布 4.8 beta 版本
8大模块、40个思维模型,打破思维桎梏,满足你工作不同阶段、场景的思维需求,赶紧收藏慢慢学
CTFshow,信息搜集:web4
PG basics -- Logical Structure Management (locking mechanism -- table lock)
连接ftp服务器教程
Niuke real problem programming - Day17
Ctfshow, information collection: web14
如何在opensea批量发布NFT(Rinkeby测试网)
Ctfshow, information collection: web9
[机缘参悟-40]:方向、规则、选择、努力、公平、认知、能力、行动,读3GPP 6G白皮书的五层感悟
【OBS】RTMPSockBuf_Fill, remote host closed connection.
使用cpolar建立一个商业网站(2)
【跟着江科大学Stm32】STM32F103C8T6_PWM控制直流电机_代码
MongoDB数据库基础知识整理
What is the process of ⼀ objects from loading into JVM to being cleared by GC?