Results 1 to 6 of 6

Thread: Problem with backup processing

  1. #1
    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.

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    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.

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    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.

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    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.

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    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.

  6. #6
    Join Date
    Oct 2005
    Posts
    2,393

    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.

Similar Threads

  1. 7Customizer problem while processing
    By Visidon in forum Windows Software
    Replies: 5
    Last Post: 29-10-2010, 04:41 PM
  2. Problem with processing D90's NEF in CameraRaw 5.2
    By Roockie in forum Windows Software
    Replies: 5
    Last Post: 12-07-2010, 04:33 PM
  3. Server backup problem
    By Carnie in forum Windows Software
    Replies: 3
    Last Post: 11-12-2009, 02:25 PM
  4. Sms backup problem with nokia 7610
    By Mega mind in forum Portable Devices
    Replies: 2
    Last Post: 02-05-2009, 11:48 AM
  5. problem to start word processing
    By GoldSpot in forum Windows Software
    Replies: 3
    Last Post: 10-01-2009, 12:06 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,750,724,815.30419 seconds with 16 queries