Logs archiving for the RAC ASM basics

Hello

I have a question about logs archiving on the ASM database located on a RAC. I created a database orcl who has orcl1 instance on node1 and orcl2 on Node2. For the backup of this database, I enabled for the database to archivelog.

After a few transactions and backups, I noticed that there are two sets of archiving logs created on each node in the folder $ORACLE_HOME/dbs. In node 1, it starts with arch1_ * and node2 is arch2_ *.

IWhy is it creates logs archiving on local disks, in which she should ideally create disks asm which is shared between the nodes. My backup application fails with journal archive not found error, because it searches newspaper archives in the other node.

All entries on this will be useful.

Amith

Hello

I have a question about logs archiving on the ASM database located on a RAC. I created a database orcl who has orcl1 instance on node1 and orcl2 on Node2. For the backup of this database, I enabled for the database to archivelog.

After a few transactions and backups, I noticed that there are two sets of archiving logs created on each node in the folder $ORACLE_HOME/dbs. In node 1, it starts with arch1_ * and node2 is arch2_ *.

I believe that it is missing from your configuration database and Oracle uses the default location. (i.e. your "$ORACLE_HOME/dbs")

ARCHIVELOG must focus on a shared domain.

You need the parameter config below:

SQL> show parameter db_recovery_file
NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
db_recovery_file_dest                string
db_recovery_file_dest_size           big integer 

Or location of default config:

SQL> show parameter log_archive_dest

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
log_archive_dest                     string

IWhy is it creates logs archiving on local disks, in which she should ideally create disks asm which is shared between the nodes. My backup application fails with journal archive not found error, because it searches newspaper archives in the other node.

To resolve this problem see this example:

SQL> show parameter recover

NAME                                 TYPE        VALUE
------------------------------------ ----------- ------------------------------
db_recovery_file_dest                string
db_recovery_file_dest_size           big integer 1

SQL> archive log list;
Database log mode              Archive Mode
Automatic archival             Enabled
Archive destination            /u01/app/oracle/product/10.2.0/db_1/dbs/
Oldest online log sequence     2
Next log sequence to archive   3
Current log sequence           3
SQL>

SQL> alter system set db_recovery_file_dest_size=20G scope=both sid='*';

System altered.

SQL> alter system set db_recovery_file_dest='+FRA' scope=both sid='*';

System altered.

SQL> archive log list;
Database log mode              Archive Mode
Automatic archival             Enabled
Archive destination            USE_DB_RECOVERY_FILE_DEST
Oldest online log sequence     5
Next log sequence to archive   6
Current log sequence           6
SQL>

With RMAN

RMAN> CONFIGURE CHANNEL 1 DEVICE TYPE DISK CONNECT 'sys/oracle@db10g1';

new RMAN configuration parameters:
CONFIGURE CHANNEL 1 DEVICE TYPE DISK CONNECT '*';
new RMAN configuration parameters are successfully stored
starting full resync of recovery catalog
full resync complete

RMAN>  CONFIGURE CHANNEL 2  DEVICE TYPE DISK CONNECT  'sys/oracle@db10g2';

new RMAN configuration parameters:
CONFIGURE CHANNEL 2 DEVICE TYPE DISK CONNECT '*';
new RMAN configuration parameters are successfully stored
starting full resync of recovery catalog
full resync complete

RMAN> list archivelog all;

using target database control file instead of recovery catalog

List of Archived Log Copies
Key     Thrd Seq     S Low Time  Name
------- ---- ------- - --------- ----
1       1    3       A 28-FEB-11 /u01/app/oracle/product/10.2.0/db_1/dbs/arch1_3_744216789.dbf
2       2    2       A 27-FEB-11 /u01/app/oracle/product/10.2.0/db_1/dbs/arch2_2_744216789.dbf

RMAN> crosscheck archivelog all;

allocated channel: ORA_DISK_1
channel ORA_DISK_1: sid=127 instance=db10g1 devtype=DISK
allocated channel: ORA_DISK_2
channel ORA_DISK_2: sid=135 instance=db10g2 devtype=DISK
validation succeeded for archived log
archive log filename=/u01/app/oracle/product/10.2.0/db_1/dbs/arch1_3_744216789.dbf recid=1 stamp=744292116
Crosschecked 1 objects

