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 »RMAN backup and logical backup With Different User
RMAN backup and logical backup With Different User Step 1: Create the user CREATE USER bkp_user IDENTIFIED BY bkp_user DEFAULT TABLESPACE users TEMPORARY TABLESPACE temp PROFILE DEFAULT; GRANT CONNECT TO bkp_user; GRANT exp_full_database TO bkp_user; GRANT imp_full_database TO bkp_user; GRANT recovery_catalog_owner TO bkp_user; GRANT select_catalog_role TO bkp_user; GRANT CREATE SESSION TO bkp_user; Step 2: Connect RMAN with the Above Created User …
Read More »Oracle RMAN Commands List
Oracle RMAN Commands List Here is the list of key most RMAN commands that are used for Backup and related activities: LIST Commands LIST Commands are generic RMAN commands …
Read More »
Oracle Solutions We believe in delivering tangible results for our customers in a cost-effective manner