Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • Establishing trusted relationship between dbmonitor( central monitoring) and monitoring targets. Linux/Unix
  • SQL Server: How to see current transactions or requests SQL Server
  • Python class import from different folders Python/PySpark
  • Import and export statements Oracle
  • temp_use.sql diplays usage of temp ts Oracle
  • Wait time tuning research Oracle
  • DBMS_PROFILER for tuning PLSQL programs. Oracle
  • Recovering lost SYS password Oracle
  • Jai Shree Ram Oracle
  • My Test Case On 21-OCT-2005 Oracle
  • How to set Processes Parameter Oracle
  • Rename Tablespace Oracle
  • CPU speed on Linux Linux/Unix
  • How to remove blank lines using vi editor command Linux/Unix
  • Good notes on Oracle Events Oracle

Rename Oracle Instance Name

Posted on 02-Aug-2005 By Admin No Comments on Rename Oracle Instance Name

Renaming oracle instance (from UOCTEST to UAS)

Note : Remember to rename datafile, logfile, controlfile, parameterfile and passwordfile. Aslo need to change listener.

******** Parameter File ***************************

(1) check whether instance is using SPFIlE. using “show parameter spfile”

(2) SQL> connect / as sysdba

SQL> “create pfile from spfile”

in 10g by default it will create pfile on $ORACLE_BASE/admin//pfile

i executed following following

create pfile=’$ORACLE_HOME/dbs/init_UOCTEST.ora’ from spfile;

(3) “cp init_UOCTEST.ora initUAS.ora”

(4) modify initUAS.ora and change UOCTEST to UAS. So now Pfile is ready.

********** Password File *********************

(5) Now for create a new password file as in previous instance passwordfile authentication was enabled (orapwUOCTEST exist).

orapwd file=orapwUAS password=flowers123 entries=10

**********Control file*************************

(6) alter database backup controlfile to trace;

Above statement will generate tracefile that contain ASCII definitions for controlfile in $UDUMP folder.

(7) get copy of “create controlfile” statement. I got following copy after deleting unnecessary comments.

***ORIGINAL***

STARTUP NOMOUNT

CREATE CONTROLFILE REUSE DATABASE “UOCTEST” RESETLOGS NOARCHIVELOG

MAXLOGFILES 16

MAXLOGMEMBERS 3

MAXDATAFILES 100

MAXINSTANCES 8

MAXLOGHISTORY 454

LOGFILE

GROUP 1 ‘/uocdb1/oradata/UOCTEST/redo01.log’ SIZE 10M,

GROUP 2 ‘/uocdb1/oradata/UOCTEST/redo02.log’ SIZE 10M,

GROUP 3 ‘/uocdb1/oradata/UOCTEST/redo03.log’ SIZE 10M

— STANDBY LOGFILE

DATAFILE

‘/uocdb1/oradata/UOCTEST/system01.dbf’,

‘/uocdb1/oradata/UOCTEST/undotbs01.dbf’,

‘/uocdb1/oradata/UOCTEST/sysaux01.dbf’,

‘/uocdb1/oradata/UOCTEST/users01.dbf’,

‘/uocdb1/oradata/UOCTEST/uas_data_01.dbf’,

‘/uocdb1/oradata/UOCTEST/uas_data_02.dbf’,

‘/uocdb1/oradata/UOCTEST/uas_data_03.dbf’,

‘/uocdb1/oradata/UOCTEST/uas_data_04.dbf’,

‘/uocdb2/oradata/UOCTEST/uas_index_01.dbf’,

‘/uocdb2/oradata/UOCTEST/uas_index_02.dbf’,

‘/uocdb2/oradata/UOCTEST/uas_index_03.dbf’,

‘/uocdb2/oradata/UOCTEST/uas_index_04.dbf’,

‘/uocdb1/oradata/UOCTEST/system02.dbf’,

‘/uocdb1/oradata/UOCTEST/neulion.dbf’,

‘/uocdb1/oradata/UOCTEST/neulion02.dbf’

CHARACTER SET UTF8

;

RECOVER DATABASE USING BACKUP CONTROLFILE

ALTER DATABASE OPEN RESETLOGS;

ALTER TABLESPACE TEMP ADD TEMPFILE ‘/uocdb1/oradata/UOCTEST/temp01.dbf’

SIZE 60817408 REUSE AUTOEXTEND ON NEXT 1048576 MAXSIZE 32767M;

***UPDATED***

STARTUP NOMOUNT

CREATE CONTROLFILE REUSE SET DATABASE “UAS” RESETLOGS NOARCHIVELOG

MAXLOGFILES 16

MAXLOGMEMBERS 3

MAXDATAFILES 100

MAXINSTANCES 8