validation succeeded for archived log
archive log filename=/u01/app/oracle/product/10.2.0/db_1/dbs/arch2_2_744216789.dbf recid=2 stamp=743939327
Crosschecked 1 objects

RMAN> backup archivelog all delete input;

Starting backup at 28-FEB-11
current log archived
using channel ORA_DISK_1
using channel ORA_DISK_2
channel ORA_DISK_1: starting archive log backupset
channel ORA_DISK_1: specifying archive log(s) in backup set
input archive log thread=1 sequence=3 recid=1 stamp=744292116
channel ORA_DISK_1: starting piece 1 at 28-FEB-11
channel ORA_DISK_2: starting archive log backupset
channel ORA_DISK_2: specifying archive log(s) in backup set
input archive log thread=2 sequence=2 recid=2 stamp=743939327
channel ORA_DISK_2: starting piece 1 at 24-FEB-11
channel ORA_DISK_1: finished piece 1 at 28-FEB-11
piece handle=+FRA/db10g/backupset/2011_02_28/annnf0_tag20110228t120354_0.265.744293037 tag=TAG20110228T120354 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
channel ORA_DISK_1: deleting archive log(s)
archive log filename=/u01/app/oracle/product/10.2.0/db_1/dbs/arch1_3_744216789.dbf recid=1 stamp=744292116
channel ORA_DISK_2: finished piece 1 at 24-FEB-11
piece handle=+FRA/db10g/backupset/2011_02_24/annnf0_tag20110228t120354_0.266.743940249 tag=TAG20110228T120354 comment=NONE
channel ORA_DISK_2: backup set complete, elapsed time: 00:00:03
channel ORA_DISK_2: deleting archive log(s)
archive log filename=/u01/app/oracle/product/10.2.0/db_1/dbs/arch2_2_744216789.dbf recid=2 stamp=743939327
channel ORA_DISK_1: starting archive log backupset
channel ORA_DISK_1: specifying archive log(s) in backup set
input archive log thread=1 sequence=4 recid=4 stamp=744293023
input archive log thread=2 sequence=3 recid=3 stamp=743940232
channel ORA_DISK_1: starting piece 1 at 28-FEB-11
channel ORA_DISK_1: finished piece 1 at 28-FEB-11
piece handle=+FRA/db10g/backupset/2011_02_28/annnf0_tag20110228t120354_0.267.744293039 tag=TAG20110228T120354 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
channel ORA_DISK_1: deleting archive log(s)
archive log filename=+FRA/db10g/archivelog/2011_02_28/thread_1_seq_4.264.744293023 recid=4 stamp=744293023
archive log filename=+FRA/db10g/archivelog/2011_02_24/thread_2_seq_3.263.743940231 recid=3 stamp=743940232
Finished backup at 28-FEB-11

Starting Control File and SPFILE Autobackup at 28-FEB-11
piece handle=+FRA/db10g/autobackup/2011_02_28/s_744293039.263.744293039 comment=NONE
Finished Control File and SPFILE Autobackup at 28-FEB-11

SQL> alter system archive log current;

System altered.

RMAN> list archivelog all;

using target database control file instead of recovery catalog

List of Archived Log Copies
Key     Thrd Seq     S Low Time  Name
------- ---- ------- - --------- ----
5       1    5       A 28-FEB-11 +FRA/db10g/archivelog/2011_02_28/thread_1_seq_5.264.744293089
6       2    4       A 24-FEB-11 +FRA/db10g/archivelog/2011_02_24/thread_2_seq_4.268.743940307

RMAN> CONFIGURE CHANNEL 1 DEVICE TYPE DISK CLEAR;

old RMAN configuration parameters:
CONFIGURE CHANNEL 1 DEVICE TYPE DISK CONNECT '*';
old RMAN configuration parameters are successfully deleted

RMAN> CONFIGURE CHANNEL 2 DEVICE TYPE DISK CLEAR;

