How To Generate Debug Log Files for ebs jsp?

Hi how to generate debug log for ebs r12 jsp files?
and where I get the journal me .please help thank you!

Please check following Document MOS

Oracle Application Server diagnostic tools and logs in Applications, version 12 (Doc ID 454178.1)

Tags: Oracle Applications

Similar Questions

  • 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

  • How to get the log file for the .sql file?

    Friends,

    OS: RHEL AS 3
    DB: 9iR2

    I have a file as sql...
    @/u02/scripts/olback.sql
    exit;
    the olback.sql is to have the user manage backup scripts.
    I saved the code above as weeklybkp.sql
    I have weeklybkp.sh that I call the sql above.
    When I type the olback.sql in the sqlplus manually... I can able to see the result.
    now after the automation... I have to see the output of the script above in a log file.
    How can I save the output of the script above in a log file?

    Thank you

    Slight change in your .sql file.
    coil /u02/weeklybkp.log
    ............ (Here begins your code)
    ............
    ............ (Here ends your code)
    spool off

  • R12.2.5 Installation on OL 7.1 ERROR: RW-50010: error:-script returned an error: 1 RW-50004: error code when you run the external process.  Check the log file for more details

    I tried to install EBS 12.2.5 on OL 7.1 with rapidwiz and got this error when applying the unique patches in second File System

    "Second system logfile file - /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/logs/12021641.log.

    LOG FILE:

    _____________________________________________________________________________________________________________________________

    Step 0-8

    Command: /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/adrunfmw.sh

    Step 4 of 8: UNIX making pretreatment

    Running: chmod 777/db/oracle/OraInventory r

    chmod-r 777/db/oracle/OraInventory succeeded

    Step 4 of 8

    Performance: known appltest - c "/ app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/adrunfmw.sh".

    PHASE of INSTALLATION has BEGUN: APPS TECH STACK: Wed Dec 2 17:27:07 IST 2015

    runProcess_1

    StatusString installation of Applications Technology Stack

    Copy the temp area models

    Inventory name is: app_oracle_TEST_fs2_Oracle_EBS_app

    One-time fixes copy to temp area

    Remove JDK_TOP: / app/oracle/TEST/fs2/EBSapps/comn/util/jdk32 if there is

    / App/oracle/TEST/fs2/EBSapps/comn/util/jdk32 deleted directory

    Installation of WebLogic Server.

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWLS.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWLS.xml oracle.apps.fnd.txk.config.InstallService

    WebLogic Server successfully installed

    Web Tier utility installation.

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWeb.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instWeb.xml oracle.apps.fnd.txk.config.InstallService

    Level successfully installed Web utilities

    Registration EBSUsing /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instEBS.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instEBS.xml oracle.apps.fnd.txk.config.InstallService

    EBS registered successfully

    Rename/home/appltest/bea/beahomelist in /home/appltest/bea/beahomelist.29266 to avoid problems during WLS

    patching

    / Home/appltest/Bea/beahomelist renamed successfully.

    Application of ad hoc patches

    With the help of /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instASpatches.xml

    L'exécution de commande : /stageR12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.6.0/bin/java -cp /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd /... /j11067592_fnd.zip:/app/Oracle/test/FS2/inst/Apps/TEST_ebs122/Temp/ASInstallHome/FND/Java/3rdparty/stdalone/xmlparserv2.zip-Doracle.apps.fnd.txk.env_home=/app/oracle/TEST/fs2/EBSapps/appl/admin/TEST_ebs122/-Doracle.apps.fnd.txk.runtime.config=/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/xmldocs/instASpatches.xml oracle.apps.fnd.txk.config.InstallService

    Fatal error: T2K install Service

    oracle.apps.fnd.txk.config.ProcessStateException: OPatch process failed: Output = 1 see log for more details. CMD = perl /app/oracle/TEST/fs2/FMW_Home/webtier/OPatch/opatch.pl apply - verbose - silent - ocmrf /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/ASInstallHome/fnd/admin/template/txkForms_ocm.rsp jdk - / app/oracle/TEST/fs2/FMW_Home/webtier/jdk/app/oracle/TEST/fs2/inst/apps/TEST_ebs122/temp/patches/7695070/7695070

    at oracle.apps.fnd.txk.config.OPatchActionNode.processState(OPatchActionNode.java:312)

    at oracle.apps.fnd.txk.config.PatchActionNode.processState(PatchActionNode.java:187)

    at oracle.apps.fnd.txk.config.PatchNode.processState(PatchNode.java:338)

    at oracle.apps.fnd.txk.config.PatchesNode.processState(PatchesNode.java:79)

    at oracle.apps.fnd.txk.config.InstallNode.processState(InstallNode.java:68)

    at oracle.apps.fnd.txk.config.TXKTopology.traverse(TXKTopology.java:594)

    at oracle.apps.fnd.txk.config.InstallService.doInvoke(InstallService.java:224)

    at oracle.apps.fnd.txk.config.InstallService.invoke(InstallService.java:237)

    at oracle.apps.fnd.txk.config.InstallService.main(InstallService.java:291)

    Can not install the unique patches

    RW-50010: error:-script returned an error: 1

    RW-50004: Error Code when you run the external process.  Check the log file for more details.


    It was recorded in /app/oracle/TEST/fs2/inst/apps/TEST_ebs122/logs/12021641.log and I don't know how to find another newspaper for such details as mentioned in this journal. Please help me with that.


    Concerning

    KasunA

    Found a workaround.  The problem is that, before the 7695070 patch is applied, the installation program backup directory/apps/fs2/FMW_Home/webtier/jdk in /apps/fs2/FMW_Home/webtier/jdk_backup_existing_version, but then it clears. / jdk - the patch fails because it can't find it.  I had to rename the directory of the jdk for jdk2, and as soon as it gets deleted quickly and rename jdk2 jdk.  Then he applies the patches without problem.  A symbolic link would do the same thing.

  • 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

  • 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.

  • How to load an XML file for salesforce using API BULK?

    Hello

    Please let me know how to download an XML file for salesforce using API bulk?

    Thank you

    AND

    Hello

    I think it's a matter of SalesForce.com more and think that you will have better luck in looking at SOAP API Developer Guide for salesforce. Sending of a server API SOAP request is very straight forward and there are several tutorials and well documented in this topic.

    See you soon,.

    Stefan

  • Client VMware view - how to create the log file?

    I am trying to connect to my broker for connections using the latest version of the Client view (3.1) but keep an error message ("failed to connect to the remote computer").

    Is there a way to find more information about the cause of the failure? It is a place, the client creates a log file?

    Thanks in advance.

    There you go: http://www.thatsmyview.net/faq/logging/how-do-i-enable-debug-information-in-vmware-view-clientagent/

    Kind regards

    Christoph

    Don't forget to assign points if this answer was helpful for you.

    Blog:

    http://Communities.VMware.com/blogs/Dommermuth | http://www.thatsmyview.NET/

  • find the entries in the log file for sfc /scannnow XP

    How to analyze the entries in log file generating the program Checker (SFC.exe) resources of Microsoft Windows in Windows xp?

    That means "[SR]" in the findstr/c: "[SR]" %windir%\logs\cbs\cbs.log > sfcdetails.txt entry in the cmd window to find newspapers?

    What you trying to do?

    If you read this article on Vista (KB 928228) - which does not apply to XP - while the command does is use the fact that "each entrΘe the SFC.exe program in this file has a [SR] tag" to remove entries related to sfc.exe since services component-based' sign (CBS), which contains other entries as well.

    If you ask what the letters SR actually rest in this context, you will have to search you, but I think that documentation on this subject is quite deeply buried at Microsoft.

  • Debug.log file to C:\ completely evacuate my memory after a few hours.

    Hi everyone, this is my first post here and I couldn't make another post here for a while, please excuse me if I don't correct format. I had this problem with my laptop Lenovo Windows 7 (build 7601) where everytime I turn on my laptop, this file called debug.log which lies in my local disk drive is created. It starts as nothing, only a few hundred bytes, but almost every minute, it will trigger 100 bytes (that's when nothing really works then). When I start playing games, online, etc., it will start to get very disturbing. The debug.log when I look at the 6 hours from now will probably be about 20 GB +. I discovered just recently on this file because I need to keep my laptop on all night for my friends to play on a Minecraft Server I have running and I was constantly find the disc completely full. After a day or two, the debug.log will eventually be around 300 GB to 500 GB and I have 0 bytes remaining on my drive. The laptop reset will delete the debug.log until I log in again and it will start to regain memory. I looked this up online nothing helps. For anyone reading this, please try to help me identify what this thing and if I could turn it off / limit its size. Before I forget, here's what is in the file from the announcement: http://pastebin.com/KuBgBwL1 . I have no idea what this thing of Toolbox, the only other thing I saw with the word toolkit was in my list of services and called him "ToolkitSvc" (it is running). Please help me, it is empty my memory constantly and I don't want to restart my laptop everyday!

    Hello

    Try the steps from the following link:

    Slow PC? Optimize your computer for peak performance
    http://www.Microsoft.com/athome/Setup/optimize.aspx#fBid=kmc757u4Zlo
    http://support.Microsoft.com/mats/slow_windows_performance/en-us

  • Monitor log file for Netbackup

    Hello

    We seek to monitor Netbackup backup errors in Foglight and I was wondering the best way to go about it.  In essence the software Netbackup written in a file (C:\Program Files\Legato\nsr\logs\backup_failure.log) and I want to draw attention when we get some messages, such as "Impossible" or "unsuccessful save sets. I tried to use the logfilter legacy agent, but this doesn't seem to work or I set up correctly.  No matter which help out me?  Also, everything what we use, that we will be able to draw the line complete or just be a generic alarm syaing "there is a problem with a nackup of netbackup" kind of thing?

    All advice appreciated.

    Thank you

    Davie

    Hey Davie,

    The LogFilter legacy agent is probably the best way to control this log file. Here's and example of how to configure the list of game:

    For your case, you should be able to enter "Down" and "Unsuccessful save sets" on separate lines in the Match string column, and then matched with the appropriate alarm severities.

    The resulting configuration alarms like this:

    The alarm message reports the first 255 characters of the corresponding journal line.

    After setting up and activation of the LogFilter agent, check the agent log to verify that he was able to find and read the target log file.

    Kind regards

    Brian Wheeldon

  • How to write a log file?

    I have this function at the bottom and I tried to write the query result in the log file, but it failed each time that I ran. the CFLog tag as third line from the bottom. Any suggestion is appreciated.

    < name cffunction = "getCommonSpotPages" access = "public" returnType = "query" >

    < cfset var qryCSPages = queryNew("") >

    < cftry >

    < name cfquery = "qryCSPages" datasource = "#application.sitemap.sDSN #" >

    Select p.ID, s.subsiteURL, p.filename, p.DateContentLastModified, u.publicFileName, p.uploaded as bIsUploaded, s.uploadURL,.

    (select fieldValue dfv data_fieldValue where p.ID = dfv.pageID and dfv.fieldID = #application.sitemap.nPriorityFieldID # and dfv.versionState = 2) as nPriority,.

    (select fieldValue dfv data_fieldValue where p.ID = dfv.pageID and dfv.fieldID = #application.sitemap.sFrequencyFieldID # and dfv.versionState = 2) as sFrequency

    of PagesContrat p

    Join s subsites

    on p.SubSiteID = s.id

    left join UploadedDocs u

    on p.id = u.pageID

    where (p.expDate is null

    OR p.expDate > GETDATE()

    and p.pageType = 0 <!-downloaded documents and content pages only->

    and p.approvalStatus <>1 <!-/ / exclude inactive pages-->

    and s.siteState <>0 <!-/ / exclude inactive subsites->

    and s.subsiteURL not like '% training %' <! - specify all pages within the subsite to be excluded from the site map - >

    and not s.ID (< cfqueryparam value = "" #application.sitemap.lstExcludeSubsites # "cfsqltype =" list CF_SQL_INTEGER"="yes"/ >) <!-/ / exclude particular subsites->

    order by p.ID desc

    < / cfquery >

    < cfcatch > < cfdump var = "#cfcatch #" > < / cfcatch >

    < / cftry >

    < cflog text = "' #qryCSPages # ' type = 'Information' leader 'queryPages' = >"

    < cfreturn qryCsPages >

    < / cffunction >

    The tmpResult.sql is that print the SQL that is executed from query.

    You can't SEE where to save newspapers.  They are available at [DRIVE] / cfusion/logs - go and look for your newspaper.  It is accessible also through CFAdmin, under DEBUGGING AND LOG.

    HTH,

    ^_^

  • How to resize the log files pending? or it is synchronized from primary?

    I changed the size of the log file primary db to 50 m to 200 m.

    I wonder if I should do it on the backup site?

    I tried, and it doesn't seem to work on the backup site:

    SQL > select group # thread #, status, bytes/1024/1024 of the journal of v$.

    GROUP # THREAD # STATUS BYTES/1024/1024
    ---------- ---------- ---------------- ---------------
    1 1 50 COMPENSATION
    2 1 50 COMPENSATION
    3 2 COMPENSATION 50
    4 2 50 CURRENT
    5 1 COMPENSATION 50
    6 2 COMPENSATION 50
    15 1 200 UNUSED
    16 1 200 UNUSED
    17 2 200 UNUSED
    18 2 200 UNUSED

    10 selected lines.

    SQL > alter database drop logfile Group 1;
    change the database drop 1 log file group
    *
    ERROR on line 1:
    ORA-01624: log 1 necessary for instance REMEPRDS1 (1 wire) crash recovery
    ORA-00312: thread 1 1 online journal:
    "+ DAT/prds/onlinelog/group_1.961.793523169".
    ORA-00312: thread 1 1 online journal:
    "+ FRA/prds/onlinelog/group_1.5605.793523169".


    SQL > alter system switch logfile;
    alter system switch logfile
    *
    ERROR on line 1:
    ORA-16000: database opened for read-only access


    SQL > alter system switch logfile;
    alter system switch logfile
    *
    ERROR on line 1:
    ORA-16000: database opened for read-only access


    SQL > /.
    alter system switch logfile
    *
    ERROR on line 1:
    ORA-16000: database opened for read-only access


    SQL > alter database drop logfile Group 1;
    change the database drop 1 log file group
    *
    ERROR on line 1:
    ORA-01624: log 1 necessary for instance PRDS1 (1 wire) crash recovery
    ORA-00312: thread 1 1 online journal:
    "+ DAT/prds/onlinelog/group_1.961.793523169".
    ORA-00312: thread 1 1 online journal:
    "+ FRA/prds/onlinelog/group_1.5605.793523169".


    SQL >

    Please help me out here.

    Thank you

    Hello

    Even if you add standby or online redo log files or even if you resize down and re-create redo log files, they will not be created on the standby database. It is instance specific.

    Let all the restore, the MRP will cancel out.
    And then let fall, add standby redo log files, I think that you need to the MANUAL upgrade standby_file_management before adding new files of newspapers waiting for redo. And do not forget to undo file management the AUTO value again after the execution of the changes.

    And you train to make the journal command pending, it applies only on the primaries because the log command can only be performed on the database that uses online redo log files. Even if you open databases Eve with recovery that no recovery will be generated as a result no switch journal is allowed too.

  • 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

  • Where is the log file for adworker?

    Hello world
    In eBS under unix, where each adworker logs?
    Any idea?
    Thank you very much
    Concerning

    Hello

    It's under $APPL_TOP/admin //log directory, search for adwork*.log files.

    Kind regards
    Hussein

Maybe you are looking for