Go Back   TechArena Community > Software > Software Development
Become a Member!
Forgot your username/password?
Register Tags Active Topics RSS Search Mark Forums Read SiteMap

Tags: , ,

Sponsored Links



Problem with backup processing

Software Development


Reply
 
Thread Tools Search this Thread
  #1  
Old 25-02-2010
Member
 
Join Date: Oct 2009
Posts: 82
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.
Reply With Quote
  #2  
Old 25-02-2010
Praetor's Avatar
Member
 
Join Date: Apr 2008
Posts: 1,937
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.
Reply With Quote
  #3  
Old 25-02-2010
Member
 
Join Date: May 2008
Posts: 1,990
User manged backup

User manged backup

The use manged backup can take much time if you have a heavy database and performing more and more operations.In the user managed backup,the redo logs are continuously generating because database is running and users are making query on the running database.
In this situation,the database follow a strategy of backup in the open mode using some conceptual statements -

SQL> ALTER DATABASE BEGIN BACKUP <Name_of_Tablespace>;
SQL> ALTER DATABASE END BACKUP <Name_of_Tablespace>;

These two statements are used to take the backup which is taking parallel way.otherwise more and more redo can decrease the performance and other functionality of database.
Reply With Quote
  #4  
Old 25-02-2010
kelfro's Avatar
Member
 
Join Date: Apr 2008
Posts: 1,976
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.
Reply With Quote
  #5  
Old 25-02-2010
Zecho's Avatar
Member
 
Join Date: May 2008
Posts: 2,267
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.
Reply With Quote
  #6  
Old 25-02-2010
Reegan's Avatar
Member
 
Join Date: Oct 2005
Posts: 2,299
Output of the command

Output of the command :

During the execution of this command,the following output would be shown on your screen for your file verification-

Code:
DBVERIFY - Verification starting : FILE = t_db1.dbf 
................................................................................
 DBVERIFY - Verification complete 
 
Total Pages Examined         : 8255 
Total Pages Processed (Data) : 2045 
Total Pages Failing   (Data) : 0 
Total Pages Processed (Index): 733 
Total Pages Failing   (Index): 0 
Total Pages Empty            : 5686 
Total Pages Marked Corrupt   : 0 

Total Pages Influx           : 0
Where the meaning of particular parameters in output would be as follows:

Pages = Number of Blocks
Examined = Number of blocks in the data file
Processed = Verified blocks
Failing = The blocks which has been failed during checking
Marked Corrupt = The blocks for which the cache header is invalid
Influx = The blocks which is read and written at the point of time.
Reply With Quote
Reply

  TechArena Community > Software > Software Development


Thread Tools Search this Thread
Search this Thread:

Advanced Search


Similar Threads for: "Problem with backup processing"
Thread Thread Starter Forum Replies Last Post
7Customizer problem while processing Visidon Windows Software 5 29-10-2010 05:41 PM
Problem with processing D90's NEF in CameraRaw 5.2 Roockie Windows Software 5 12-07-2010 05:33 PM
Server backup problem Carnie Windows Software 3 11-12-2009 02:25 PM
problem to start word processing GoldSpot Windows Software 3 10-01-2009 12:06 PM
Vista Backup problem: Looking for backup devices Vladimir Petrov Windows Vista Performance 2 10-12-2008 06:47 AM


All times are GMT +5.5. The time now is 11:13 AM.