SQL> SQL> select * from v$version; BANNER -------------------------------------------------------------------------------- Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production PL/SQL Release 11.2.0.3.0 - Production CORE 11.2.0.3.0 Production TNS for Linux: Version 11.2.0.3.0 - Production NLSRTL Version 11.2.0.3.0 - Production SQL>
SQL>
SQL> show parameter control_files
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
control_files string /u01/app/oracle/oradata/HOEGH/
control01.ctl, /u01/app/oracle
/oradata/HOEGH/control02.ctl
SQL>
[oracle@HOEGH ~]$ rm /u01/app/oracle/oradata/HOEGH/control01.ctl [oracle@HOEGH ~]$ rm /u01/app/oracle/oradata/HOEGH/control02.ctl [oracle@HOEGH ~]$
SQL> SQL> shutdown immediate Database closed. ORA-00210: cannot open the specified control file ORA-00202: control file: \'/u01/app/oracle/oradata/HOEGH/control01.ctl\' ORA-27041: unable to open file Linux Error: 2: No such file or directory Additional information: 3 SQL> select status from v$instance; STATUS ------------ MOUNTED SQL> SQL> shutdown abort ORACLE instance shut down. SQL> SQL> SQL> startup ORACLE instance started. Total System Global Area 941600768 bytes Fixed Size 1348860 bytes Variable Size 515902212 bytes Database Buffers 419430400 bytes Redo Buffers 4919296 bytes ORA-00205: error in identifying control file, check alert log for more info SQL>
SQL> SQL> create pfile from spfile; File created. SQL>
[oracle@hoegh dbs]$ cat initHOEGH.ora HOEGH.__db_cache_size=419430400 HOEGH.__java_pool_size=4194304 HOEGH.__large_pool_size=4194304 HOEGH.__oracle_base=\'/u01/app/oracle\'#ORACLE_BASE set from environment HOEGH.__pga_aggregate_target=377487360 HOEGH.__sga_target=566231040 HOEGH.__shared_io_pool_size=0 HOEGH.__shared_pool_size=130023424 HOEGH.__streams_pool_size=0 *.audit_file_dest=\'/u01/app/oracle/admin/HOEGH/adump\' *.audit_trail=\'db\' *.compatible=\'11.2.0.0.0\' *.control_files=\'/u01/app/oracle/oradata/HOEGH/control01.ctl\',\'/u01/app/oracle/oradata/HOEGH/control02.ctl\' *.db_block_size=8192 *.db_domain=\'\' *.db_name=\'HOEGH\' *.diagnostic_dest=\'/u01/app/oracle\' *.dispatchers=\'(PROTOCOL=TCP) (SERVICE=HOEGHXDB)\' *.memory_max_target=943718400 *.memory_target=943718400 *.open_cursors=300 *.processes=150 *.remote_login_passwordfile=\'EXCLUSIVE\' *.undo_tablespace=\'UNDOTBS1\' [oracle@hoegh dbs]$
SQL> SQL> startup nomount ORACLE instance started. Total System Global Area 941600768 bytes Fixed Size 1348860 bytes Variable Size 515902212 bytes Database Buffers 419430400 bytes Redo Buffers 4919296 bytes SQL> SQL> select userenv(\'language\') from dual; USERENV(\'LANGUAGE\') ---------------------------------------------------- AMERICAN_AMERICA.US7ASCII SQL> SQL>
[oracle@hoegh HOEGH]$ ls -lh total 1.8G -rw-r----- 1 oracle oinstall 314M May 30 11:07 example01.dbf -rw-r----- 1 oracle oinstall 51M May 30 11:07 redo01.log -rw-r----- 1 oracle oinstall 51M May 30 11:07 redo02.log -rw-r----- 1 oracle oinstall 51M May 30 11:07 redo03.log -rw-r----- 1 oracle oinstall 541M May 30 11:07 sysaux01.dbf -rw-r----- 1 oracle oinstall 721M May 30 11:07 system01.dbf -rw-r----- 1 oracle oinstall 30M Oct 13 2014 temp01.dbf -rw-r----- 1 oracle oinstall 96M May 30 11:07 undotbs01.dbf -rw-r----- 1 oracle oinstall 5.1M May 30 11:07 users01.dbf [oracle@hoegh HOEGH]$
STARTUP NOMOUNT CREATE CONTROLFILE REUSE DATABASE \"HOEGH\" NORESETLOGS ARCHIVELOG MAXLOGFILES 5 MAXLOGMEMBERS 3 MAXDATAFILES 100 MAXINSTANCES 1 MAXLOGHISTORY 226 LOGFILE GROUP 1 \'/u01/app/oracle/oradata/HOEGH/redo01.log\' SIZE 50M, GROUP 2 \'/u01/app/oracle/oradata/HOEGH/redo02.log\' SIZE 50M, GROUP 3 \'/u01/app/oracle/oradata/HOEGH/redo03.log\' SIZE 50M DATAFILE \'/u01/app/oracle/oradata/HOEGH/system01.dbf\', \'/u01/app/oracle/oradata/HOEGH/sysaux01.dbf\', \'/u01/app/oracle/oradata/HOEGH/undotbs01.dbf\', \'/u01/app/oracle/oradata/HOEGH/users01.dbf\', \'/u01/app/oracle/oradata/HOEGH/example01.dbf\', \'/u01/app/oracle/oradata/HOEGH/temp01.dbf\' CHARACTER SET US7ASCII ;
SQL> @/u01/app/oracle/oradata/HOEGH/CreateControlFile.sql ORA-01081: cannot start already-running ORACLE - shut it down first CREATE CONTROLFILE REUSE DATABASE \"HOEGH\" NORESETLOGS ARCHIVELOG * ERROR at line 1: ORA-01503: CREATE CONTROLFILE failed ORA-01160: file is not a data file ORA-01110: data file : \'/u01/app/oracle/oradata/HOEGH/temp01.dbf\' SQL>
SQL> SQL> @/u01/app/oracle/oradata/HOEGH/CreateControlFile.sql ORACLE instance started. Total System Global Area 941600768 bytes Fixed Size 1348860 bytes Variable Size 515902212 bytes Database Buffers 419430400 bytes Redo Buffers 4919296 bytes Control file created. SQL> SQL> select status from v$instance; STATUS ------------ MOUNTED SQL>
SQL> SQL> alater database open; SP2-0734: unknown command beginning \"alater dat...\" - rest of line ignored. SQL> SQL> alter database open; alter database open * ERROR at line 1: ORA-01113: file 1 needs media recovery ORA-01110: data file 1: \'/u01/app/oracle/oradata/HOEGH/system01.dbf\' SQL> SQL> recover database; Media recovery complete. SQL> SQL> alter database open; Database altered. SQL> SQL> select * from v$version; BANNER -------------------------------------------------------------------------------- Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - Production PL/SQL Release 11.2.0.3.0 - Production CORE 11.2.0.3.0 Production TNS for Linux: Version 11.2.0.3.0 - Production NLSRTL Version 11.2.0.3.0 - Production SQL> SQL> select tablespace_name from dba_tablespaces; TABLESPACE_NAME ------------------------------ SYSTEM SYSAUX UNDOTBS1 TEMP USERS EXAMPLE 6 rows selected. SQL>
机械节能产品生产企业官网模板...
大气智能家居家具装修装饰类企业通用网站模板...
礼品公司网站模板
宽屏简约大气婚纱摄影影楼模板...
蓝白WAP手机综合医院类整站源码(独立后台)...苏ICP备2024110244号-2 苏公网安备32050702011978号 增值电信业务经营许可证编号:苏B2-20251499 | Copyright 2018 - 2026 源码网商城 (www.ymwmall.com) 版权所有