Tablespace Level Fragmentation in Oracle Database Introduction In this article, I will discuss tablespace level fragmentation, which causes slowness and wastage of space. Fragmentation is a common issue in Oracle …
Read More »Oracle Apex Upgrade to 22.2
Oracle Apex Upgrade to 22.2 ORACLE APEX Oracle APEX (also known as APEX or Oracle Application Express) is an enterprise low-code development platform from Oracle Corporation that is used …
Read More »Useful Commands For Unix Operating System
Useful Commands For Unix Operating System 1.Deleting files older than N number of days ? find . -name ‘*.trc’ -mtime +[N in days] -exec rm {} \; Command will …
Read More »Temporary Tablespace and Datafile Management in Oracle database
Temporary Tablespace and Datafile Management in Oracle database 1. For Finding temp file and temp tablespace with size SELECT file#, status, bytes / 1024 / 1024 “Size_MB”, name FROM v$tempfile; SELECT file_name, tablespace_name, bytes / 1024 / 1024 / 1024, status FROM dba_temp_files; 2. Add …
Read More »Change Date and Time Formats In Oracle Database?
Change Date and Time Formats In Oracle Database? Option 1. If We want to change this format to DD/MONTH/YYYY format. SQL> alter session set nls_date_format=’DD/MONTH/YYYY’; Session altered. SQL> select sysdate …
Read More »Difference between P-File and SP-File?
Difference between P-File and SP-File? P-FILE SP-FILE It is called as parameter file. It is called as server parameter file. P-File is ASCII file and it can be edited Manually spfile is binary file and it …
Read More »Oracle Real Application Cluster Intro
Oracle Real Application Cluster Intro RAC Defination Oracle RAC stands for Oracle Real Application cluster. It is a clustering solution that ensures high availability of databases by providing instance failover …
Read More »Data Guard Vs SAN To SAN Replication
Data Guard Vs SAN to SAN Replication Oracle Data Guard SAN-to-SAN Implementation Cost Low High Database Aware Yes No Granularity of Replication Transaction level Disk Block Level Distance Limitations …
Read More »Comparison Between Oracle GoldenGate and DataGuard
Comparison Between Oracle GoldenGate and DataGuard Technical Points Oracle Dataguard / Active Dataguard Oracle Golden Gate Operating System Primary Database and Standby Database Should be same. (But 11g Onwards it …
Read More »Find and Delete Older Files in Linux
Delete Older Files in Linux Files older than 1 day find /rman/arch/*.dbf -mtime +1 -exec mv {} /rman/archbkp/ \; Move files older than 25 hours find /rman/arch/*.dbf -mmin …
Read More »