MAXLOGHISTORY 454

LOGFILE

GROUP 1 ‘/uocdb1/oradata/UAS/redo01.log’ SIZE 10M,

GROUP 2 ‘/uocdb1/oradata/UAS/redo02.log’ SIZE 10M,

GROUP 3 ‘/uocdb1/oradata/UAS/redo03.log’ SIZE 10M

— STANDBY LOGFILE

DATAFILE

‘/uocdb1/oradata/UAS/system01.dbf’,

‘/uocdb1/oradata/UAS/undotbs01.dbf’,

‘/uocdb1/oradata/UAS/sysaux01.dbf’,

‘/uocdb1/oradata/UAS/users01.dbf’,

‘/uocdb1/oradata/UAS/uas_data_01.dbf’,

‘/uocdb1/oradata/UAS/uas_data_02.dbf’,

‘/uocdb1/oradata/UAS/uas_data_03.dbf’,

‘/uocdb1/oradata/UAS/uas_data_04.dbf’,

‘/uocdb2/oradata/UAS/uas_index_01.dbf’,

‘/uocdb2/oradata/UAS/uas_index_02.dbf’,

‘/uocdb2/oradata/UAS/uas_index_03.dbf’,

‘/uocdb2/oradata/UAS/uas_index_04.dbf’,

‘/uocdb1/oradata/UAS/system02.dbf’,

‘/uocdb1/oradata/UAS/neulion.dbf’,

‘/uocdb1/oradata/UAS/neulion02.dbf’

CHARACTER SET UTF8;

ALTER DATABASE OPEN RESETLOGS;

ALTER TABLESPACE TEMP ADD TEMPFILE ‘/uocdb1/oradata/UAS/temp01.dbf’ SIZE 1024M MAXSIZE 2048M;

(8) ****** Created Updated OS environment file *****

modify new envionment variable configuraiton file and .profile for new instance changes.

(9) ****** Shurtting Down running instance *******

shutdown normal or immediate running UOCTEST instance.

*** renaming OS folders ***

(10)

By looking as ascii control file i come to know the distribution of physical files are on /uocdb1 and /uocdb2 mountpoints. So renamed /uocdb1/oradata/UOCTEST to /uocdb1/oradata/UAS and /uocdb2/oradata/UOCTEST to /uocdb2/oradata/UAS on file system.

Also re-checked control_files, background_dump_dest, user_dump_dest & core_dump_dest parameter from initUAS.ora and made appropriate folder name changes at file system level.

(11)

Logout from server eaappprod21 and login in new env. variable settings.

(12) ***** Operational Statement *****

cd paresh

Oracle, SQL scripts

Post navigation

Previous Post: PLSQL Table Syntax 2
Next Post: eplan9i.sql

Related Posts

  • Composite Index creation tip from Vivek Oracle
  • tblwopk.sql /* Find Tables Without PK */ Oracle
  • Default User Profile Oracle
  • Renaming Global Name GLOBAL_NAME Oracle
  • How to find the real execution plan and binds used in that explain plan in Oracle 10g?? Oracle
  • Jai Shree Ram Oracle

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • Ansible (0)
  • AWS (2)
  • Azure (1)
  • Linux/Unix (149)
  • MYSQL (5)
  • Oracle (392)
  • PHP/MYSQL/Wordpress (10)
  • POSTGRESQL (0)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (17)
  • rman-dataguard (26)
  • shell (149)
  • SQL scripts (341)
  • SQL Server (6)
  • Uncategorized (0)
  • Videos (0)

Recent Posts

  • SQL Server Vs Oracle Architecture difference25-Jul-2025
  • SQL Server: How to see historical transactions25-Jul-2025
  • SQL Server: How to see current transactions or requests25-Jul-2025
  • T-SQL Vs PL/SQL Syntax25-Jul-2025
  • Check SQL Server edition25-Jul-2025
  • Checking SQL Server Version25-Jul-2025
  • Oracle vs MYSQL Architecture differences (For DBAs)24-Jul-2025
  • V$INSTANCE of Oracle in MYSQL24-Jul-2025
  • Day to day MYSQL DBA operations (Compared with Oracle DBA)24-Jul-2025
  • MYSQL and Oracle Comparison for Oracle DBA24-Jul-2025

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Committing distributed transaction using commit force Oracle
  • Unix command for system configuration Linux/Unix
  • remove archfiles only when it is applied to DR rm_archfiles.sh Linux/Unix
  • UTL_FILE test program Oracle
  • Backup and Recovery Scenarios Oracle
  • Convert multiple rows to single column Oracle
  • Processes Parameter decision Oracle
  • avail.sh ( find filesystem spae usage) Linux/Unix

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme