ORACLE RAC 데이터베이스 이름 변경
[oracle@rac11g2 ~]$ sqlplus / as sysdba
SQL> shutdown immediate;
2. spfile 파일 백업
SQL> create pfile='/home/oracle/acct1.pfile' from spfile;
3. pfile 파일 클 러 스 터 수정database 는 false
*.cluster_database=FALSE
4. pfile 파일 을 사용 하여 단일 인 스 턴 스 데이터 베 이 스 를 mount 상태 로 시작 합 니 다.
SQL> startup mount pfile='/home/oracle/acct1.pfile';
5. nid 수정 dbname 실행
[oracle@rac11g1 ~]$ nid target=sys/oracle dbname=crmdb setname=y
DBNEWID: Release 11.2.0.4.0 - Production on Tue May 19 09:31:48 2015
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
Connected to database ACCT (DBID=3809824099)
Connected to server version 11.2.0
Control Files in database:
+DATA_DG/acct/controlfile/current.261.872692963
+DATA_DG/acct/controlfile/current.260.872692963
Change database name of database ACCT to CRMDB? (Y/[N]) => Y
Proceeding with operation
Changing database name from ACCT to CRMDB
Control File +DATA_DG/acct/controlfile/current.261.872692963 - modified
Control File +DATA_DG/acct/controlfile/current.260.872692963 - modified
Datafile +DATA_DG/acct/datafile/system.256.87269284 - wrote new name
Datafile +DATA_DG/acct/datafile/sysaux.257.87269284 - wrote new name
Datafile +DATA_DG/acct/datafile/undotbs1.258.87269284 - wrote new name
Datafile +DATA_DG/acct/datafile/users.259.87269284 - wrote new name
Datafile +DATA_DG/acct/datafile/example.267.87269300 - wrote new name
Datafile +DATA_DG/acct/datafile/undotbs2.268.87269351 - wrote new name
Datafile +DATA_DG/acct/tempfile/temp.266.87269298 - wrote new name
Control File +DATA_DG/acct/controlfile/current.261.872692963 - wrote new name
Control File +DATA_DG/acct/controlfile/current.260.872692963 - wrote new name
Instance shut down
Database name changed to CRMDB.
Modify parameter file and generate a new password file before restarting.
Succesfully changed database name.
DBNEWID - Completed succesfully.
6. ORACLE 수정SID 정보
노드 1 - ---
6.1 환경 변수
[oracle@rac11g1 ~]$ vi .bash_profile
export ORACLE_SID=crmdb1
6.2 구령 문건
[oracle@rac11g1 ~]$ cd $ORACLE_HOME/dbs
[oracle@rac11g1 dbs]$ orapwd file=orapwcrmdb1 password=oracle
6.3 pfile 파일 시작 데이터베이스 수정
*.cluster_database=TRUE
*.db_name='crmdb'
acct1 crmdb1 :%s/acct1/crmdb1/g
acct2 crmdb2 :%s/acct2/crmdb2/g
6.4 새 spfile 매개 변수 파일 만 들 기
[oracle@rac11g1 ~]$ sqlplus / as sysdba
SQL> startup pfile='/home/oracle/acct1.pfile' nomount;
SQL> create spfile='+DATA_DG' from pfile='/home/oracle/acct1.pfile';
6.5 pfile 매개 변수 파일 만 들 기
[oracle@rac11g1 ~]$ cd $ORACLE_HOME/dbs
[oracle@rac11g1 dbs]$ vi initcrmdb1.ora
SPFILE='+DATA_DG/crmdb/PARAMETERFILE/spfile.293.880105913'
노드 2 - ---
1 환경 변수
[oracle@rac11g2 ~]$ vi .bash_profile
export ORACLE_SID=crmdb2
2. 구령 문건
[oracle@rac11g2 ~]$ cd $ORACLE_HOME/dbs
[oracle@rac11g2 dbs]$ orapwd file=orapwcrmdb2 password=oracle
3. 매개 변수 파일
[oracle@rac11g2 dbs]$ vi initcrmdb2.ora
SPFILE='+DATA_DG/crmdb/PARAMETERFILE/spfile.293.880105913'
7. crs 자원 수정
7.1 이전 인 스 턴 스 설정 삭제
[oracle@rac11g1 ~]$ srvctl remove database -d acct
7.2 새 인 스 턴 스 설정 추가
[oracle@rac11g1 ~]$ srvctl add database -d crmdb -o /oracle/app/oracle/product/11.2.0/db_1/
[oracle@rac11g1 ~]$ srvctl add instance -d crmdb -i crmdb1 -n rac11g1
[oracle@rac11g1 ~]$ srvctl add instance -d crmdb -i crmdb2 -n rac11g2
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Oacle] cent os 6.4 에 Oacle 11gr 2 노트 설치설치 환경: Linux jwg02.jws 2.6.32-358.el6.x86_64 #1 SMP Fri Feb 22 00:31:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux tigervnc...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.