1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
| [oracle@rac02 ~]$ srvctl stop database -d mecbs
[oracle@rac02 ~]$ sqlplus / as sysdba
SQL*Plus: Release 11.2.0.4.0 Production on Mon Sep 14 23:24:19 2015
Copyright (c) 1982, 2013, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup mount;
ORACLE instance started.
Total System Global Area 776646656 bytes
Fixed Size 2257272 bytes
Variable Size 570429064 bytes
Database Buffers 197132288 bytes
Redo Buffers 6828032 bytes
Database mounted.
SQL> alter system set log_archive_dest_1='LOCATION=+ARCH' scope=spfile sid='*';
System altered.
SQL> alter system set cluster_database=false scope=spfile;
System altered.
SQL> alter database archivelog;
Database altered.
SQL> alter database open;
Database altered.
SQL> alter system set cluster_database=true scope=spfile;
System altered.
SQL> shutdow immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL> startup
ORACLE instance started.
SQL> startup
ORACLE instance started.
Total System Global Area 776646656 bytes
Fixed Size 2257272 bytes
Variable Size 570429064 bytes
Database Buffers 197132288 bytes
Redo Buffers 6828032 bytes
Database mounted.
Database opened.
SQL> archive log list;
Database log mode Archive Mode
Automatic archival Enabled
Archive destination +ARCH
Oldest online log sequence 4
Next log sequence to archive 5
Current log sequence 5
开启其他节点。。。
|