Mohammad Samad

Author's posts

After Revoked Tablespace Quota From User in Oracle

In topic, I will descript how Oracle handle once we revoke tablespace quota from user. Once blocks assigned to a segment, even after revoked the Tablespace quota and deleted records from table, all allocated block will remain mapping with segment until we released block by using Shrink. This is the one good reason to release …

Continue reading

Unused or Drop Column? Which option should use?

Sometimes DBA got request to drop the table’s columns. Oracle has following options to complete this task. Logical Delete. Physical Delete. Claim space for logical delete columns. Claim space for Physical delete column. Conclusion. In this article, I will discuss which option is more appropriate for big size of table. For small table, even physical …

Continue reading

Oracle RAC Cache Fusion

Until Oracle 8i released, Oracle Introduced Parallel Server on Oracle 6i version. Oracle Introduced Real Application Cluster concept on Oracle 8i version. Oracle Cache Fusion is one of the important component in Oracle RAC environment. What is Cache Fusion: Oracle RAC has two or more instances, and it uses Cache Fusion to smoothly move data …

Continue reading

Oracle Database 19c Installation On Oracle Linux 7.1

I will describe the installation process of Oracle 19c (19.3) Database on Oracle Linux 7.1 on VM. 1. Create VM. 2. Software Download. 3. Install Oracle Linux 7.1 on VM. 4. Oracle Database Installation Prerequisites. 5. Oracle Database Software Installation. 6. Create a Container Database Using DBCA. 7. Create a Non-container Database Using DBCA. 8. …

Continue reading

How to Rename Ethernet Interface to eth0 in Linux on VM

Sometime you may need to change the Network Interface Name on your system. I faced issue while I was cloning a node to prepare a new node for RAC Environments on Oracle Linux 6.5. When you clone a VM, you need to reassign the Network device means it will assign new UUID for the device …

Continue reading

Copy Password File From Primary ASM to Standby ASM on Oracle 12c

If create a database using DBCA, usually password file create on ASM Diskgroup. For RAC, this is also recommended to use ASM Diskgroup for spfile and password file. In this topic, I will show how to copy password file from ASM of Primary database to Standby on ASM. Password File location on Primary Database:

Continue reading

Unable To Load Module Oracleasm in Oracle 12c

CRS (Cluster Ready Service) is not starting and getting ‘FATAL: Module oracleasm not found’ error on log files. [root@ocmnode1 ~]# cat /var/log/messages Aug 12 01:32:08 ocmnode1 modprobe: FATAL: Module oracleasm not found.Aug 12 01:32:33 ocmnode1 modprobe: FATAL: Module oracleasm not found.Aug 12 01:34:32 ocmnode1 modprobe: FATAL: Module oracleasm not found. After checked in details found …

Continue reading

Migrating OCR, Voting Disk and MGMTDB to another ASM DiskGroup in 12c RAC

Sometime DBA need to move or migrate below mentioned files or DB to different ASM DiskGroup for difference reason. I will show how to move or migrate below mentioned files or DB from one ASM DiskGroup to Another: How to move or migrate OCR and Voting Disk from one ASM Diskgroup to another. How to …

Continue reading

Adding a Node to Oracle RAC 12c

Complete below list of tasks: DBA may need to add a new node or existing node (which got deleted from cluster) into Clusterware. List of tasks for New Node: Install same version of OS Setup environment variable Install all required package including Oracleasm Configure Networking (IP and others) Check Time Synchronization  Change Recommended Kernel Parameters …

Continue reading

Deleting a Node to Oracle RAC 12c

A node in the cluster may crash due to hardware or OS problems and is not recoverable. So DBA needs to delete a problematic node from clusterware. In this topic I will show discuss how to delete a node from two nodes RAC. Two Nodes: ocmnode1 will be deleted ocmnode1 ocmnode2 Deinstall Oracle Home:

Continue reading