How to know oracle is installed successfully

Hi,
How can i believe that oracle software is installed successfully.

Hi;
How can i believe that oracle software is installed successfully.1. Check log file
2. Try to connect or try to start/stop your database,check alert log during this period
Regard
Helios

Similar Messages

  • How to check oracle properly installed or not?

    Hello Friends,
    How to check oracle properly installed or not. cause during installation time the person who installed faced many problems. we have RISK base IBM p5 Series server and Oracle 10g RAC.
    i want to check installation made properly or not.
    Thanks,
    Nikunj Patel

    Installation for RAC environments means you are not only talking about one single installation, but several installations, and the number of installations and checking processes depend on factors such as the clusterware you are using, if you are using the Oracle clusterware or the proprietary clusterware, if you are using a separate oracle home to install the ASM or if you are using the same oracle home for both, the ASM and the RDBMS.
    First you must ensure you have installed all prerequisites according to your platform, i.e. patches, packages, kernel parameters, etc. which are listed at the install guide corresponding to your platform. Then you should use the cluvfy (cluster verifier tool) to check if the different install phases are properly installed
    The most critical and most of the times, problematic installation phase is the clusterware. So you should specify if you installed the Oracle clusterware or the proprietary clusterware. In a RAC environment if your clusterware is not properly installed, most probably you won't have a running RAC, so if your environment is functional there you may have high probabilities that it is OK, but to make sure, launch the cluvfy tool.
    The cluvfy tool verifies the process since the beginning and it ensures your environment meets the required minimum requirements to be at an operational level, it checks the pre/post install phases for the clusterware, pre/post install of the rdbms, and it is launched from the OS. It can be obtained as a standalone product or you can use the one found at the clusterware Oracle Home. For further references on this tool I suggest you to read this
    Oracle® Database Oracle Clusterware and Oracle Real Application Clusters Installation Guide
    10g Release 2 (10.2) for AIX
    Part Number B14201-04
    ~ Madrid

  • How to know oracle client or oracle server installed in m/c ?

    Hi all,
    Could any one tell me how to know whether oracle 10.1 s/w installed in my machine is client version or server . Is there any easy method..??
    Thanks in advance.

    Hi,
    Check the database / dbs folder exist in the $ORACLE_HOME if yes then SERVER else CLIENT.
    PS: Above is not a standard method, i am telling based on DIRECTORY.
    Regards,
    Taj

  • How to know Oracle Developer Suite Release Number?

    Hi,
    I have installed 11.5.10 CU2 on Windows XP SP2.
    I have below dirs after installtion:
    (1) D:\orclapps\orclappsappl
    (2) D:\orclapps\orclappscomn
    (3) D:\orclapps\orclappsdata
    (4) D:\orclapps\orclappsdb\9.2.0
    (5.1) D:\orclapps\orclappsora\8.0.6
    (5.2) D:\orclapps\orclappsora\iAS
    Following note 391564.1. I want to know Oracle Developer Suite Release to choose appropriate patch as per point 3.3. How can i know Developer Suite Release Number.
    Thanks.

    We discussed this in the forum before, please see these threads/docs, it should be helpful.
    how to find the developer version
    how to find the developer version
    How to Obtain Oracle Forms Version in Oracle Applications 11i from Command Line [ID 392793.1]
    Thanks,
    Hussein

  • How to know oracle dump is 32bit or 64bit

    Hi All,
    I Want know Oracle Database Dump is 32bit or 64bit. how can i find can you help me on this

    Hi,
    I Want know Oracle Database Dump is 32bit or 64bit. how can i find can you help me on thiswhy don't you try by command "file <file_name>" in unix flavors environments.
    If you trying to check the dump file which got generated from the database is whether 32 bit or 64 bit, then you it would be difficult to find out. Try to check the log of dump or database environment from where it got generated.
    - Pavan Kumar N

  • How to know whether the installed Oracle is 32 bits(or 64 bits)?

    I have installed Oracle 8.1.6 on HP-UX 11(64 bits OS ), But I dont know whether the oracle is 64 bits.
    How can I get to know it?
    Thanks!
    null

    Hi, This is late though, but to let you know that Oracle 8.1.6 is 64-bits
    Duronke
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by zhihui zu ([email protected]):
    I have installed Oracle 8.1.6 on HP-UX 11(64 bits OS ), But I dont know whether the oracle is 64 bits.
    How can I get to know it?
    Thanks!
    <HR></BLOCKQUOTE>
    null

  • How to know if commit_form is successful

    Hi
    I am new with Oracle Forms.
    I am developing an application using Oracle 10g express and forms 6i.
    Can somebody please guide me regarding code under SAVE button(I have placed some push buttons on form for add_new, Save, Reset ect).
    I am trying to handle DUPLICATE_RECORDS AND NULL_VALUES through this code which is in ON_ERROR form trigger
    declare
    x number;    
    begin
    if dbms_error_code in (-1400, -1407) then
         x:=show_alert('alert_Empty');
       raise form_trigger_failure;
    elsIF dbms_error_code='-00001' then
         x:=show_alert('alert_duplicate');
       raise form_trigger_failure;
    end if;
    end;
    and code under SAVE button is
    declare
    a number;
    begin
               commit_form;
                a:=show_alert('alert_Saved');
                clear_form(NO_VALIDATE);
                raise form_trigger_failure;   
    but even form is prompting for duplicate value or null value, Alert_save is showing as record has been saved.
    My question is how I can be sure that record has been saved actually?????
    I have tried to check :SYSTEM.FORM_STATUS and it return CHANGED .
    is there any approach I should use, any sample piece of code will be much appreciated.
    regards.
    end;

    Well, looking at the Forms Help System, (FORM_SUCCESS built-in) they give an example of how to test if the commit was successful.
    IF Form_Success THEN
      Commit;
      IF :System.Form_Status <> 'QUERY' THEN
        Message('Error prevented Commit');
        RAISE Form_Trigger_Failure;
      END IF;
    END IF;
    Craig...

  • How to Know Oracle server id and port

    Dear all
    I try to run oracle report in jdeveloper
    i make the java files that calling the report as from i found in the internet as follow
    OracleReportBean reportBean =
    new OracleReportBean(server id, port, null);
    reportBean.setReportServerParam(OracleReportBean.RS_PARAM_DESTYPE,"cashe");// which will be one of the [cashe - file - mail - printer]
    reportBean.setReportServerParam(OracleReportBean.RS_PARAM_DESFORMAT,"PDF"); // Which will be onr of the [HTML - HTML CSS - PDF - SPREADSHEET- RTF].
    reportBean.setReportParameter("xxx", "ssss");
    reportBean.setReportParameter("kkkk", "uu");
    String url = reportBean.getReportServerURL();
    reportBean.openUrlInNewWindow(url);
    But i do not know what is the server id and port
    and how to specify the report name in the code.
    Please help me in this issue.
    Best Regards;

    I think that the serverid and the port is the ip of your report server and the port. (default 7779)
    see this post http://sameh-nassar.blogspot.com/2010/07/call-oracle-reports-from-your-adf.html
    so I can see, the name of the report is indicated via parameter
            //launch report
            testBean.setReportServerParam(OracleReportBean.RS_PARAM_REPORT, "name_report.rdf");
            testBean.setReportServerParam(OracleReportBean.RS_PARAM_ORIENTATION, OracleReportBean.ORIENTATION_PORTRAIT);
            testBean.setReportServerParam(OracleReportBean.RS_PARAM_DESFORMAT, OracleReportBean.DESFORMAT_PDF);

  • How to know oracle 11.2.03  is upgraded from 11.2.02

    Hi All,
    Please Help me to know whether my Oracle installation is upgraded from lower version or directly installed latest version
    Thanks in advance

    You need to query DBA_REGISTRY_HISTORY: http://docs.oracle.com/cd/E11882_01/server.112/e25513/statviews_4210.htm#REFRN23549.

  • How to connect oracle DB installed in oracle VM from PC

    Hi
    I am trying to connect to oracle DB which is installed on oracle Virtual Machine from my PC.I can not succeed to connect with Oracle SQL developer.It is saying that can Network adapter can not establish connetion.Is there a specific configuration for this.I am using Vista and i can connect to internet from my VM.
    Regards.
    Murat

    yimu187 wrote:
    No I can not ping the mechine.Also ı did not make a specific network configuration to my oracle Virtual Machine.
    As i said above i did not make any specific network conf. but i can connect to internet from oracle VM.
    Regards
    MuratYour problem is not much related to ORACLE network issues like TNS and all,
    but it is issue with networking from host to VM, You may get better response if you post in vmware communities.
    http://communities.vmware.com/community/vmtn/
    Thanks.

  • How to know CC program installed on user machine?

    Dear all please your help
    my IT admin cutomer using CCT with 20 user and have plan to detect what kind program CC has installed on user machine? any programs to detect it?
    regards
    Deto

    We can detect if the CC was activated but we can not detect which program of the CC app was installed & activated from the CC subscription.
    The activation can be detected but not the particular product.
    Regards
    Rajshree

  • I am trying  to install CS3 on Windows 8 and keep getting a message saying "the serial number I entered is not valid please enter it again" Does anyone know how to install successfully on Windows 8?

    I am trying  to install CS3 on Windows 8 and keep getting a message saying "the serial number I entered is not valid please enter it again" Does anyone know how to install successfully on Windows 8?

    CS3 is unsupported under Windows 8. That said, you'll need to contact Adobe
    directly for serial number issues.

  • How to know a utility is installed or not in oracle database?

    hi,
    how to know a utility is installed or not in oracle database?
    thanks
    raju

    To list the number of DBMS packages
    SQL> select * from dba_objects where object_name like '%DBMS%';This will only return DBMS packages (not other packages like UTL_FILE, UTL_ENCODE, ..etc).

  • How to deinstall Oracle Developer 2000 6i and again install properly

    hi
    My HDD is partitioned as C,D,E and F. Oracle 9i is successfully installed in my system in C:\ drive (C:\oracle)and it's running fine. when i was going to install Oracle Developer 2000 6i in F:\ drive it dint show neither any error message nor message like successfully installed but all icons are there. when i was started the forms buider it's showing " ORA-12154: TNS: could not resolve service name" error. how to run forms builder? i have installed in XP. should i deinstall Oracle Developer 2000 6i? if yes, how to deinstall that and how to install it properly?
    should i install oracle 9i database before and then oracle developer 2000 6i or vice versa???
    will be waiting for your valuable suggestions.......
    thanks & regards,
    Priyatosh

    hi
    the tnsnames.ora file is in F:\oracle\Frm61\NET80\ADMIN. i have attached the contents of that file below. i don't know where to change and what to change.
    Beq-local.world =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = beq.world)
    (PROTOCOL = BEQ)
    (PROGRAM = oracle73)
    (ARGV0 = oracle73ORCL)
    (ARGS = '(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))')
    (CONNECT_DATA = (SID = ORCL)
    Tcp-loopback.world =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp.world)
    (PROTOCOL = TCP)
    (Host = 127.0.0.1)
    (Port = 1521)
    (CONNECT_DATA = (SID = ORCL)
    Example1.world =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = tcp.world)
    (PROTOCOL = TCP)
    (Host = Production1)
    (Port = 1521)
    (CONNECT_DATA = (SID = SID1)
    Example2.world =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = spx.world)
    (PROTOCOL = SPX)
    (Service = Server_lsnr)
    (CONNECT_DATA = (SID = ORCL)
    Example3.world =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS =
    (COMMUNITY = nmp.world)
    (PROTOCOL = NMP)
    (Server = FinanceServer1)
    (Pipe = ORAPIPE)
    (CONNECT_DATA = (SID = ORCL)
    please help me out.....
    thanks & regards,
    Priyatosh

  • How I know which manageability tools(Oracle Change Management Pack,Oracle C

    Dear all,
    How I know which manageability tools(Oracle Change Management Pack,Oracle Configuration Management Pack,Oracle Diagnostic Pack,Oracle Tuning Pack, etc.) are installed on my oracle databases? Is there v$view to look at? Thank you in advance for your help.

    The usual method is described in http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/options.htm#CIHGFIAF

Maybe you are looking for

  • Why am i getting this error while running the javascript for adding watermark from file??

    Hi, I am using adobe acrobat 9 professional .I need to add watermarkfrom file  to a pdf document by clicking  a button on the document which runs the following javascript this.addWatermarkFromFile({ cDIPath: "/C/watermark.pdf", nSourcePage: 1, nEnd:

  • Face time is blurry on my iPad mini

    My sister and myself both have an iPad mini. We live miles apart so face time is ideal ..... However I appear blurry whereas she is clear .... I also checked my camera to take a photo of myself and that is also blurry ? I do not have that problem on

  • [ANNOUNCE] Beta Release availbe for download

    I'm very happy to announce that the JavaServer Faces 1.0 Beta Release is available for download at <http://java.sun.com/j2ee/javaserverfaces/download.html>. Please share your feedback here! Thanks, Ed JSF Staff

  • Search does not work under firefox

    Dear, Under firefox (1.0.1) and also under mozilla 1.7.5, the 'go' buttom next to the search field does not seem to function.

  • Virtual pc install error

    Installed virtual pc v7, restarted per instructions but now the software will not load to allow the windows install...the message is app quit unexpectedly and prompts to retry and send report to apple...any ideas on how to fix?