Posts

Showing posts from March, 2018

Database cloning using duplicate database from active database RMAN command

Image
Introduction: ========= Oracle RMAN Active Database Duplication is a new feature introduced in Oracle 11g R1. This option helps perform database copies without the need for relying on the source database backup. Oracle RMAN makes a copy of the source database (active database) at run time without the need of using its backup for the duplicate exercise.  I have found it very interesting and finally want to implement before I want to post it. However I feel this process will consume more load on the source server  This blog gives you a very simple way of cloning the database for the novice , as I am not making too complicated . Before I start I would like to share my environment  source Database name : orcl   Target Database name : clone   source server hostname : test1.oracle.com   target server hostname  : test2.oracle.com  Source listener  running on 1529   Target listener running on 15...

How to make CRS and ASM not to restart after server reboot

I have noticed that server rebooting is taking lot of time on a VM machine for every reboot, so I have decided to auto start of the crs and ASM service During this phase I have noticed an attribute called auto_start when I try to execute the below command crsctl stat res -p This AUTO_START attribute is there for several resources like ora.ASM ,ora.crs,ora.DATA_DG it has got 2 options restore(0) , never(2) and always (1) always (1)  Causes the resource to restart when the node restarts regardless of the resource’s state when the node stopped -restore (0)  Does not start the resource at restart time if it was in an offline state, such as STATE=OFFLINE, TARGET=OFFLINE, when the node stopped. The resource is restored to its state when the node went down. The resource is started only if it was online before and not otherwise. -never (2)  Oracle Clusterware never restarts the resource regardless of the resource’s state when the node is stopped. So I have dec...