ORA-01652 unable to extend temp segment by 8192 in tablespace DUONG_TBS
Nguyên nhân:
Lỗi ORA-01652: unable to extend temp segment by 8192 in tablespace DUONG_TBS =>> do thiếu dung lượng tablespace (tablespace bị đầy FULL), có thể là temp hoặc là tablespace chứa table đang thực hiện thao tác dữ liệu.

Khắc phục:
Add thêm datafile vào trong tablespace chứa bảng và add tempfile cho temp tablespace
ALTER TABLESPACE DUONG_TBS ADD DATAFILE SIZE 500M AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITED; ALTER TABLESPACE TEMP ADD TEMPFILE SIZE 500M AUTOEXTEND ON NEXT 100M MAXSIZE UNLIMITED;
Xem thêm:
- Q37 Which three statements are true about advanced connection options supported by Oracle Net for connection to Oracle Database instances?
- Data Enrichment là gì?
- Quản trị Controlfile trong Oracle database RAC 19c
- Q91. Which three are true about creating container databases (CDBs) and pluggable databases (PDBs) in Oracle 19c and later releases?
- Sử dụng Database Link trong Oracle Database
