Dear Friends, Wish you all happy friendship day….!!!! Just because I have best wishers like you, our blog cross more than 25000 hits within lst 5 months and hope this will keep going….Thanks from bottom of my heart to all…..My Oracle journey will be continue till i do have friends and best wishers like you….!!!! [...]
Archive for the ‘Backup and Recovery’ Category
Wish you all happy friendship day….!!!!
Posted in Backup and Recovery, tagged friendship on August 7, 2011 | 5 Comments »
Oracle Backup and Recovery Solutions
Posted in Backup and Recovery, tagged Backup, Database, recovery, Rman backup on February 17, 2011 | Leave a Comment »
When implementing a backup and recovery strategy, you have the following solutions available: – Recovery Manager (RMAN) This tool integrates with sessions running on an Oracle database to perform a range of backup and recovery activities, including maintaining an RMAN repository of historical data about backups. You can access RMAN through the command line or [...]
Happy Valentine’s Day
Posted in Backup and Recovery on February 14, 2011 | 1 Comment »
Don’t wait until it’s too late to tell someone how much you love, how much you care. Because when they’re gone, no matter how loud you shout and cry, they won’t hear you anymore. Happy Valentine’s Day
What happens during oracle database hot backup
Posted in Backup and Recovery, tagged Backup, Oracle, usermnaged on February 10, 2011 | 11 Comments »
This was the first question ask to me during one interview. According to oracle documentation you already heard/aware that during an Oracle tablespace hot backup, a script or program or command puts a tablespace into backup mode, then copies the datafiles to disk or tape, then takes the tablespace out of backup mode. We [...]
User Managed hot backup of oracle database
Posted in Backup and Recovery, tagged Backup, Data file, Database, sql, Tablespace on February 10, 2011 | 15 Comments »
Used managed backup means you take backup without any oracle feature. Suppose if you take backup by Operating system then it is called user managed backup. And the term hot backup means taking your backup whenever your database is at open state. To take full database backup follow the following steps. 1)Before proceed remember you [...]
ORA-12054: cannot set the ON COMMIT refresh attribute for the materialized view
Posted in Backup and Recovery, Performance Tunning, tagged Database, Materialized view, Oracle, Oracle Database on February 4, 2011 | 1 Comment »
Error Description: The scenario is I have created a materialized view through database link over a table reside on the remote database. I used the ON COMMIT option and it fails with ORA-12054 as below. SQL> create materialized view scott.mv_phones 2 TABLESPACE users 3 REFRESH FAST on commit 4 WITH rowid 5 AS select ID, [...]
Benefits of using views
Posted in Backup and Recovery, Performance Tunning on February 4, 2011 | 1 Comment »
•With views you can restrict database access in both column level and row level. Selective portion of tables can be hidden with view. •Creating complex view and query on them allow you to make complex query easy. They allow you to make simple queries to retrieve the results from complicated queries. •Views can be used [...]
Backup ARCHIVELOG files with RMAN
Posted in Backup and Recovery, tagged Database, Rman backup, Script on January 8, 2011 | Leave a Comment »
RMAN> run { Allocate channel d1 type disk format ‘/u01/backupdb/orcl_full_%T_%s_%p.bkp’; Backup database plus archivelog; } RMAN> list backup summary;
