How to Check if Oracle Database is Runningby Ed ChenJanuary 26, 2023March 13, 2023To make sure that an Oracle database is alive, we can use a piece of shell script to check it. [oracle@test ~]$ vi check_database_alive.sh #!/bin/bash… Read More »How to Check if Oracle Database is Running
How to Change DB_UNIQUE_NAME of a RAC Databaseby Ed ChenFebruary 3, 2021February 12, 2023In previous post, we have talked about how to change DB_NAME of a RAC database. In this post, we will talk about how to change… Read More »How to Change DB_UNIQUE_NAME of a RAC Database
How to Change DB_UNIQUE_NAME of a Single-Instance Databaseby Ed ChenJanuary 20, 2021July 12, 2021In previous post, we have talked about how to change DB_NAME of a single-instance database. In this post, we will talk about how to change… Read More »How to Change DB_UNIQUE_NAME of a Single-Instance Database
Srvctl Add Database Exampleby Ed ChenDecember 5, 2020December 15, 2022Add RAC DB Let me ask you a question, why would you like to add a RAC database to a cluster? In my experience, there're… Read More »Srvctl Add Database Example