old RMAN configuration parameters:
CONFIGURE CHANNEL 2 DEVICE TYPE DISK CONNECT '*';
old RMAN configuration parameters are successfully deleted

RMAN> exit

Recovery Manager complete.

Kind regards
Levi Pereira

Published by: Levi Pereira on February 28, 2011 12:16

Tags: Database

Similar Questions

  • Reg apply log archiving after the transfer of data files

    Hi all

    That I reinstalled the main server of the D-Drive E-reader data files using the command line.
    C:\>Move <source_path> <destination_path>
    The redo logs for the move operation will apply on the eve of the database?
    In addition, what happens if the data files are moved manually in the primary database (i.e. without using the command prompt)?


    Thank you
    Madhu

    See this doc. Keyword search Rename a data file in the primary database

    http://docs.Oracle.com/CD/B28359_01/server.111/b28294/manage_ps.htm#i1034172

    Also, you need to update primary database controlfile if some moment of the file made...

    And also close this thread

    Reg apply log archiving after the transfer of data files

    As it would help in the forum of maintenance to clean.

  • How long should we keep logs archived in the comic book?

    11.2.0.4 DB Oracle Linux 6.5

    We have a database whose archive generation is as follows.

    Average of generation of archive log: 400 GB/day

    Max log generation: 900 GB/day

    Archive log diskgroup size: 4 TB

    Backup strategy: we take full backups on Monday and Wednesday and Level1 for the rest of the days.

    -----------------

    Sunday-> level 0 backup

    Monday-> level 1 backup

    Tuesday-> level 1 backup

    Wednesday-> level 0 backup

    Thursday-> level 1 backup

    Friday-> level 1 backup

    Saturday-> level 1 backup

    Both Level0 and Level1 scripts have MORE ARCHIVELOG; (without a clause to DELETE all THE ENTRIES )

    We have archiveLog backup script that runs at 10:00 and 16:00 which does not REMOVE all ENTRIES either.

    We serve the archivelogs of Level0 and Level1 backup scripts, with the following command

    delete noprompt archivelog until 'SYSDATE -2";

    Question1. What is the industry standard to keep (retention period), archiving within DB logs? Is there a 'formula' / rule for this? When a restore, recovery lose us not a lot of time restore backup media archivelogs. That's why we stay 2 days now archivelog within the DB.

    Question2. We have 4 TB of space to store the archivelogs in this particular PB. With 900 GB Max generation arch daily newspapers, we can keep safe the last 3 days of the archivelogs. Right? I mean, is there a possibility of hitting the terrible archiver error if we increase the shelf life of the archive logs using the delete noprompt archivelog until 'SYSDATE -3';

    N ° DELETE OBSOLETE removes old newspapers also all the log_archive_dest.


    I could be wrong, but this is the first I hear of this and on a quick scan, I found no support in that either rman reference or guide the user to rman.  Could cite your source?

    DELETE OBSOLETE is not the same thing as REMOVE EXPIRES.

    -EDIT

    Never mind.  I found it.

    DELETE

    OBSOLETE Removes backups of data files and copies stored in the repository RMAN which are obsolete, in other words, is no longer required (see example 2-66). RMAN also deletes the log of the obsolete filesand archived redo log backups.

    RMAN determines what backups and copies of data files are no longer needed, which in turn determines what records (and backups of logs) are no longer needed. RMAN considers that the creation of a data file as a backup to decide which connects to keep.

    Post edited by: EdStevens

    Historically, I saved my archivelogs with the option to DELETE the ENTRIES, I never had reason to notice or question this behavior... a rman DELETE OBSOLETE reach out to the archivelogs themselves.   Thinking maybe it was related to the maintenance of the FRA, I just tried a little test in two ways... archivlogs wrote to FRA and archivelogs writes destined for non - FRA.  Of course, anyway DELETE OBSOLETE also deleted real archivelogs.  I don't know that I'll change my procedures as well, but it is good to know.

    I learned something new today.  Can I go home now?

  • Log file for the relocation of the resource

    Hello guys!

    Where can I find a log file for relocation of resources stocks?

    I thought it would be in $CRS_HOME/newspapers, but it seems that it is not.

    Thanks in advance.

    If it is for RAC 11 GR 2, then you can see the resouce relocation in $GRID_HOME/log //crsd/crsd.log.

    For 10g RAC of memory, it's of $CRS_HOME/crs/log.

  • Where is the log file for the configuration of the plugin to a vco part?

    Hello

    I have a vco plugin that has a configuration interface, basically, everything works fine, but I can't find the logs for the purposes of Web configuration. I thought that newspapers could be found in Server.log (in my case, the exact path is C:\Program Files\VMware\Infrastructure\Orchestrator\app-server\server\vmo\log\server.log) but they were not there.

    I checked a few other plugins vCO well known as the SSH plugin, but I can't find the newspapers for his configuration interface, either.

    Can someone let me know if I'm looking the wrong log file? Thanks in advance.

    To the vCO 5.1 you can check in {vCO_INSTALL_FOLDER}\configuration\jetty\logs\jetty.log

    And log4j.configuration I think is in {vCO_INSTALL_FOLDER}\configuration\jetty\resources\log4j.xml

  • A gateway is required for the RAC environment?

    Question:

    A gateway is required for the installation of RAC, General information on the RAC environment?
    *.. If so, why? *

    Thank you very much



    I do this test with my single node RAC

    1. run with the gateway:
    [oracle@linux1 ~]$ crs_stat -t
    Name           Type           Target    State     Host        
    ------------------------------------------------------------
    ora....SM1.asm application    ONLINE    ONLINE    linux1      
    ora....X1.lsnr application    ONLINE    ONLINE    linux1      
    ora.linux1.gsd application    ONLINE    ONLINE    linux1      
    ora.linux1.ons application    ONLINE    ONLINE    linux1      
    ora.linux1.vip application    ONLINE    ONLINE    linux1      
    ora.orcl.db    application    ONLINE    ONLINE    linux1      
    ora....l1.inst application    ONLINE    ONLINE    linux1      
    ora....test.cs application    ONLINE    ONLINE    linux1      
    ora....cl1.srv application    ONLINE    ONLINE    linux1
          
    [oracle@linux1 ~]$ srvctl status database -d orcl
    Instance orcl1 is running on node linux1
    Every thing seems OK!



    2. run without gateway (empty parameter):
    [oracle@linux1 ~]$ crs_stat -t
    Name           Type           Target    State     Host        
    ------------------------------------------------------------
    ora....SM1.asm application    ONLINE    OFFLINE               
    ora....X1.lsnr application    ONLINE    OFFLINE               
    ora.linux1.gsd application    ONLINE    ONLINE    linux1      
    ora.linux1.ons application    ONLINE    ONLINE    linux1      
    ora.linux1.vip application    ONLINE    OFFLINE               
    ora.orcl.db    application    ONLINE    OFFLINE               
    ora....l1.inst application    ONLINE    OFFLINE               
    ora....test.cs application    ONLINE    OFFLINE               
    ora....cl1.srv application    ONLINE    OFFLINE               
    
    [oracle@linux1 ~]$ srvctl status database -d orcl
    Instance orcl1 is not running on node linux1
    Something is wrong!

    By default, default gateway of the server is used as the target ping during action Oracle RAC 10 g VIP status check.
    After a ping failure, Oracle will decide that the current interface where the VIP is running has failed and will introduce
    an interface / failover of the internode VIP.

    In above case, we used a single node for installation of CRS, so the VIP couldn't failover to other nodes and so reported an additional as error:
    CRS-1006: no more members to consider
    CRS-0215: could not start resource 'ora.dbtest2.vip '.

    Try->
    A FAIL_WHEN_DEFAULTGW_NOT_FOUND parameter in the file
    $ORA_CRS_HOME/bin/racvip to fix this problem.

    The following steps will fix the problem of departure of VIP for above mentioned scenario.

    1 - Stop applications
    2 - as root,
    VI the script $ORA_CRS_HOME/bin/racgvip and change the value of
    variable FAIL_WHEN_DEFAULTGW_NOT_FOUND = 0.
    3. start the application and you should see online resources

    You can proceed to netca and dbca to create a RAC database after that.

  • problem with webcam for the HP 3125 basic model

    Hey readers, I've got this beautiful model HP 3125 basic and has a webcam at the top of the screen but could not find any original progams HP for this, also could not find it in download drivers, anyone know a camera trust hp progam, please help, thank YOU!

    Hello:

    It is the most widely used software for the webcam in HP laptops.

    http://h10025.www1.HP.com/ewfrf/wc/softwareDownloadIndex?softwareitem=ob-109796-1&cc=us&DLC=en&LC=en&JumpID=reg_r1002_usen_c-001_title_r0008

  • No. before the value in the log file for the PK column on updates

    I can't seem to get 'before' values for columns which are PK appears in my trail files.  For example: when playing with a velocity template:

    #foreach ($op in $tx)

    #foreach ($col in the $op)

    front: $col.getBeforeValue)

    After: $col.getAfterValue)

    #{end}

    #{end}

    ... If the operation is an INSERT, then the values for all columns in the later, so the INSERTS are very well.

    If the operation is a DELETION, then the value of column PK * fact * appear in the front, if DELETIONS are fine.

    ... If the operation is an UPDATE, then the PK column value does * not * appear in both the front or after, if updates are broken.

    I tried to set the following in the parameters to my snippet... each with no change in the results:

    nocompressupdates

    getupdatebefores

    I run OGG Capture for Oracle Version 11.2.1.0.3 on Solaris, sparc 64-bit on the OGG is running against my DB Oracle redo logs.

    I'm under OGG Capture Version 11.1.1.0.0 on Solaris, sparc 64-bit of the system on which I am pumping files path, against which I'm reading the front of values in a userexit, as described above.

    Thanks for the tips / pointers.

    In order to get the PK column for an update, you must add an additional newspaper group that includes the primary key columns with the GGSCI ADD TRANDATA command. This is discussed in the Oracle GoldenGate Oracle installation and Guide in the section "To enable additional logging at the level of the table", found here:

    http://docs.Oracle.com/CD/E22355_01/doc.11111/e21406.PDF

    A combination to add TRANDATA and GETUPDATEBEFORES, you should get what you want. Here's more information:

    FAQ - 11.2.1 - how to extract parameters affect the data to be selected to be written in the file path GoldenGate. (Doc ID 1478414.1)

    Let me know if you have any other questions.

    Best regards

    Mary

  • Generate the log file for the dialog box

    Hi all


    I'm generating information for the dialog box as a .txt log file format. That means that if the box is checked, the log file will be give ' checkbox1 - 01.»   Check the report, sizes against the information on tickets and slug jobs"is checked


    If the checkbox is not checked, the log file will be give ' checkbox1 - 01.»   Check the report, sizes against ticket and slug information on employment"is not checked


    and also the entry "myText2" also needs to generate the log file


    Can someone help on this... Help would be appreciated!



    var l is new window ('dialogue');.

    myGroup1 var = w.add ("panel", undefined, ' P & & G check the list ');

    myGroup1.alignChildren = 'left ';

    CheckBox1 var = myGroup1.add ("checkbox", not defined, '01.   (Check the ratio, size against the information on tickets and slug jobs");

    CheckBox2 var = myGroup1.add ("checkbox", not defined, '02.   "" "Check images are linked");

    var checkbox3 = myGroup1.add ("checkbox", not defined, '03.   Visually check the progress of KV/model/CP images");

    var checkbox4 = myGroup1.add ("checkbox", not defined, '04.   Visually check the progress of other elements such as Logo and bottle");

    var checkbox5 = myGroup1.add ("checkbox", not defined, '05.   Check the positioning of the markup language");

    var checkbox6 = myGroup1.add ("checkbox", not defined, '06.   Ensure that all measures are calculated Live based area");

    var checkbox7 = myGroup1.add ("checkbox", not defined, '07.   After that the resizing of the picture KV frame open to cut and bleed");

    var checkbox8 = myGroup1.add ("checkbox", not defined, '08.   Complete Magenta if there is insufficient image');

    var checkbox9 = myGroup1.add ("checkbox", not defined, '09.   ("To ensure that the document's bleed, crop gutter and slug information brands ');

    var checkbox10 = myGroup1.add ("checkbox", not defined, '10.   Make sure that the final work is updated on the server");

    var checkbox11 = myGroup1.add ("checkbox", not defined, '11.   ("Enter time cmd");

    var myGroup2 = w.add ('panel', undefined, 'The operator name');

    var myText2 = myGroup2.add ("edittext", undefined, "");

    myText2.characters = 25;

    myGroup2.orientation = 'left ';

    var buttons = w.add ("group");

    Buttons.Add ('button', undefined, 'Export to PDF', {name: 'ok'});

    Buttons.Add ('button', undefined, 'Cancel');

    w.Show ();

    ~ group();

    ~ If (myGroup1.alignChildren.value! = true) {}

    ~ alert ('yes')

    //~ }


    myDoc = app.activeDocument;

    w = [];


    DESCRIPTION: Make a TXT file

    myDoc = app.activeDocument;

    Log1 = makeLogFile (app.activeDocument.name.split('.') ([0], myDoc, true);

    log (log1, app.activeDocument.name);

    ~ log2 = makeLogFile ("test", myDoc, false);

    ~ Journal (log2, "Text file log base 2");

    Log1. Execute();

    ~ log2.execute ();

    function makeLogFile (aName, aDoc, deleteIt) {}

    var logLoc; path to the folder that will contain the log file

    try {}

    logLoc = aDoc.filePath;

    } catch (e) {}

    logLoc = getmyDoc (). parent.fsName

    }

    var queue = aFile (logLoc + "/" + name + ".txt");

    If {(deleteIt)

    aFile.remove ();

    return aFile;

    }

    var n = 1;

    so that {(aFile.exists)

    aFile = File (logLoc + "/" + String (n) + ".txt" aName);

    n ++

    }

    return aFile

    }

    function getScriptPath() {}

    try {}

    Return app.activeScript;

    } catch (e) {}

    Return File (e.fileName);

    }

    }

    function log (aFile, message) {}

    var today = new Date();

    If (! aFile.exists) {}

    do the new log file

    aFile.open ("w");

    aFile.write (String (today) + "\n");

    aFile.close ();

    }

    }

    function log (aFile, message) {}

    var text = o;

    If (! aFile.exists) {}

    do the new log file

    aFile.open ("w");

    aFile.write (message + "\n" + "\n" + String (w) + "\n");

    aFile.close ();

    }

    ~ aFile.open ("e");

    ~ aFile.seek (0.2);

    ~ aFile.write ("\n" + message);

    ~ aFile.close ();

    }

    myDoc.close (SaveOptions.no);

    Thanks in advance

    Steve

    Hi Steve,.

    There are some errors in your code.

    1. function 'getmyDoc' is used, but not created.
    2. fucntion 'getScriptPath' is created but not used. (In any case, this will not give you error)
    3. function 'journal' has defined two times with the same length of the parameter.

    etc...

    Here, I have modified your code. Try this.

    var w = new Window ("dialog");
    var myGroup1 = w.add('panel', undefined, 'P&&G Check List');
    myGroup1.alignChildren = "left";
    var checkbox1 = myGroup1.add ("checkbox", undefined, "  01.  Check the ratio, sizes against job ticket and slug information");
    var checkbox2 = myGroup1.add ("checkbox", undefined, "  02.  Check images are linked");
    var checkbox3 = myGroup1.add ("checkbox", undefined, "  03.  Visually check the progression of KV/Model/CP images");
    var checkbox4 = myGroup1.add ("checkbox", undefined, "  04.  Visually check the progression of other elements like Logo and Bottle");
    var checkbox5 = myGroup1.add ("checkbox", undefined, "  05.  Check the placement of Language Tagging");
    var checkbox6 = myGroup1.add ("checkbox", undefined, "  06.  Ensure that all measurements are calculated based on Live area");
    var checkbox7 = myGroup1.add ("checkbox", undefined, "  07.  After resizing the KV image frame opened up to trim and bleed");
    var checkbox8 = myGroup1.add ("checkbox", undefined, "  08.  Fill Magenta if there is inadequate image");
    var checkbox9 = myGroup1.add ("checkbox", undefined, "  09.  Ensure the document has bleed, crop marks, gutter marks and slug information");
    var checkbox10 = myGroup1.add ("checkbox", undefined, "  10.  Ensure the final artwork is updated in the Server");
    var checkbox11 = myGroup1.add ("checkbox", undefined, "  11.  Enter time in CMD");
    var myGroup2 = w.add('panel', undefined, ' Operator Name');
    var myText2 = myGroup2.add("edittext", undefined, "");
    myText2.characters = 25;
    myGroup2.orientation = "left";
    var buttons = w.add ("group");
    buttons.add ("button", undefined, "Export PDF", {name: "ok"});
    buttons.add ("button", undefined, "Cancel");
    w.show ();
    myDoc = app.activeDocument;
    log1 = makeLogFile(app.activeDocument.name.split('.')[0], myDoc, true);
    log(log1, app.activeDocument.name);
    log1.execute();
    function makeLogFile(aName, aDoc, deleteIt)
    {
        var logLoc = "";
        try
        {
            logLoc = aDoc.filePath;
            } catch (e) {}
        var aFile = File(logLoc + "/" + aName + ".txt");
        var n = 1;
        while (aFile.exists)
        {
            aFile = File(logLoc + "/" + aName + String(n) + ".txt");
            n++;
            }
        return aFile
        }
    function log(aFile, message)
    {
        var text = w;
        var rep = "";
        if (!aFile.exists)
        {
            aFile.open("w");
            var today = new Date();
            rep += String(today) + "\n";
            rep += message + "\n" + "\n\n";
            for(var i =0;i
    

    Kind regards

    Cognet

  • Is there a page of archive for the Flash Player plugins for PORTABLE versions of the web browsers?

    Is there a page of archive for downloads installers for Flash Player plugin for PORTABLE versions of web browsers like Firefox ESR?

    One of my web browsers is Firefox ESR 10.0.7 and is a PORTABLE of Firefox version that apparently needs a different Flash Player plugin that the plugin Flash Player normal requiring regular versions of most web browsers.

    I don't want to install the most recent PORTABLE Flash Player plugin version because I read about the problems with it and it is the only capable version this ESR Firefox will give me the opportunity to download and install when I try to install the plugin Flash Player necessary through the browser.

    I already know about the page archive plugin Adobe Flash Player normal, below, the link, but who don't have the Flash Player plugins for MOBILE web browsers.

    http://helpx.Adobe.com/Flash-Player/KB/archived-Flash-Player-versions.html

    I also looked on OldApps.com and I couldn't find anything there.

    Where can I download an older version, maybe one of the plugins Flash Player 11.2 to round April 2012, that will work with this version of PORTABLE Firefox ESR?

    I tried this question in the forum of Mozilla Firefox Help, but no one could answer.

    Thanks for any help,

    digiday

    I met the same problem with the version of portable Firefox, I've tried.  I found myself ignoring the record (with the text file) that they have provided and created my own folder 'plugins' alongside firefox executable.

    As to why I went with 10.3 11.4, it was mainly because we added in Flash Player 11.3 protected mode.  While this might work (it didn't on my first attempt), it adds a layer of complexity that I didn't want to face.  If you need some of the new features of 11.x, then you have to play with it to see if you can get this to work.  One thing to try would be to modify the mms.cfg by disabling the protected-mode, however, I do not know if this file is accessible outside your windows\system32\macromed\flash folder.

    You can find all versions of 10.3 here: where can I find direct downloads of Flash Player 10.3 for Windows or Macintosh?

  • Log file for the security issue on the form?

    In 11.1.2 has created a new application which reflects a previous app but when non-admin users, enter the app they receive this error when trying to access the form.

    «Security and/or filtering resulted in a necessary dimension is not represented on this data form.»

    I have at least read rights on the scenario, the Version and the entity (I rename the office).

    Worse that planning has encountered an error check the log... where is a log file for this error? I can solve it much easier if I know what size the user/app is not happy with...

    OK scratch that forget the newspaper, found that for some reason any data base/filter in the EA reflects not what in planning security. How to correctly push refresh to Essbase? The database admin/refresh planning seems not to do the tour.


    HEY THERE' S MONDAY... read messages before found one of our custom dimensions has been verified for safety while he should not have been... everything fixed.

    Thank you

    JTS

    Published by: jts July 11, 2011 06:52

    Published by: jts July 11, 2011 07:07

    fixed

  • Unable to see the changes in the file for the RAC database alert log

    Hello

    We have two node cluster database. I stop a node instance with srvctl utility and then start it. When I checked the alert of this instance log, I've not seen these changes to the connected instance change log of this instance file. Ive tried with instance of shipment and found same. Why is happening. Why Oracle database is not to connect the start event and stop in the log file alert.

    Kind regards

    Abgrall

    What is your version of DB?

    If you are using 11g, use adrci > display alerts > choose the database to view the log of alerts. The events are always recorded in the alert.log, you are probably looking to wrong/old file.

  • Saving OCR for Non-RAC ASM

    Hi gurus,

    Need your help for below question.
    We have no cars 11 GR 2 DB with ASM RHEL 6.2. When I am trying to take ocr backup, below errors are encountered.

    [grid@remedy-ebu-test-db1 cure-EBU-test-db1] $ sudo /u01/app/grid/product/11.2.0/grid/bin/ocrconfig - manualbackup
    PROT-1: failed to initialize ocrconfig
    PROC-32: lending of Cluster on the local node service does not work e-mail [gipcretConnectionRefused] error [29]

    In addition,

    (1) should we backup OCR for instances Non-RAC? I know that backup voting disk are not necessary but what about OCR. Since there is no cluster that not involved how ASM and DB will remain intact.
    (2) in addition, there is no automatic OCR backup available? According to the MOS, GR 11, 2 takes automatic backups of OCR.

    Kind regards
    Nikhil Mehta.

    If you do not have BECAUSE you have Oracle Local Registry (OLR) instead of Oracle Cluster Registry (OCR).

    To try OLR backup:

    ocrconfig -local -manualbackup
    

    To list the existing backups OLR try:

    ocrconfig -local -showbackup
    
  • Copy the RAC ASM RMAN backups

    Hi, I have a database (RHEL 5.8) RAC 2 nodes with shared ASM storage. RMAN makes daily backups on this ASM storage too. How could copy backups of the ASM to another place? I use version 10 gr 2 db, and there is no 'cp' command in asmcmd.

    How could copy backups of the ASM to another place? I use version 10 gr 2 db, and there is no 'cp' command in asmcmd.

    You can use RMAN to do it.

    Use the command

    RMAN>  backup backupset from ... format '' ;
    

    Example here:
    Re: Move ASM backups to disks

    Using the tag:
    Re: RMAN to the ASM and network file system

    Published by: Levi Pereira on April 4, 2013 11:39

  • Log file for the build process?

    Is there a log file is written for a project is resting at a particular target? I'm testing my X 5 project within the HR 6 Trial Version and it crashes at halfway through the step of updating the files to create a HTML Help (CHM) file.

    Examples of projects that come with RH 6 compile fine, so I think there is a problem with my project, that he dislikes; I'm trying to track down what exactly.

    A log file would be much faster than my current approach, which is to mark files as print only until it generates without errors, then slowly removing only conditional printing and reconstruction to find the problem...

    I know a log is created during the build process in the tab Output within HR, but when the application crashes, I can not to see him. This information is stored outdoors somewhere?

    I looked into the temporary output folder in the appropriate subdirectory! SSL! but it seems that all the files are there. In any case, I'm fairly certain that I encounter the same problem as Peter mentioned in his post on compiling conditional tags and merged tables. I made a version without tags compilation conditional and things worked well. With conditional compilation tags, I always get the crash.

    Tags of conditional compilation and Bug of table cells merged

Maybe you are looking for