How to check instance alert.log in RAC 10g ASM environment?

i know to use Grid control or OEM check instance alert.log?
But since in ASM the alert.log is not recognized, how to check it in OS level just like regular non-RAC checking?
or the best way to check it ?
thanks a lot!

user620464 wrote:
i know to use Grid control or OEM check instance alert.log?
But since in ASM the alert.log is not recognized, how to check it in OS level just like regular non-RAC checking?
or the best way to check it ?
thanks a lot!Well if you mean that you have put the alert over asm storage than where did it mention to put alert file over ASM? Is not like an o/s where one can go and read the file and surely, neither we need striping or mirroring of it either. I am not sure that there is any way to do so over ASM storage.
HTH
Aman....

Similar Messages

  • Daily checking of alert logs

    Hello All,
    I installed Oracle RAC 11gr2
    In order to check the status of my database, I am checking the alert log file of the ASM instances and the alert logs of each node instances.
    Is there any other periodically checks that should be done ? related to CRS, cluster ....
    If yes please provide the location of each log file.
    Regards,

    NB wrote:
    Hello All,
    I installed Oracle RAC 11gr2
    In order to check the status of my database, I am checking the alert log file of the ASM instances and the alert logs of each node instances.
    Is there any other periodically checks that should be done ? related to CRS, cluster ....
    If yes please provide the location of each log file.
    Regards,One of the best tool to do health check of RAC 11.2 is
    RACcheck - RAC Configuration Audit Tool [ID 1268927.1] … And you have
    Cluster Health Monitor (CHM) FAQ [ID 1328466.1] …You will have all necessary monitoring/check from above tools. hope this help

  • How To check in Ironport log which is server is giving bad response to SMTP connection?

    How To check in Ironport log which is server is giving bad response to SMTP connection?

    You probably want to create a new log subscription for "SMTP Logs"
    Go to System Administration/Log Subcriptions.
    Click Add Log Subscription
    Pick SMTP Conversation Logs.
    Pick a log name (will be the folder name that gets created for the log files)
    The defaults for the rest should be fine... maybe tweak rollover...
    Make sure to remove it after you're done, its going to eat space and probably a little proc... its VERY verbose, but it should show you what you need.

  • How to open the alert logs

    Hi Team,
    I am doing database Refreshment. I want to monitor the alert logs.
    Please suggest me, How to open the alert logs. Working on unix server.
    Thanks & Regards,

    if its 10g then go to bdump directory
    you can either do tail -f <alert_log_name>
    or vi <alert_log_name>
    if 11g then you want should go to
    $ORACLE_HOME/diag/$ORACLE_SID
    the alert log file is in XML format as well as a text file. The default location of both these files is the new ADR home or Automatic Diagnostic Respository. The ADR is set by using the DIAGNOSTIC_DEST initialization parameter. The location of an ADR home is ADR_BASE/diag/product_type/product_id/instance_id. If the environment variable ORACLE_BASE is not set then DIAGNOSTIC_DEST is set to ORACLE_HOME/log
    there are different directories for different types of alert log files
    alert - The XML formatted alertlog
    trace - text alert log

  • How to check similarity between two Databases 9i & 10g after imp in 10g

    Dear all,
    Source
    =======
    OS server     ==>     HP-UX
    Oracle version     ==>     Oracle 9.2.0.8
    DB Name          ==>     MSST
    DB total users     ==>     320
    Full export in     ==>     /u02/export/Jan09.dmp
    Tablespaces     ==>     SC, SC_I, SA, SA_I, PP, PP_I, AC, AC_I, SD
    Destination
    ============
    OS server          ==>     HP-UX
    DB Name               ==>     CHDB
    Existg DB users          ==>     20
    Oracle version          ==>     Oracle 10.2.0.4
    copied 9i dump file in     ==>     /u03/export
    Tablespaces created same as Oracle 9i i.e;          
    Tablespaces     ==>     SC, SC_I, SA, SA_I, PP, PP_I, AC, AC_I, SD
    I had run full import on Destination server i.e; Oracle 10g & following is the command i used:
    imp system/pwd@conn_string file=/u03/export/Jan09.dmp log=/u03/export/Jan09_imp.log full=y ignore=y statistics=none
    *=== Imported successfully with few errors like ====*
    IMP-00017: following statement failed with ORACLE error 2299:
    "ALTER TABLE "EMP_PROMOTIONS_ORD" ADD CONSTRAINT "EMP_PROMOTIONS_ORD_UK" UN"
    "IQUE ("EMP_NO", "RANK_NO_FOLLOW") USING INDEX PCTFREE 10 INITRANS 2 MAXTRAN"
    "S 255 STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1) TABLESPACE "PP" "
    "LOGGING ENABLE "
    IMP-00003: ORACLE error 2299 encountered
    ORA-02299: cannot validate (PP.EMP_PROMOTIONS_ORD_UK) - duplicate keys found
    ORA-02299: cannot validate (PP.EMP_PROMOTIONS_ORD_UK) - duplicate keys found
    . . importing table "EMP_PROMOTION_DETAILS" 13333 rows imported
    . . importing table "EMP_PROMOTION_MAST" 725 rows imported
    . . importing table "EMP_PUNISHMENT" 271 rows imported
    . . importing table "EMP_REPORT_BOOKS" 60528 rows imported
    . . importing table "EMP_SALARY_HISTORIES" 120871 rows imported
    . . importing table "EMP_SALARY_HISTORIES_TEMP" 77044 rows imported
    . . importing table "EMP_TRANSACTIONS" 96536 rows imported
    IMP-00017: following statement failed with ORACLE error 2299:
    "ALTER TABLE "EMP_TRANSACTIONS" ADD CONSTRAINT "TRANS_UK" UNIQUE ("EMP_NO","
    " "DIR_NO", "DIR_DATE", "TRN_CODE") USING INDEX PCTFREE 10 INITRANS 2 MAXTRA"
    "NS 255 STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS 1) TABLESPACE "PP_"
    "I" NOLOGGING ENABLE "
    IMP-00003: ORACLE error 2299 encountered
    ORA-02299: cannot validate (PP.TRANS_UK) - duplicate keys found
    Now my question is
    ===================
    How to check everything is same/similar like Oracle 9i database ( source ), for example ( i used this technique ):
    Can anyone tell me how to check similarity between two Databases 9i & 10g after import in 10g.
    MSST_DB>SHOW USER
    MSST_DB>SA
    MSST_DB>select object_type, count(*) from user_objects group by objects;
    OBJECT_TYPE     COUNT(*)
    DATABASE LINK     2
    FUNCTION     23
    INDEX          1795
    LOB          6
    PACKAGE          8
    PACKAGE BODY     8
    PROCEDURE     30
    SEQUENCE     67
    SYNONYM          60
    TABLE          644
    TRIGGER          3
    VIEW          20
    CHDB_DB>SHOW USER
    CHDB_DB>SA
    CHDB_DB>select object_type, count(*) from user_objects group by objects;
    OBJECT_TYPE     COUNT(*)
    INDEX          1794
    PROCEDURE     30
    TABLE          644
    TRIGGER          3
    VIEW          20
    FUNCTION     23
    SYNONYM          60
    PACKAGE BODY     8
    SEQUENCE     67
    PACKAGE          8
    LOB          6
    Edited by: VIKHARAHMED on Jan 10, 2012 3:02 AM

    [url http://download.oracle.com/docs/cd/B19306_01/server.102/b14215/dp_export.htm#sthref67]Guide.

  • How to check image size in oracle 9i & 10g database

    hi,
    i have inserted an Image into a table in oracle database & I want to View the Query How to check image size in oracle 9i & 10g database
    thanks
    Edited by: user8920919 on May 30, 2010 1:43 AM

    user8920919 wrote:
    hi,
    How to check image size in oracle 9i & 10g database
    thanksWhat do you mean with "image size"?

  • How to check an alert or LOV is displayed at Forms

    Is there any other way , shall we identify  any alert/Message/LOV is opened ?
    Please advise on this.

    My scenario is given below :
    I have implemented the Timeout PJC (Using Bean) in my application. I have set the idle time as 30 minutes.If the Form is idle for more than 30 minutes , as per our timeout PJC logic, we have closed all the forms.
    But if the user opens LOV/Messages/Alert messages , The timeout logic is waiting for user acknowledgement .We are fine with the user acknowledgement. But once the user has acknowledged , we need to reset the Timer. But currently as soon as the user gives confirmation on the alert messages , the system expires.
    Please suggest how to check on this case.

  • How to check shared disk accessibility on RAC

    how i can check shared disk accessibility on RAC without CVU.

    how i can check shared disk accessibility on RAC without CVU.

  • How to check/retrieve server logs?

    Hi. I have an app that is running off a CF server. The app has been crashing lately and a programmer recommends I check the server logs. Could someone please tell me how I do that? Thanks so much.

    Hi Luke,
    Login to CFadmin http://URL/cfide/administrator/index.cfm
    then select Debugging & Logging > Log Files
    search or download server.log or other logs present.
    Alternate CF Java log files in CF\runtime\logs (\Jrun4\logs multi-server)
    might provide hint to crash outage.
    HTH, Carl.

  • How to check the error log in sharepoint 2013 online (office 365)

    I'm working with sharepoint online instance. I'm developing a sharepoint app using Napa 365 but its giving me some error with the correlation ID. Where i have to check the error log to get the actual error description?
    Please suggest me the right direction.
    Thanks in advance!

    Hi,
    As your environment is SharePoint Online, I suggest you can create a new thread in SharePoint Online forum, you will get more detailed information from there and more experts will help you.
    Office 365 Forum:
    http://community.office365.com/en-us/f/default.aspx
    Thanks for your understanding.
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Server Alert log location in 10G?

    Hi All,
    Can someone tell me what's the location for the Server alert log in  10g. Like we have in 11g in $GRID_HOME/log/servername location.
    Regards,
    Manish Singh.

    Manish,
    Server logs will be present under $GRID_HOME/log/host_name  followed by different-2 folder containing different logs of cluster process.
    Which log you are referring too ? For each specific cluster component you need to go to component specific folders and look for its logs.
    Like :
    Grid_home/log/host_name/crsd
    Grid_home/log/host_name/cssd
    etc etc.
    Read the below link for more information:
    http://docs.oracle.com/cd/E14795_01/doc/rac.112/e10717/troubleshoot.htm#CHDGGHCI
    Regards,
    Mukesh

  • How can check which patch install in oracle 10g

    hi experts,
    i have use oracle 10g , i hv patch information but how can check which patch install ?

    Run following command , it will give you list of patches installed on Oracle Home
    cd ORACLE_HOME/OPatch
    opatch lsinventory
    For patchset and CPU patch , check/query DBA_REGISTRY_HISTORY
    Virag

  • How to migrate 4 TB Oracle databse RAC 10g R2 from Solaris to AIX

    We have a datawarehouse Oracle RAC 10g 2 with 3 nodes (about 4TB) on Solaris 9 and we want to migrate it to AIX -- is RMAN or Transportable Tablespaces the best solution? How does it work? What are the possible problems?
    Note: Actually RMAN is not use to backup.
    Thank you

    Hello,
    Ideally RMAN is best option but in this case it will be complex but very possible. Cross platform restore using RMAN
    See following oracle doumentation for more details and you can search metalink for more stepwise detailed instructions
    http://download.oracle.com/docs/cd/B19306_01/backup.102/b14191/dbxptrn.htm#BRADV05432
    Regards

  • How do i licence a two node RAC with ASM infrastructure

    AM trying to estimate the licensing of two node RAC with ASM as storage manager and GRID control as management tool

    Hi,
    Oracle license depends on lot of things, Edition of Oracle your running standard or enterprise, the optional packges you need and etc.
    Read through http://docs.oracle.com/cd/E11882_01/license.112/e10594/editions.htm#BABDJGGI
    also if you license named users or processor. You can get the price for the from online oracle store
    https://oraclestore.oracle.com/OA_HTML/ibeCCtdMinisites.jsp?language=US&ref=ibeCZzpHome.jsp

  • How to check the change log of a variant

    Dear Gurus,
    I want to check the changes done (Change log) in a variant of a program. But i could not find any options around. Please suggest me how can I find the changes done on a variant.
    Thanks in advance.
    RathiM

    Hi Koteswar!!
    Vishal was perfect in his reply to your query. But still as you insisted here comes a step by step elabu2026
    1.     Execute the transaction SE38
    2.     Give the program name in the field against the Program
    3.     In the sub objects section select the radio button variants
    4.     Click on Display
    5.      You will now lead to the ABAP: Variants initial Screen where you enter the variant name in the field against the Variant
    6.     Now traverse through the path utilities-Find  from the main menu
    7.     You will be prompted with a Find variant Popup where you can give the respective variant name and click on execute.
    8.     Yow will be returned with a screen having information regarding Variant name, short description, Environment, Protected, Changed by and Last Changed.
    Trust that suffice to your query!!
    Regards,
    Damanaidu J
    Edited by: Damanaidu jawaharlal on May 22, 2011 1:01 PM

Maybe you are looking for