Skip to content
pvmehta.com

pvmehta.com

  • Home
  • About Me
  • Toggle search form
  • copying/removing directory with all its subdirectory Linux/Unix
  • Drop tempfiles from database Oracle
  • remove archfiles only when it is applied to DR rm_archfiles.sh Linux/Unix
  • telnet listening Linux/Unix
  • How to calculate PROCESSES parameter Oracle
  • To find explain plan for a statement that occurred in past. Oracle
  • ext#.sql Oracle
  • process id based files and processes Linux/Unix
  • Vivek Tuning for Row Locks. Oracle
  • find_pk.sql /* Find Primary Key */ Oracle
  • proc.sql Oracle
  • Remove DOS CR/LFs (^M) Linux/Unix
  • Best approach for Oracle database patching sequence to latest/required patchset along with CPU/PSU/any-other-one-off patch ID 865255.1 Oracle
  • restarting network in linux Linux/Unix
  • Read CSV file using PySpark Python/PySpark

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

  • Find All internal Parameters Oracle
  • TOP-N Sql to find Nth max or Top N rows Oracle
  • Find all users who have DML privileges Oracle
  • Oracle Material from OTN Oracle
  • Jai Shree Ram Oracle
  • Resolving RMAN Hung Jobs Oracle

Leave a Reply Cancel reply

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

Categories

  • AWS (2)
  • Azure (1)
  • Linux/Unix (149)
  • Oracle (387)
  • PHP/MYSQL/Wordpress (10)
  • Power-BI (0)
  • Python/PySpark (7)
  • RAC (17)
  • rman-dataguard (26)
  • shell (149)
  • SQL scripts (336)
  • Uncategorized (0)
  • Videos (0)

Recent Posts

  • SQL Tracker by SID sqltrackerbysid.sql22-Apr-2025
  • How to connect to Oracle Database with Wallet with Python.21-Mar-2025
  • JSON/XML Types in Oracle18-Mar-2025
  • CPU Core related projections12-Mar-2025
  • Exadata Basics10-Dec-2024
  • Reading config file from other folder inside class24-Sep-2024
  • Python class import from different folders22-Sep-2024
  • Transfer SQL Profiles from One database to other database.05-Sep-2024
  • Load testing on Oracle 19C RAC with HammerDB18-Jan-2024
  • Add new columns in dataframe30-Sep-2023

Archives

  • 2025
  • 2024
  • 2023
  • 2010
  • 2009
  • 2008
  • 2007
  • 2006
  • 2005
  • Search and replace editor command in vi Linux/Unix
  • fuser to check who is using diretory Linux/Unix
  • DBMS_STATS Metalinks Notes Oracle
  • How to know Number of CPUs on Sun Box Linux/Unix
  • Oracle Support Metalink ID 161818.1 Oracle
  • cur_sql.sql Oracle
  • scripts to take listener.log backup Linux/Unix
  • Implementing Listener Security Oracle

Copyright © 2025 pvmehta.com.

Powered by PressBook News WordPress theme