|
- select * from dba_tablespaces;
- select * from dba_rollback_segs;
- select * from v$transaction;
- select f.tablespace_name,
- f.autoextensible,
- f.maxbytes
- from dba_data_files f where tablespace_name='UNDOTBS1';
复制代码
| TABLESPACE_NAME | AUTOEXTENSIBLE | MAXBYTES | 1 | UNDOTBS1 | YES | 34359721984 |
- alter database datafile '+DATA/orcl/datafile/undotbs1.263.1011147947'
- autoextend on maxsize 4G;
-
- select f.file_name,
- f.tablespace_name,
- f.autoextensible,
- f.maxbytes
- from dba_data_files f where tablespace_name='UNDOTBS1';
复制代码
| FILE_NAME | TABLESPACE_NAME | AUTOEXTENSIBLE | MAXBYTES | 1 | +DATA/orcl/datafile/undotbs1.263.1011147947 | UNDOTBS1 | YES | 4294967296 |
|
|