Thứ Sáu, 8 tháng 9, 2023

[VIP5] Bỏ index Primary Key, tạo index thường để tăng hiệu năng cơ sở dữ liệu

Mục đích: Với Primary Key thì mỗi khi insert giá trị mới vào database phải kiểm tra xem có bị trùng và hác null hay không, nếu ứng dụng không cần tới Primary (do ứng dụng kiểm soát được) thì có thể giảm gánh nặng đối với database bằng cách tạo index thường, từ đó góp phần tăng hiệu năng của cơ sở dữ liệu. Với database Core khi hệ thống đang chạy ổn định kể ra động vào cũng hơi ngại vì tăng hiệu năng 1 chút thì không ai biết nhưng mà tối ưu gây cao tải thì "lên báo" ngay, mà không làm cũng không được. Dở nhất là cập nhật buổi tối test OK, nhưng sáng lúc cao tải mới có thể phát sinh lỗi thì rollback không kịp. Nên anh em càng nắm hệ thống Core càng phải rèn luyện bản lĩnh vững vàng, làm trên testbed đầy đủ (nhưng testbed cũng chỉ tham khảo vì khó giả lập môi trường giống như thật lắm).
Sau đây tôi sẽ chia sẻ với anh/em thủ tục chi tiết:

--1.Tao index  app_owner.action_audit_i1: 8p, bảng 150GB
--create index app_owner.action_audit_i1 on action_audit(action_audit_id) tablespace INDX local parallel 8 online ;

--2.Drop  app_owner.action_audit_i1.ACTION_AUDIT_PK
alter table app_owner.action_audit DROP CONSTRAINT ACTION_AUDIT_PK;

drop index app_owner.ACTION_AUDIT_PK;

Khi bi loi ORA-00054: resource busy and acquire with NOWAIT specified or timeout expired, kill het:
 
SELECT /*call obj*/  'kill -9 ' || spid a--, a.INST_ID,A.SQL_ID,A.SID, A.SERIAL#, a.USERNAME, a.STATUS,A.SCHEMANAME,a.OSUSER,A.MACHINE,A.PROGRAM,A.TYPE,A.LOGON_TIME,a.prev_exec_start,BACKGROUND
FROM gv$session a, gv$process b 
WHERE b.addr = a.paddr   
AND a.inst_id=b.inst_id 
and b.inst_id=1
AND (b.inst_id, a.sid) in (
(select /*+ parallel(8) */  inst_id, sid from gv$access where object like '%ACTION_AUDIT_PK%')
)
and type='USER'
and a.machine not like '%ADMIN%' ;

--3.Doi ten thanh ACTION_AUDIT_PK
alter index app_owner.action_audit_i1 rename to ACTION_AUDIT_PK;

--4.Rebuild index ve dung tablespace
select  'alter index ' || index_owner || '.' || index_name || ' rebuild partition ' || partition_name || ' tablespace INDX' || substr(partition_name,5,4) || ' nologging parallel 8 online;'
from dba_ind_partitions where 
--status!='USABLE'
 index_owner='app_owner' and index_name='ACTION_AUDIT_PK'
 and to_date(substr(partition_name,5,8),'yyyymmdd')<=sysdate
order by 1 desc;      

--5.noprallel 
Alter index app_owner.ACTION_AUDIT_PK nologging noparallel;

--6.Check dung luong 14.95GB
select sum(bytes)/1024/1024/1204 "GB"
from dba_segments
where owner='app_owner' and segment_name='ACTION_AUDIT_PK';

