Results 1 to 4 of 4

Thread: Issues with Redo logfiles and destinations

  1. #1
    Join Date
    Nov 2009
    Posts
    56

    Issues with Redo logfiles and destinations

    we have a database servers for large application.We set initialization parameters
    log_archive_dest_1="/u02/fra" and log_archive_dest_2 ="/u04/data".
    But after some time the parameter "log_archive_dest_2 " changed to "/u01/get"
    can u please tell me what are the operations on database that can change this parameters values? I want to keep only three destinations for the database.

  2. #2
    Join Date
    Feb 2008
    Posts
    1,852

    Issues with Redo logfiles and destinations

    Archived Redo Log :

    When you perform any database operation Like insert,update,delete and much more, the changes needs to save somewhere.For that concept we use redolog procedure.

    For a database, There can be 100 to 1000 user performing some operation at a time then a lot of changes made currently.They should be stored somewhere but logfile don't have much capability to contain everything.So using another procedure we place the copy of logfile in a secure place that is known as archive destination and procedure is called archiving.The generated file on the destination is called as Redo logfile.

  3. #3
    Join Date
    Jan 2008
    Posts
    1,521

    Issues with Redo logfiles and destinations

    In your organization, a database is being used for a larger application and you are saying that your archiving destination parameter has been changed while you have configured something else.

    It is being performed by the DBA and may be you are unknown to that person. Someone know the password of your Administrator account of database.

    You need to change the password of database and then configure your database.

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

    configuring the destination of Redo logfiles

    These are the steps below through which you can specify the destination of archive log files of your database:

    1. Shut down your database first using

    SQL>SHUTDOWN ;
    2. Open your pfile(parameter file) and change the parameter

    SQL>LOG_ARCHIVE_DEST_1 = 'LOCATION = /disk1/archive';
    if you are archiving to a standby database location you have to set the parameter
    SQL>LOG_ARCHIVE_DEST_4 = 'SERVICE = standby1';
    you can set at least 10 destinations for archiving.

    3. Enter command to reflect the changes in spfile also

    SQL>Create spfile from pfile;
    4. Start your database using

    SQL>startup

Similar Threads

  1. E72 - Nokia Messaging and Destinations problem
    By Beryl in forum Portable Devices
    Replies: 4
    Last Post: 22-04-2010, 12:31 AM
  2. Replies: 5
    Last Post: 24-03-2010, 11:56 PM
  3. How to redo my computer without a disk
    By Carlee in forum Operating Systems
    Replies: 2
    Last Post: 17-08-2009, 02:31 PM
  4. Multiple destinations for data backup
    By AmdUser in forum Windows Software
    Replies: 3
    Last Post: 13-05-2009, 01:56 PM
  5. destinations.msi
    By Jess Aynes in forum Vista Help
    Replies: 4
    Last Post: 31-03-2008, 06:40 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,717,548,375.89821 seconds with 16 queries