How to test whether Oracle9iAS is installed successfully

We have installed the Oracle9iAS in Windows. I want to know whether Oracle9iAS is installed successfully.

Hi,
If you have installed 9iAS using Oracle Universal Installer then you can confirm that the AS had been installed successfully from the last screen that says so.
You can check by running the OUI and clicking on the "Installed Products" button to verify if the installed Oracle Home is present or not.
Hope this helps.
Regards,
Sindhiya V.

Similar Messages

  • How to test whether XI is sending file or not?

    Hi all!
    My scenario is like this:File(File sender Adapter)->XI->(HTTP receiver adapter)J2EE appl.
    I placed the xml file in D:\somedir on my PC. It is picking up the file, after picking it should post the same xml file to my j2ee appl. My servlet receives the xml file and display it on browser. But nothing is displayed. How to test whether XI is sending XML file to J2EE appl or not? All helpful answers are highly appreciated.
    Thanks!

    Hi
    In the file adapter i set processing mode as delete, it is picking up well from my d:\somedir.
    I got success flag in SXMB_MONI and successful status in RWB->message monitoring?
    Why my servlet is not able to display?
    All helpful answers are rewarded.
    public class DisplayRes extends HttpServlet {
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
                        doPost(request,response);
         public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
         BufferedReader brin =new BufferedReader(new InputStreamReader(request.getInputStream()));
         String inputLine;
         StringBuffer sBuf = new StringBuffer();
         while ((inputLine = brin.readLine()) != null)
             sBuf.append(inputLine);
             brin.close();
             PrintWriter out = response.getWriter();
             response.setContentType("text/xml");
             //out.setContentType("text/xml");
             //out.println(sBuf.toString());
             out.write(sBuf.toString());
             out.flush();
    Thanks

  • How to test whether AIA got integrated with BRM system successfully

    Is there a procedure to test whether AIA got integrated with BRM system successfully.How can i test whether BRM Adapter is able to connect to BRM system.
    Thanks well in advance
    Santosh

    Hi Santhosh,
    I hope you are using AIA 2.0/2.0.1 for Comms and trying to integrate BRM with Siebel.
    1. To check BRM & Siebel integration using AIA. (BRM is the Product master gets synched with Siebel.)
    a) Create a new Product in BRM pricing center(Provide product name, Service type)
    b) Select Event(Single time purchase event)
    c) Provide rating for the product
    d) Commit after product creation(Check in BPEL process, whether all the instances are went through successfully)
    e) Check Siebel Catalog, whether product got synched from BRM
    2. To check whether BRM Adapter connected to BRM,
    a) Login into Oracle Application server
    b) Select OC4J instance, where your AIA is running
    c) Select Applications
    d) In view drop down select "StandAlone Resource Adapters"
    e) Check the status (green or red) in the installed BRM adapter
    If you haven't deployed BRM Adapter read the installation guide to deploy it.
    Regards,
    Ziaur Rahuman

  • How to test whether a table exists in database?

    How can I test whether a table exists in a database before I execute a query? If the table doesn't exist, I want first create a default table with certain name so that I can always display something in JTable.
    Thanks!

    Hi,
    There are tow ways :
    The first one is :
    - load the list of tables of the Database in a Vector for exemple by using methode DatabaseMetaData.getTables () and you can test if the table exist or not in the vector by using methode Vector.contains(Object o).
    The code seems Like that :
    // Loading List Of Tables
    // you need to load the list of tables at the begening of
    // your class
    Vector listOfTables = new Vector();
    try
    rs = yourConnection.getMetaData().getTables();
    while (rs.next())
    listOfTables.addElement(rs.getString(3));
    catch(SQLException exp)
    // When you need to test the existance of table name
    // you add this line
    if(listOfTables.contains(tableName))
    // your code
    The second one :
    try
    //execute your query
    catch
    //Create your default JTable
    I hope that my response can help you!
    Ciaou,
    Anis

  • How to Find whether  JRE is installed in a system or not ?

    I have to write an application in which I want my app to find whether jre is installed or not ?
    Can any one help in this ? My E-Mail ID is
    [email protected]
    Kumanan.

    For windows OS this is the solution.
    Find out the following key in the registry.
    HKEY_LOCALMACHINE/Software/javaSoft/Java Runtime Environment
    if the key to javasoft is there then JRE is installed and to see the version of JRE look a level down further and you will find the versions.

  • How to ensure whether the row is successfully inserted

    HI All,
    Is there any means of ensuring whether the row was successfully inserted or not?
    I want to insert a row into a table and if it is successfully inserted I want to return the return code as 0 else some error code.
    Also I am selecting a value into a variable from the join of 3 records and the select is supposed to return a unique value.
    What I want to ensure is if at all it is returning a row of not and if not then pass other value(say null)
    What I have done is I have taken the result into a cursor and I loop through it because I know that the cursor proceeds if it finds a null as the resultant row. But I know it is not a good method.
    What else can I do?
    Regards,
    Amit

    a basic example would look something like this
    Create Or Replace Procedure Your_Procedure_Name (pErrNum Out Number) Is
    Begin
      Insert Into Your_Table_Name
       (col1, col2, col3)
      Values
       (pCol1, pCol2, pCol3);
      -- return 0 means successfull
      pErrNum := 0;
    Exception
      When Others Then
        -- return the errorcode
        pErrNum := SQLCODE;
    End;
    /

  • How to trace whether JDI is installed on J2EE

    Dear All,
    Is there any way to check whether JDI is installed on J2EE engine. Please suggest.
    Regds,
    Anup.

    Anup,
    do you mean "with coding" or "somehow"?
    The easiest way to check, is to request
    http://<host>:5<instance_number>00/devinf
    if it works, the JDI is installed. Or look in the SDM-repository. If you see the JBUILDTOOLS, JDI is installed.
    Kind regards, Achim
    Message was edited by: Achim Hauck

  • How to find whether Oracle is installed on any server or not.

    Hi,
    I am trying to use the following command to check if Oracle is installed on any Unix server or not. I am not sure whether it is right way or not. If not, is there any other way to find installation of Oracle or not?
    find . -name oraInst.loc >>/tmp/`uname -n`-swinv.txt
    Thanks
    Vipin Gupta

    Every installation of Oracle RDBMS in *nix will contain a bin directory in which you find the oracle executable which must be setuid to the 'oracle' owner.
    The inventory doesn't need to exist.
    The oraInst.log doesn;t need to exist
    The above are created when the Oracle Universal Installer has been used.
    The oratab doesn't need to exist.
    The above exists when the dbca has been used or the DBA was smart enough to plan for oraenv.
    However, every Oracle database needs the oracle executable, named oracle, in the ORACLE_HOME/bin directory, and that must be owned by a userid in the 'OS_DBA' group - usually dba. So
    find / -name oracle
    to find that, and then check whether it is in a ?/bin directory, and finally verify that it is setuid to the owner and setgid to the group.
    Of course that is the tip of the oracle iceberg - Oracle has a whale of a lot more products and the question to find whether 'Oracle' is installed might include Oracle App Server (look for opmnctl in ?/opmn/bin for the full install of Oracle App Server, or ?/bin/oc4j for just the J2EE engine) or Oracle JDeveloper (look for ?/bin/jdev) and so on.
    In Windows, append .exe to the search target.

  • How to find whether MI is installed in my landscape?

    Hi
    I would like to know, how/where can I check whether my landscape has mobile infrastructure components got installed or not? I've seen in sld - products where mdk all versions are there.
    Is it require to take any post installation steps for utilizing these mobile infrastructure applications?
    I was just browsing and came to know that Mobile client and server are existed. Mobile Client can be installed at Mobile devices and Laptops. Mobile server will be in WAS. Is this correct?
    Please explain in clearly.
    Thanks.

    Hi,
    Mobile 7.10 (DOE) is available with Netweaver 7.10 along with ABAP AS installation.
    Check whether you are able to assign SAP_DOE* to a user from tcode : SU01.
    Once the user is assigned, check the transaction SDOE_WB. If you see this , that means NW Mobile 7.10 is installed in your system.
    Mobile includes DOE (Data Orchestration Engine , ABAP based message oriented middleware)
    This constitutes of design time tool for defining data objects and distribution of data.
    A runtime to replicate,synchronize and distribute data between the components like Back End and Receiver of data.
    Along with DOE, Netweaver Mobile client is an additional installable unit.
    Mobile client is installed locally on mobile devices and has a webserver ,database layer and a framework for the mobile applications.
    This client framework can be seen as the default client that is shipped by SAP.
    Mobile applications can be built using the development environment NetWeaver Developer Studio .
    Regards,
    Liji

  • How to verfiy whether weblogic nodemanager is successfully started or not.

    I started the node manager using the below format.
    startNodeManager.sh pebblz10 3001
    Could any one tell me whether it is succesfully started or not.
    The log file which is generated after executing is also listed below.
    FYI ::
    chicago% pwd
    /wlsuite/om/cm/apps/BEA/SunOS5.10/wls10mp1/wlserver_10.0/server/bin
    chicago% startNodeManager.sh pebblz10 3001
    CLASSPATH=/ipf/tools/SunOS5.8/bea/wls10mp1/patch_wls1001/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/ipf/tools/SunOS5.8/bea/wls10mp1/jdk150_11/lib/tools.jar:/ipf/tools/SunOS5.8/bea/wls10mp1/wlserver_10.0/server/lib/weblogic_sp.jar:/ipf/tools/SunOS5.8/bea/wls10mp1/wlserver_10.0/server/lib/weblogic.jar:/ipf/tools/SunOS5.8/bea/wls10mp1/modules/features/weblogic.server.modules_10.0.1.0.jar:/ipf/tools/SunOS5.8/bea/wls10mp1/modules/features/com.bea.cie.common-plugin.launch_2.1.2.0.jar:/ipf/tools/SunOS5.8/bea/wls10mp1/wlserver_10.0/server/lib/webservices.jar:/ipf/tools/SunOS5.8/bea/wls10mp1/modules/org.apache.ant_1.6.5/lib/ant-all.jar:/ipf/tools/SunOS5.8/bea/wls10mp1/modules/net.sf.antcontrib_1.0b2.0/lib/ant-contrib.jar::/ipf/tools/SunOS5.8/bea/wls10mp1
    + export CLASSPATH
    + export PATH
    + cd /ipf/tools/SunOS5.8/bea/wls10mp1/wlserver_10.0/common/nodemanager
    + set -x
    + [ 3001 !=  ]
    + [ pebblz10 !=  ]
    + /ipf/tools/SunOS5.8/bea/wls10mp1/jdk150_11/bin/java -client -Xms32m -Xmx200m -XX:MaxPermSize=128m -Xverify:none -Djava.security.policy=/ipf/tools/SunOS5.8/bea/wls10mp1/wlserver_10.0/server/lib/weblogic.policy -Dweblogic.nodemanager.javaHome=/ipf/tools/SunOS5.8/bea/wls10mp1/jdk150_11 -DListenAddress=pebblz10 -DListenPort=3001 weblogic.NodeManager -v
    + set +x
    If started, how can i access the node manager, from which location.
    I see a another nodemanager.sh in WL_HOME/server/bin. Is this script i need to execute the node manager. Please let me know.
    Any response is very helpful to me.

    Log into the weblogic console for one of the domains controlled by that nodemanager. I know there's a page that checks nodemanager connectivity. It's either in the "Server" or "Machine" area, I don't remember.

  • How to find MI 2.5 installed on server successfully?

    Hi All
    As I am NOT getting 'WebConsole' screen but ony 404 error, now I have a doubt whether my server has MI 2.5 installed successfully or not.
    Is there anyway to check whether MI 2.5 installed in the middleware server or not.
    Please help.
    Thanks.
    Ragavan.

    Hi Srinivas
    Did u create a <sysid>.props file? In this file you
    need to give the name of the application server name and the WebAS system number.(This value you set while installing a WebAS server).
    Ashost = <server name>
    sysnr = <system number>
    after u created this file,
    you just type this URL in the web browser and check the result
    http://<Server>:<Port>/meSync/servlet/meSync?sysid=<System ID>&login=<User name>&password=<Password>&client=<Client>&language=<Language>&acknowledge=X&~test=true&
    If the test was successful, the browser displays a message containing a time that, for example, looks like:
    &WAF_SYNC&STATUS=&Execution Time =103129& HeaderType = MEREPLICATION &MORE_PACKAGES_WAITING = &
    If the test fails, the system generates an error message.
    after you configure your client, client checks this file entries for synchronization.So after the first synchronization the device will be generated.
    refer to this URL ..
    http://help.sap.com/saphelp_nw04/helpdata/en/a3/583aef1baa6d42b22bedcb4dec5db9/frameset.htm

  • How to execute Coded UI automated test case remotely without installing Visual studio?

    We are using visual studio 2013 premium. my object is to run the Coded ui automated test case remotely without installing visual studio. can you guide me how to approach it successfully ?
    Thanks in Advance..  

    Hi Divakar,
    According to your description,
    as far as I know that if we want to run the automation test remotely without vs using mstest, we will need to install and configure the test controller and the test agent machine.
    Please refer to the following steps configure the test controller on locally machine and install a test agent on the remotely machine.
    Note: If you an
    automation test on locally machine, we must make sure the test agent be installed on remotely
    machine.
    Step1: you can try to
    configure test controller and agent, for more information:
    http://msdn.microsoft.com/en-us/library/hh546459.aspx
    Step2: you will need to
    assign roles to a Test Controller and Test Agent for Automated Testing in Visual Studio, please see:
    http://msdn.microsoft.com/en-us/library/ff469838.aspx
    Note: you will need to add a testsetting file before you assign roles to a Test Controller and Test Agent for Automated
    Testing in Visual Studio.
    Reference:
    http://msdn.microsoft.com/en-us/library/ee256991.aspx
    Step3: After you configure and install the test controller and test agent successfully, we can
    executed coded UI test remotely using  mstest.exe on test agent machine, we would call the testsetting file in command line.
    Reference:
    How
    to use MSTest.exe command-line options
    In addition, I find an article about
    Running tests in mstest without installing the VS IDE, please see:
    http://blogs.msdn.com/b/anutthara/archive/2009/12/16/running-tests-in-mstest-without-installing-the-vs-ide.aspx
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

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

  • I currently run the Design and Web Premium CS6 on a first generation MacBook Air and want to buy a new MacBook Pro. How do I know whether I can install my Adobe programs onto the new computer? Because I know there is some kind of limit.

    I currently run the Design and Web Premium CS6 on a first generation MacBook Air and want to buy a new MacBook Pro. How do I know whether I can install my Adobe programs onto the new computer? Because I know there is some kind of limit.
    Also, I had to install the software twice on my same computer before because I had to reboot the computer. I don't know if this affects the limit.

    You are allowed to have two activated installations so there should not be a problem having working installations on the two machines.  If by chance you have somehow tied up two activations for the one machine you can have Adobe support help resolve that thru chat.
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Why my AE, PR, etc are in test mode how can i get it in install mode

    why my AE, PR, etc are in test mode how can i get it in install mode

    Serge, I have the same issue, after updating the Creative Cloud Desktop application last week, suddenly some apps are in TEST mode instead INSTALL...  (adobe Premiere, After Effects). 

Maybe you are looking for

  • Exporting PDF format for web viewing, fonts look bad

    Hey everybody I'm relatively new to indesign so sorry if this is a simple one. I'm doing a newsletter in indesign, which will be used stricktly for web viewing. Whenever I export the file as a pdf the body text fonts look a bit off, as though they ar

  • HDMI cable connection to MBP

    Should the MBP be powered off or sleeping before plugging in the HDMI cable to connect a TV or does it matter? I notice when I plug in the cable with both TV and MBP turned on, the MBP screen will flicker for a few seconds until the display shows up

  • Trying to add logo to Holiday Card

    I'm trying to design a business holiday card with iPhoto 11. I want to add a logo that that is rectangular in shape to the inside of the card. I keep getting square photo options for the inside which doesn't work with our longer shaped logo without i

  • CS5 upgrade from premiere pro 1.5

    Is it possible to upgrade  from premiere pro 1.5 to CS5?

  • Exit Code 24

    I have a new copy of Elements 9 which won't install. Instead I get this message: Exit Code: 24 Summary -------------------------------------- - 0 fatal error(s), 1 error(s), 0 warning(s) ERROR: Following Conflicting processes were running - block:She