1. 程式人生 > >oracle 11g表空間設定

oracle 11g表空間設定

oracle 11g表空間設定

1.檢視使用者對應的表空間

select username,default_tablespace from dba_users;

2.查看錶空間資料檔案

select * from dba_data_files where tablespace_name like 'USERS%';

3.修改表空間增加資料檔案

ADD DATAFILE 'E:\……\ORADATA\ORCL\USERS02.DBF' SIZE 5000M AUTOEXTEND ON NEXT 100M MAXSIZE 30000M;

可解決問題:
1.資料無法插入
java.sql.BatchUpdateException: ORA-01653