Installation/Configurations10g

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 »

RMAN backup and logical backup With Different User

OracleEBSConfig

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 »