Increasing verbosity level of logs alert_orcl.log etc..

Hi!
How can I increase the verbosity of the log files in ../admin/orcl/*/
especially alert_orcl.log and all the trc files in bdump subdirectory ?
I tried to change the parameter "event" in init.ora without success.
Thanks for you help.
F.

Hi Rattus,
generally, the event parameters relate to specific events, not the database as a whole. Are
you having a particular issue that you need help with?Actually I'm using a virtualization technology to checkpoint and restart oracle server (simple installation on a single node, with the default database).
Everything's OK till the checkpoint, including the latter, but at restart it fails (the process tree is being rebuild but when the processes restart, they almost immediatly die with SIGSEGV, leaving core file), and something might badly be restored.
I'm trying to find according to oracle what is bad, ressources corrupted (shm, memory etc), timeouts that occurs, specific checking made that fails etc...
The logs at restart, at failure time are the following (extract of alert_orcl.log):
Wed Dec 5 11:29:12 2007
PSP0: terminating instance due to error 472
Instance terminated by PSP0, pid = 434281
Wed Dec 5 11:29:12 2007
Errors in file /opt/qa/qa1/s390x/oracle/product/10.2.0/db_1/admin/orcl/bdump/orcl_j000_569482.trc:
ORA-00472: PMON process terminated with error
Wed Dec 5 11:29:12 2007
Errors in file /opt/qa/qa1/s390x/oracle/product/10.2.0/db_1/admin/orcl/bdump/orcl_reco_483445.trc:
ORA-00472: PMON process terminated with error
Wed Dec 5 11:29:12 2007
Errors in file /opt/qa/qa1/s390x/oracle/product/10.2.0/db_1/admin/orcl/bdump/orcl_q001_856272.trc:
ORA-00472: PMON process terminated with error
extract of orcl_j000_569482.trc :
error 472 in job queue process
ORA-00472: PMON process terminated with error
I would like to know what's wrong exactly, and that's why I would like
to increase the verbosity level of these logs :-/
If so, I'd recommed that you post in the database forum.Let me know if so :)
Thanks,
F.

Similar Messages

  • How to set at the server level to log transport request in SAP ME

    Hi:
    when I do configuration in SAP ME, can I set at the system level to log for transport request ?
    so I can  use transport request for other client or server.

    Hi!
    There is no "transport request" in SAP ME, however, there is Configuration Data Transfer Export/Import activity which can export the data to ZIP file at the source site and then import that file at the destination site.
    CDT activity can utilize CTS+ as a transport channel but I would suggest ZIP file instead because the file can be edited manually in case of any issue or if you want to remove some data.
    For details, please consult this How-To Guide.
    Regards,
    Sergiy

  • What level suplemental logging requires to setup Streams at Schema level

    Hi,
    Working on setting-up streams from 10g to 11g db @ schema level. And the session is hanging with statement "ALTER DATABASE ADD SUPPLEMENTAL LOG DATA" while running following command - generated using DBMS_STREAMS_ADM.MAINTAIN_SCHEMAS.
    Begin
    dbms_streams_adm.add_schema_rules(
    schema_name => '"DPX1"',
    streams_type => 'CAPTURE',
    streams_name => '"CAPTURE_DPX1"',
    queue_name => '"STRMADMIN"."CAPTURE_QUEUE"',
    include_dml => TRUE,
    include_ddl => TRUE,
    include_tagged_lcr => TRUE,
    source_database => 'DPX1DB',
    inclusion_rule => TRUE,
    and_condition => get_compatible);
    END;
    The generated script also setting each table with table-level logging "'ALTER TABLE "DPX1"."DEPT" ADD SUPPLEMENTAL LOG DATA (PRIMARY KEY, FOREIGN KEY, UNIQUE INDEX) COLUMNS'".
    So my question is: Is Database level supplemental logging required to setup schema-level replication? If answer is no then why the following script is invoking "ALTER DATABASE ADD SUPPLEMENTAL LOG DATA" command.
    Thanks in advance.
    Regards,
    Sridhar

    Hi sri dhar,
    From what I found, the "ALTER DATABASE ADD SUPPLEMENTAL LOG DATA" is required for the first capture you create in a database. Once it has been run, you'll see V$DATABASE with the column SUPPLEMENTAL_LOG_DATA_MIN set to YES. It requires a strong level of locking - for example, you cannot run this alter database while an index rebuild is running (maybe an rebuild online?)
    I know it is called implicitly by DBMS_STREAMS_ADM.add_table_rules for the first rule created.
    So, you can just run the statement once in a maintenance window and you'll be all set.
    Minimal Supplemental Logging - http://www.oracle.com/pls/db102/to_URL?remark=ranked&urlname=http:%2F%2Fdownload.oracle.com%2Fdocs%2Fcd%2FB19306_01%2Fserver.102%2Fb14215%2Flogminer.htm%23sthref2006
    NOT to be confused with database level supplemental log group.
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14228/mon_rep.htm#BABHHCCC
    Hope this helps,
    Regards,

  • Table level supplemental logging

    How is table level supplemental logging different from Database level supplemental logging? Is Database level supplemental logging required for enabling table level supplemental logging?
    I have done 3 test cases, please suggest!
    Case 1
    Enabled only DB level supplemental logging(sl)
    observations--->
    DML on all tables can be tracked with logminer.
    I find this perfect.
    case 2
    Enabling only table level supplemental logging
    Setting---->
    2 tables ---AAA(with table level sl) & BBB (without table level sl)
    Only DDL is recorded with the help of logminer & few of the operations are listed as internal.
    case3
    Enabling database level sl first & then enabling table level sl only on one table --->AAA & no table level sl on BBB
    observation---> All the tables DDL & DML are getting tracked--point is if this is getting the same result
    as DB level SL, what is the significance of enabling Table level SL? or am I missing something?

    I have the same experience: when database level supplemental logging is enabled, adding supplemental logging at the table level does not affect functionality or performance.  Inserting 1 M rows into test table takes 25 sec ( measured on target database ) with table level supplemental logging, and 26 sec without it.  My GoldenGate version is 11.2, Oracle database version 11.2.0.3.0
    If someone can show the benefit of having table level supplemental logging in addition to database level logging, I would very much appreciate.

  • Schema level and table level supplemental logging

    Hello,
    I'm setting up bi- directional DML replication between two oracle databases. I have enabled supplemental logging database level by running this command-
    SQL>alter database add supplemental log data (primary key) columns;
    Database altered.
    SQL> select SUPPLEMENTAL_LOG_DATA_MIN, SUPPLEMENTAL_LOG_DATA_PK, SUPPLEMENTAL_LOG_DATA_UI from v$database;
    SUPPLEME SUP SUP
    IMPLICIT YES NO
    -My question is should I enable supplemental logging table level also(for DML replication only)? should I run the below command also?
    GGSCI (db1) 1> DBLOGIN USERID ggs_admin, PASSWORD ggs_admin
    Successfully logged into database.
    GGSCI (db1) 2> ADD TRANDATA schema.<table-name>
    what is the deference between schema level and table level supplemental logging?

    For Oracle, ADD TRANDATA by default enables table-level supplemental logging. The supplemental log group includes one of the following sets of columns, in the listed order of priority, depending on what is defined on the table:
    1. Primary key
    2. First unique key alphanumerically with no virtual columns, no UDTs, no functionbased
    columns, and no nullable columns
    3. First unique key alphanumerically with no virtual columns, no UDTs, or no functionbased
    columns, but can include nullable columns
    4. If none of the preceding key types exist (even though there might be other types of keys
    defined on the table) Oracle GoldenGate constructs a pseudo key of all columns that
    the database allows to be used in a unique key, excluding virtual columns, UDTs,
    function-based columns, and any columns that are explicitly excluded from the Oracle
    GoldenGate configuration.
    The command issues an ALTER TABLE command with an ADD SUPPLEMENTAL LOG DATA clause that
    is appropriate for the type of unique constraint (or lack of one) that is defined for the table.
    When to use ADD TRANDATA for an Oracle source database
    Use ADD TRANDATA only if you are not using the Oracle GoldenGate DDL replication feature.
    If you are using the Oracle GoldenGate DDL replication feature, use the ADD SCHEMATRANDATA command to log the required supplemental data. It is possible to use ADD
    TRANDATA when DDL support is enabled, but only if you can guarantee one of the following:
    ● You can stop DML activity on any and all tables before users or applications perform DDL on them.
    ● You cannot stop DML activity before the DDL occurs, but you can guarantee that:
    ❍ There is no possibility that users or applications will issue DDL that adds new tables whose names satisfy an explicit or wildcarded specification in a TABLE or MAP
    statement.
    ❍ There is no possibility that users or applications will issue DDL that changes the key definitions of any tables that are already in the Oracle GoldenGate configuration.
    ADD SCHEMATRANDATA ensures replication continuity should DML ever occur on an object for which DDL has just been performed.
    You can use ADD TRANDATA even when using ADD SCHEMATRANDATA if you need to use the COLS option to log any non-key columns, such as those needed for FILTER statements and KEYCOLS clauses in the TABLE and MAP parameters.
    Additional requirements when using ADD TRANDATA
    Besides table-level logging, minimal supplemental logging must be enabled at the database level in order for Oracle GoldenGate to process updates to primary keys and
    chained rows. This must be done through the database interface, not through Oracle GoldenGate. You can enable minimal supplemental logging by issuing the following DDL
    statement:
    SQL> alter database add supplemental log data;
    To verify that supplemental logging is enabled at the database level, issue the following statement:
    SELECT SUPPLEMENTAL_LOG_DATA_MIN FROM V$DATABASE;
    The output of the query must be YES or IMPLICIT. LOG_DATA_MIN must be explicitly set, because it is not enabled automatically when other LOG_DATA options are set.
    If you required more details refer Oracle® GoldenGate Windows and UNIX Reference Guide 11g Release 2 (11.2.1.0.0)

  • Adding or increasing size of redo logs

    Hi,
    I launched health Chack of TOAD on my Database and I had :
    ! "Checkpoint not complete" errors: 1744
    ! (consider adding or increasing size of redo logs to resolve this)
    My question is how to
    1- add a logfile ?
    2-increase a logfile ?
    Many thanks.

    The size is set when you create the redo logs you can not adjust this size without going through a lot of hoops. One method of increasing the size is described in metalink note: 1035935.6
    Basically you have to create new log groups of the size you want like
    SQL>alter database add logfile group 4 '/opt/oracle/data/redo4/log4a.dbf' size 10M;
    Do this for as many new groups as you want with the size you want.
    Then when the original groups are INACTIVE which can be seen in the v$log table, drop those groups.
    alter database drop logfile group 1;
    But read the entire note before you do anything.
    Regards
    Tim

  • Had to restore iphone from a backup that was done 1 week ago.  any way to get back the texts, call logs, etc. that happened within the last week?

    this morning, i had to restore iphone from a backup that was done 1 week ago.  is there any way to get back the texts, call logs, etc that happened within the last week?

    No

  • Increasing inventory level

    Hi,
    I have a problem with SAP APO and increasing inventory levels. I would appreciate your help in this issue.
    The forecast accuracy for our products is very good and we don't have any issues in the production planning. But our inventory level is increasing. How can I diagnose where the problem could be? What are the main settings that I need to look at?
    Thanks for your help.
    Best Regards,
    Roy

    Roy
    Inventory is a symptom of a problem, not the problem itself. When you say that your forecast accuracy is good, this usually only affects Safety Stock, not all Inventory.
    What specific inventory are you talking about - Finished Goods, Raw Material, Work In Process ? Pipeline Stock, Cycle Stock, Obsolete Stock, etc.
    So here are some things to consider -
    1. Has your demand been increasing or become more volatile ? If so, some of the policies/ settings in supply planning could lead to higher inventory.
    2. Have you changed Supply Planning policies/ settings - Lot Sizes, Lot Size Policies, Safety Stock Methods, Safety Stock quantities. etc. This obviously has a huge impact on inventory.
    3. Have planned lead times changed - Longer Production Times, longer pick/ pack, goods receipt times, longer transportation lanes ? Adding buffer in planned lead times usually leads to higher inventory.
    4. Have you changed your distribution network - Increased number of customer facing locations? Push Deployment instead of Pull ?
    5. Has there been a change to product portfolio - Increased number of new products ?
    Rishi Menon

  • Increasing db level???

    when i bounce a song and burn a cd the volume is much lower than a normal cd. is there a way to increase db level without mastering? i have my output track set at 0 with a limiter on it. thanks

    Bounce with no limiting. Import your bounce to Waveburner and try some of the preset channel strip settings for mastering. Turn up the channel gain for converter blasting if desired. You are mastering when you process and final mix in any way.

  • How do I increase the size (font's, overall presentation, etc.) to make it easier to read each page?

    Hoe do I increase the presentation size (fonts, overall presentation, etc.) to make Firefox easier to read.

    Thank you, your assistance is greatly appreciated, your response resolved my problem completely.
    Thank you very much.
    DGS

  • Best way to increase audio level

    I am thinking of two ways to increase audio level on a FCE project. One is to copy the audio track and duplicate it on an another audio track. The other is to increase the level of the existing audio track (modify>levels . . . ). Which do you folks out there think is best? Thanks in advance!

    Thanks again Tom.
    I am just putting together a classroom video. I used four cameras. I edited it all down, and moved everything to one video track. I chose the best audio track and am using that. So I'll probably just go with relative. And it appears I don't really have to choose the audio track when adjust level, as there is only one (well, two, but it is a stereo pair). I just go to modify>levels . . . and then move the slider over a bit, and that seems to modify the levels fine without any track selected.

  • My font is yellow when replying to an email? How do I change this? I have turned off "increase quote level".

    Why does my font appear yellow when I reply to an email. The receiver can't read it.
    I have turned off Increase Quote Level.
    Any ideas? Can you change font color at all?

    Change the email on the old account to another new, current email address.
    An email address can only be linked to one Apple ID.
    It is possible to have content from multiple Apple ID's on a single iDevice.

  • When watching movies on my iPad with headphones (they're Bose so good quality) on an airplane I can barely hear the sound with everything turned up--any suggestions to increase sound level outside of normal volume adjustments?  thanks for the help

    When watching a movie on my iPad 2 with headphones (they're Bose so good quality) on a plane I can barely hear even with volume at highest level--any suggestions on how to increase sound level outside of normal settings-sound level even lower when using a splitter--thanks

    Same problem with all headphones and earbuds--just checked settings and Volume Limit was already off--starting to think it's a volume system flaw tied to videos and related sound.   No problem getting plenty of sound volume for music, only videos. 

  • Setting privilege level for logging into ASA through ACS

    Hi!,
    In my environment i implemented AAA for logging into switches, routers, asa etc through ACS which is being configured TACACS+.
    I have set different privilege levels like readonly, readwrite etc into ACS. There are working fine when i try to login into switch or router.
    But in ASA i am unable to restrict the privilege levels of different users.
    Can someone plz guide me with ASA & ACS setting to solve this issue!!!!!

    Hi!!
    I tried this option. It is working fine with routers & switches. But for ASA privilege access it is not functioning.
    I created 3 profiles in "Shared Profiles" & added 1 of them in Group setting & added users to this group with mentioning group authentication. This way i am able to control access to the switches & routers with proper privilege. But the same way when i tried to impolement ASA it's not happening.
    Can u plz check it out...

  • Abrupt increase in alert SID .log file size

    alert<SID>.log file is abrubtly increasing in size which is in process filles up a disk space, hence further no DB login.
    I shutdown the database, took a bakup of the alert log file, nullified the alert log ( using cat /dev/null > alert.log) and started up the database.
    As of now, its okay, but can I nullify this alert log file while the database is up and running..???

    It is better to write a simple shell script to housekeep the alert.log.
    Below is an example
    if [ `ls -al $ALERTLOG | awk '{print $5}'` -gt 2500000 ]
    then
    cp -p $ALERTLOG $ALERTLOG.`date +%d%m%y`
    cat /dev/null > "$ALERTLOG
    gzip $ALERTLOG.`date +%d%m%y`
    find "$ALERTLOGFOLDER "-name *.gz -mtime +10 -print -exec rm {} \;"
    fi
    Also, you need to housekeep adump, bdump, cdump ... etc folders

Maybe you are looking for

  • APEX Supplied HTML Editor (fckeditor) - Limit number of characters

    Hi Has anyone found a way of limiting the number of characters allowed in the HTML Editor that is supplied with APEX (3.1/fckeditor) I have had a look at the fckeditor web page and found a couple of plugins but I fear that this approach will require

  • Dashboard to Report

    <p>Hi everyone,</p><p> </p><p>Here is my question:</p><p> </p><p>I have a dashboard with a dropdown list and a link to a report,is it possible to change an logo picture from a report with thecriteria i choose in the dropdown list? for example if in t

  • Viewing pic in email

    I have a siater-in-law sensing me pictures in email which won't display on the phone... i have to view on the pc. other images show in email on phone.. how can I fix? TIA

  • Customer Service Made UNREQUESTED Change to Unlimited Plan

    I am writing you with hopes that you can correct a problem with my account.  Back in February I requested to have a different phone activated on my account.  At this time the person that I had been in contact with made a change to the data plan assoc

  • ATP & Planned Order

    Hi , Please help to explain me what exactly is meant by saying ATP done against Production Order , Planned Order as per assigned checking group . How can I activate the same settings in my Order . Thanks MM_sD