Problem with backup processing
Hello sir,
I installed the oracle 9i database and taken a backup using user managed way,I had taken the backup when database was running.
Now,I need to recover the database but the data which I lost due to failure is not being recovered. I think,there is some destroyed files has been copied.
I need to recover those data again,how would I do that.
Please suggest me some tools and trick regarding this.
Problem with backup processing
The database backup and recover process is more and more sensitive thing for database administrator.You can take the back up of database in two ways-
User managed and RMAN backup and the user managed can be taken in closed and open both.
During the user managed backup ,one of the view is provided by the oracle database which can help you track the current backup position.
The view contains different columns which interacts with the current position of the backup.The view called as "V$BACKUP".
Code:
SQL> Desc V$BACKUP ;
The query will show all the possible columns which you can use to know the condition of backup and name of file or tablespace which is
continue or has been done.
DBVERIFY Utility in backup processing
DBVERIFY Utility in backup processing
DBVERIFY,an external command-line utility which investigate the integrity checking of data structure.It is also used to check the validity of files which has been backed up.it checks that the particular file is able to use in recovery phase or not.
The command-line of DBVERIFY uses two interfaces -
1- The first interface,used to verify disk blocks for a single data file.
2- The second interface,used to allocate a segment for checking.
Using DBVERIFY command line interface
Using DBVERIFY command line interface:
I am going to show you a simple example to use DBVERIFY command line interface for a data file.The file would be scanned and after all the result will tell you the output at the block level.As a Long discussion,This is very clear,DBVERIFY utility is closely related and dependent on the operating
system.
The command which would be used to verification of a data file would be as follows:
Code:
SQL> % dbv FILE=t_db1.dbf FEEDBACK=100
The FEEDBACK shows "display single period (.) for every 100 pages completed.The pages specified the operating
system component.