1.Centos7+oracle 11g 2.访问LIMS系统报错ORA-604:error occurred at recursive SQL level 1 ORA-00604: error occurred at recursive SQL level 1
1.登陆oracle服务器,切换至oracle用户
[root@lzdktest ~]# su - oracle
2.选择访问实例,连接数据库
[oracle@lzdktest ~]$ export ORACLE_SID=LZDKV
[oracle@lzdktest ~]$ sqlplus / as sysdba
3.查看表空间使用情况
SQL> SELECT
2 T.TABLESPACE_NAME,
3 D.FILE_NAME,
4 D.AUTOEXTENSIBLE,
5 D.BYTES,
6 D.MAXBYTES,
7 D.STATUS
8 FROM DBA_TABLESPACES T,
9 DBA_DATA_FILES D
10 WHERE T.TABLESPACE_NAME =D.TABLESPACE_NAME and T.TABLESPACE_NAME='SYSTEM' ORDER BY
TABLESPACE_NAME,FILE_NAME;
TABLESPACE_NAME
------------------------------
FILE_NAME
--------------------------------------------------------------------------------
AUT BYTES MAXBYTES STATUS
--- ---------- ---------- ---------
SYSTEM
/u01/app/oracle/oradata/LZDKV/system01.dbf
YES 3.4360E+10 3.4360E+10 AVAILABLE
4.根据/u01/app/oracle/oradata/LZDKV/system01.dbf的路径,退出数据库,回到本地环境查看实际大小
[oracle@lzdktest ~]$ cd /u01/app/oracle/oradata/LZDKV/
[oracle@lzdktest LZDKV]$ ll -h
总用量 88G
-rw-r----- 1 oracle oinstall 9.9M 3月 30 18:08 control01.ctl
-rw-r----- 1 oracle oinstall 3.1G 3月 30 17:49 LZDK_DATA.dbf
-rw-r----- 1 oracle oinstall 3.8G 3月 30 17:49 LZDK_DICT.dbf
-rw-r----- 1 oracle oinstall 2.1G 3月 30 17:49 LZDK_SDMS.dbf
-rw-r----- 1 oracle oinstall 3.1G 3月 30 18:07 LZDKVTEST_DATA.dbf
-rw-r----- 1 oracle oinstall 3.9G 3月 30 18:07 LZDKVTEST_DICT.dbf
-rw-r----- 1 oracle oinstall 51M 3月 30 18:08 redo01.log
-rw-r----- 1 oracle oinstall 51M 3月 30 17:01 redo02.log
-rw-r----- 1 oracle oinstall 51M 3月 30 17:44 redo03.log
-rw-r----- 1 oracle oinstall 2.1G 3月 30 17:49 STARLIMS_SDMS.dbf
-rw-r----- 1 oracle oinstall 4.4G 3月 30 18:07 sysaux01.dbf
-rw-r----- 1 oracle oinstall 32G 3月 30 18:07 system01.dbf
5.发现system01.dbf大小为32G,达到了单个数据文件的最大容量上限,需进行扩容 6.再次连接到数据库,进行表空间拓展并设置自动增长
[oracle@lzdktest ~]$ export ORACLE_SID=LZDKV
[oracle@lzdktest ~]$ sqlplus / as sysdba
SQL> alter tablespace system add datafile '/u01/app/oracle/oradata/LZDKV/system02.dbf' size 1024M
autoextend on next 50M maxsize 32767M;
Tablespace altered.
7.表空间拓展后,系统恢复正常访问