=============================
Website không bao giờ chứa bất kỳ quảng cáo nào, mọi đóng góp để duy trì phát triển cho website (donation) xin vui lòng gửi về STK 90.2142.8888 - Ngân hàng Vietcombank Thăng Long - TRAN VAN BINH
=============================
Nếu bạn muốn tiết kiệm 3-5 NĂM trên con đường trở thành DBA chuyên nghiệp thì hãy đăng ký ngay KHOÁ HỌC ORACLE DATABASE A-Z ENTERPRISE, được Coaching trực tiếp từ tôi với toàn bộ kinh nghiệm, thủ tục, quy trình, bí kíp thực chiến mà bạn sẽ KHÔNG THỂ tìm kiếm trên Internet/Google giúp bạn dễ dàng quản trị mọi hệ thống Core tại Việt Nam và trên thế giới, đỗ OCP.
- CÁCH ĐĂNG KÝ: Gõ (.) hoặc để lại số điện thoại hoặc inbox https://m.me/tranvanbinh.vn hoặc Hotline/Zalo 090.29.12.888
- Chi tiết tham khảo:
https://bit.ly/oaz_w
=============================
2 khóa học online qua video giúp bạn nhanh chóng có những kiến thức nền tảng về Linux, Oracle, học mọi nơi, chỉ cần có Internet/4G:
- Oracle cơ bản: https://bit.ly/admin1_1200
- Linux: https://bit.ly/linux_1200
=============================
KẾT NỐI VỚI CHUYÊN GIA TRẦN VĂN BÌNH:
📧 Mail: binhoracle@gmail.com
☎️ Mobile/Zalo: 0902912888
👨 Facebook: https://www.facebook.com/BinhOracleMaster
👨 Inbox Messenger: https://m.me/101036604657441 (profile)
👨 Fanpage: https://www.facebook.com/tranvanbinh.vn
👨 Inbox Fanpage: https://m.me/tranvanbinh.vn
👨👩 Group FB: https://www.facebook.com/groups/DBAVietNam
👨 Website: https://www.tranvanbinh.vn
👨 Blogger: https://tranvanbinhmaster.blogspot.com
🎬 Youtube: https://www.youtube.com/@binhguru
👨 Tiktok: https://www.tiktok.com/@binhguru
👨 Linkin: https://www.linkedin.com/in/binhoracle
👨 Twitter: https://twitter.com/binhguru
👨 Podcast: https://www.podbean.com/pu/pbblog-eskre-5f82d6
👨 Địa chỉ: Tòa nhà Sun Square - 21 Lê Đức Thọ - Phường Mỹ Đình 1 - Quận Nam Từ Liêm - TP.Hà Nội

=============================
[VIP5] Bỏ index Primary Key, tạo index thường, oracle tutorial, học oracle database, Tự học Oracle, Tài liệu Oracle 12c tiếng Việt, Hướng dẫn sử dụng Oracle Database, Oracle SQL cơ bản, Oracle SQL là gì, Khóa học Oracle Hà Nội, Học chứng chỉ Oracle ở đầu, Khóa học Oracle online,sql tutorial, khóa học pl/sql tutorial, học dba, học dba ở việt nam, khóa học dba, khóa học dba sql, tài liệu học dba oracle, Khóa học Oracle online, học oracle sql, học oracle ở đâu tphcm, học oracle bắt đầu từ đâu, học oracle ở hà nội, oracle database tutorial, oracle database 12c, oracle database là gì, oracle database 11g, oracle download, oracle database 19c, oracle dba tutorial, oracle tunning, sql tunning , oracle 12c, oracle multitenant, Container Databases (CDB), Pluggable Databases (PDB), oracle cloud, oracle security, oracle fga, audit_trail,oracle RAC, ASM, oracle dataguard, oracle goldengate, mview, oracle exadata, oracle oca, oracle ocp, oracle ocm , oracle weblogic, postgresql tutorial, mysql tutorial, mariadb tutorial, ms sql server tutorial, nosql, mongodb tutorial, oci, cloud, middleware tutorial, hoc solaris tutorial, hoc linux tutorial, hoc aix tutorial, unix tutorial, securecrt, xshell, mobaxterm, putty

ĐỌC NHIỀU

Trần Văn Bình - Oracle Database Master