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:
- Q154 l Which two are benefits of external tables?
- Q20. Which three are true about Automatic Workload Repository (AWR) and Automatic Database Diagnostic Monitor (ADDM) in an Oracle multitenant environment?
- Hệ thống chứng chỉ Oracle Oracle Certification
- Q128 Which three statements are true about time zones, date data types, and timestamp data types in an Oracle database?
- Tạo mới và quản trị các thuộc tính của database Postgresql
