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:
- Q91 Which two statements are true about UNDO and REDO?
- Tìm hiểu hệ quản trị CSDL IBM Db2
- Q41. Which two are true about Optimizer Statistics?
- Cài đặt và cấu hình Grafana trên linux 8 – step by step install Grafana on Linux 8
- Q140. Which two are true about unplugging an application container from a container database and plugging it into a different container database?