Posts by Sivaraman Murugappan

ORA-08104: this index object is being online built or rebuild

” ORA-08104: this index object 4357688 is being online built or rebuilt ” error in index Rebuild. Details of error are as follows. SQL> ALTER INDEX MSDBA.TEST_INDEX REBUILD TABLESPACE MYTBS…

Read More

How to Create Database Links in Oracle 12C

           A database link allows you to reference objects in a remote database. Typically, the remote database will be another Oracle database, but it can be…

Read More

ORA-02243: invalid ALTER INDEX or ALTER MATERIALIZED VIEW option in Oracle 12C

  Details of error are as follows. ALTER INDEX MSDBA.TEST_INDEX DISABLE Error at line 1 ORA-02243: invalid ALTER INDEX or ALTER MATERIALIZED VIEW option ORA-02243: invalid ALTER INDEX or ALTER MATERIALIZED…

Read More

FULL TABLE SCAN VS INDEX SCAN PERFORMACE in Oracle 12C

Let’s take the employees database, and slightly modify the employees tables:       mysql> ALTER TABLE employees ADD INDEX idx_first (first_name),ENGINE=InnoDB;   1 SELECT * FROM employees ORDER BY…

Read More

How to Add and drop Disks to ASM Disk Group in Oracle 12C

I will explain How to Add Disks to ASM Disk Group in Oracle with ALTER DISKGROUP DATA ADD DISK Command in this post. You can add disks to ASM Disk…

Read More

How to Use TABLE_EXISTS_ACTION During IMPDP in Oracle Datapump

I will explain How to Use TABLE_EXISTS_ACTION During IMPDP in Oracle Datapump in this post. Table_exists_action: While Import process is running if any table exists in database what will Oracle do…

Read More

configure disk devices using Oracle ASMLIB in Oracle 12C

To manage Oracle database’s storage, Oracle recommends The Automatic Storage Management (ASM) to be used regardless of database’s configuration: single-instance Oracle Database or Oracle Real Application Clusters configurations. It is…

Read More

How to Use CONTENT ( DATA_ONLY , METADATA_ONLY ) Parameter in Oracle Datapump

I will explain How to Use CONTENT ( DATA_ONLY , METADATA_ONLY ) Parameter in Oracle Datapump   CONTENT: This parameter enables you to filter what is export and import during the…

Read More

How to Flashback Database to Guaranteed Restore Point on Oracle 12C

Flashback must be turned on in order to be able to use Guaranteed Restore Point. To enable Flashback, we need to use the FRA parameter like following. SQL> show parameter…

Read More

RECOVER DATAFILE: ORA-01157: cannot identify/lock data file %s – see DBWR trace file

Cause: The background process was either unable to find one of the data files or failed to lock it because the file was already in use. The database will prohibit…

Read More