How can I know the version of Application Server Java Virtual Machine

How can I know the version of Application Server Java Virtual Machine?
Thanks a lot.

Thats easy. Your jdk/jre are located in the App Server home directory. Just run the java command under the jdk directory with the "-version" switch and it will provide you with detailed information about your VM.
For example if you're doing it at command prompt it will be something like
java -versionI hope this will be useful to you.
Regards,
Wasif

Similar Messages

  • How can i know the version of autoconfig ?

    hi
    I am on 12.1.1
    to determine my autopatch version i used Note 390666.1
    i ran
    SET head off Lines 120 pages 100
    col n_patch format A10
    col bug_number format A10
    col patch_name format A10
    spool LACF_ptch_level.txt
    select ' LACF ' FROM dual;
    select bug_number, decode(bug_number,
    '4494373' ,'R12.TXK.A'
    ,'5872965' ,'R12.OAM.A'
    ,'5909746' ,'R12.TXK.A.1'
    ,'5917601' ,'R12.TXK.A.2'
    ,'6077487' ,'R12.TXK.A.DELTA.3'
    ,'6145693' ,'R12.Rapidclone Cons Jan2008'
    ,'6776948' ,'R12.Rapidclone CONSOLIDATED'
    ) n_patch, last_update_date
    FROM ad_bugs
    WHERE bug_number IN ( '4494373', '5872965', '5909746', '5917601', '6077487', '6145693', '6776948' );
    the output was
    4494373 R12.TXK.A 04-JAN-07
    4494373 R12.TXK.A 22-JAN-08
    5872965 R12.OAM.A 22-OCT-07
    5872965 R12.OAM.A 22-OCT-07
    5909746 R12.TXK.A. 22-OCT-07
    1
    5909746 R12.TXK.A. 21-JAN-08
    1
    5917601 R12.TXK.A. 22-OCT-07
    2
    5917601 R12.TXK.A. 21-JAN-08
    2
    6077487 R12.TXK.A. 22-OCT-07
    DELTA.3
    6077487 R12.TXK.A. 21-JAN-08
    DELTA.3
    6145693 R12.Rapidc 06-NOV-08
    lone Cons
    Jan2008
    how can i know the version of autoconfig from that?
    Thanks

    Hi,
    4494373 R12.TXK.A 04-JAN-07
    4494373 R12.TXK.A 22-JAN-08
    5872965 R12.OAM.A 22-OCT-07
    5872965 R12.OAM.A 22-OCT-07
    5909746 R12.TXK.A. 22-OCT-07
    5909746 R12.TXK.A. 21-JAN-08
    5917601 R12.TXK.A. 22-OCT-07
    5917601 R12.TXK.A. 21-JAN-08
    6077487 R12.TXK.A. 22-OCT-07
    6077487 R12.TXK.A. 21-JAN-08
    6145693 R12.Rapidc 06-NOV-08
    how can i know the version of autoconfig from that?The above indicates that the latest patches applied are 6077487 and 6145693.
    To find the latest AutoConfig and Rapid Clone patches on R12, please refer to:
    Note: 387859.1 - Using AutoConfig to Manage System Configurations in Oracle E-Business Suite Release 12
    Note: 406982.1 - Cloning Oracle Applications Release 12 with Rapid Clone
    Thanks,
    Hussein

  • How can I know the version of the running jre in the oracle10 DB

    Hi there,
    I am sorry if this question sounds dull, but I need to know what jre version is running currently on my DB,
    I guess there would be some command, some query!!!!
    I am using oracle 10.2,
    or if there is a way from some oracle tools, such as the toad
    rgrds.

    You marked prematurely as the answer is not correct. Well at least not based on your original inquiry. This I suspect is what you were actually looking for.
    CREATE OR REPLACE VIEW v$system_properties AS
    SELECT cast('User''s current working directory (ORACLE_HOME)' AS
    varchar2(46)) as PROPERTY_NAME,
    get_java_system_property('user.dir') AS PROPERTY_VALUE
    FROM DUAL
    UNION ALL SELECT 'Java Runtime Environment version',
    get_java_system_property('java.version') FROM DUAL
    UNION ALL SELECT 'Java Runtime Environment vendor',
    get_java_system_property('java.vendor') FROM DUAL
    UNION ALL SELECT 'Java vendor URL',
    get_java_system_property('java.vendor.url') FROM DUAL
    UNION ALL SELECT 'Java installation directory',
    get_java_system_property('java.home') FROM DUAL
    UNION ALL SELECT 'Java Virtual Machine specification version',
    get_java_system_property('java.vm.specification.version') FROM DUAL
    UNION ALL SELECT 'Java Virtual Machine specification vendor',
    get_java_system_property('java.vm.specification.vendor') FROM DUAL
    UNION ALL SELECT 'Java Virtual Machine specification name',
    get_java_system_property('java.vm.specification.name') FROM DUAL
    UNION ALL SELECT 'Java Virtual Machine implementation version',
    get_java_system_property('java.vm.version') FROM DUAL
    UNION ALL SELECT 'Java Virtual Machine implementation vendor',
    get_java_system_property('java.vm.vendor') FROM DUAL
    UNION ALL SELECT 'Java Virtual Machine implementation name',
    get_java_system_property('java.vm.name') FROM DUAL
    UNION ALL SELECT 'Java Runtime Environment specification version',
    get_java_system_property('java.specification.version') FROM DUAL
    UNION ALL SELECT 'Java Runtime Environment specification vendor',
    get_java_system_property('java.specification.vendor') FROM DUAL
    UNION ALL SELECT 'Java Runtime Environment specification name',
    get_java_system_property('java.specification.name') FROM DUAL
    UNION ALL SELECT 'Java class format version number',
    get_java_system_property('java.class.version') FROM DUAL
    UNION ALL SELECT 'Java class path',
    get_java_system_property('java.class.path') FROM DUAL
    UNION ALL SELECT 'List of paths to search when loading libraries',
    get_java_system_property('java.library.path') FROM DUAL
    UNION ALL SELECT 'Default temp file path',
    get_java_system_property('java.io.tmpdir') FROM DUAL
    UNION ALL SELECT 'Name of JIT compiler to use',
    get_java_system_property('java.compiler') FROM DUAL
    UNION ALL SELECT 'Path of extension directory or directories',
    get_java_system_property('java.ext.dirs') FROM DUAL
    UNION ALL SELECT 'Operating system name',
    get_java_system_property('os.name') FROM DUAL
    UNION ALL SELECT 'Operating system architecture',
    get_java_system_property('os.arch') FROM DUAL
    UNION ALL SELECT 'Operating system version',
    get_java_system_property('os.version') FROM DUAL
    UNION ALL SELECT 'File separator ("/" on UNIX)',
    get_java_system_property('file.separator') FROM DUAL
    UNION ALL SELECT 'Path separator (":" on UNIX)',
    get_java_system_property('path.separator') FROM DUAL
    UNION ALL SELECT 'Line separator ("\n" on UNIX)',
    get_java_system_property('line.separator') FROM DUAL
    UNION ALL SELECT 'User''s account name',
    get_java_system_property('user.name') FROM DUAL
    UNION ALL SELECT 'User''s home directory',
    get_java_system_property('user.home') FROM DUAL
    col property_value format a60
    SELECT * FROM v$system_properties
    ORDER BY 1;This multivalue view was written by one of my former University of Washington students, Tom Starr, based on something he saw that was written by Chris Poole that returned the value of $ORACLE_HOME.

  • How can I download the data to Application Server and Network Drive

    Hi Experts
    I am having problem with download the data to Application Server and Network Drive in back ground. its working in foregorund but not in back ground.please suggest me . Thanks for advance.
    Thanks & Regards
    Raghava

    Hi Experts
    I am using like this
    P_Back is a check box on the selection-screen.
    it_fihrst_out-its internal table
    sy-batch -Program is running in the background
    IF sy-batch IS INITIAL.
        IF p_back = 'X'.
          OPEN DATASET file_01 FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
          IF sy-subrc = 0.
            LOOP AT it_fihrst_out.
              TRANSFER it_fihrst_out TO file_01.
            ENDLOOP.
          ENDIF.
          CLOSE DATASET file_01.
          CASE sy-subrc.
            WHEN 0.
              WRITE: / file_01, / 'successfully generated.'.
            WHEN OTHERS.
              WRITE: / file_01, 'Unexpected error occurred.'.
          ENDCASE.
        ELSE.
          CALL FUNCTION 'WS_DOWNLOAD'
            EXPORTING
              filename                = file_01
              filetype                = 'ASC'
            TABLES
              data_tab                = it_fihrst_out
            EXCEPTIONS
              file_open_error         = 1
              file_write_error        = 2
              invalid_filesize        = 3
              invalid_type            = 4
              no_batch                = 5
              unknown_error           = 6
              invalid_table_width     = 7
              gui_refuse_filetransfer = 8
              customer_error          = 9
              OTHERS                  = 10.
          CASE sy-subrc.
            WHEN 0.
              WRITE: / file_01, / 'successfully generated.'.
            WHEN 2.
              WRITE: / file_01, 'Output Error: File still open'.
            WHEN OTHERS.
              WRITE: / file_01, 'Unexpected error occurred.'.
          ENDCASE.
        ENDIF.
      ELSE.
        LOOP AT it_fihrst_out.
          WRITE:/ it_fihrst_out.
        ENDLOOP.
      ENDIF.
    This is the code .

  • How do I know the version of Bootcamp installed on my machine?

    I am curious which version of Bootcamp I'm running.  Version information, or other Bootcamp program-level information not obvious in Applications or About My Mac. 

    Oh, by the way.  Boot Camp Assistant shows version 4.0.4.  Does this correspond to the Boot Camp version level?

  • How can i know the RPM of my HD?

    I guys...
    Simple question...
    How can i know the RPM of my HD?
    I have a Mac mini and i would like to know that.
    Any ideas?.
    Thanks so much!!!

    Hi!!
    It doesn't show...
    Vendor:          NVidia
      Product:          MCP79 AHCI
      Link Speed:          3 Gigabit
      Negotiated Link Speed:          1.5 Gigabit
      Description:          AHCI Version 1.20 Supported
    FUJITSU MHZ2120BH G1:
      Capacity:          120.03 GB (120,034,123,776 bytes)
      Model:          FUJITSU MHZ2120BH G1                   
      Revision:          00810009
      Serial Number:                  K64PT9427599
      Native Command Queuing:          Yes
      Queue Depth:          32
      Removable Media:          No
      Detachable Drive:          No
      BSD Name:          disk0
      Medium Type:          Rotational
      Bay Name:          Lower
      Partition Map Type:          GPT (GUID Partition Table)
      S.M.A.R.T. status:          Verified
      Volumes:
      Capacity:          209.7 MB (209,715,200 bytes)
      Writable:          Yes
      BSD Name:          disk0s1
    Macintosh HD:
      Capacity:          119.69 GB (119,690,149,888 bytes)
      Available:          21.38 GB (21,376,569,344 bytes)
      Writable:          Yes
      File System:          Journaled HFS+
      BSD Name:          disk0s2
      Mount Point:          /
    FUJITSU MHZ2120BH G1:
      Capacity:          120.03 GB (120,034,123,776 bytes)
      Model:          FUJITSU MHZ2120BH G1                   
      Revision:          00810009
      Serial Number:                  K64PT9427599
      Native Command Queuing:          Yes
      Queue Depth:          32
      Removable Media:          No
      Detachable Drive:          No
      BSD Name:          disk0
      Medium Type:          Rotational
      Bay Name:          Lower
      Partition Map Type:          GPT (GUID Partition Table)
      S.M.A.R.T. status:          Verified
      Volumes:
      Capacity:          209.7 MB (209,715,200 bytes)
      Writable:          Yes
      BSD Name:          disk0s1
    Macintosh HD:
      Capacity:          119.69 GB (119,690,149,888 bytes)
      Available:          21.38 GB (21,376,569,344 bytes)
      Writable:          Yes
      File System:          Journaled HFS+
      BSD Name:          disk0s2
      Mount Point:          /
    Those are the 2 texts...
    Any idea?
    Thanks!!

  • How can I use the versionning tool to make a coherent solution to export

    how can I use the versionning tool to make a coherent solution to export all objects used in my project to other db schema for testing as well as for implementation .
    I want to know proper steps to Import/export objects.
    while I am exporting my Master repository and work repository then again importing the all , no problem comes all the physical logical schema mapping and mapping between interfaces retains but
    while I am trying to export and import one or two packages on the ease of testing then I am getting so many mismatches manually I am setting all why so?
    required ur suggestion
    Palash Chatterjee

    kelly-bot wrote:
    Thanks for the tip, but like I said, I dont want to always have to use the arrow keys. Is it not possible to actually DRAG one pixel at a time? I recently upgraded to CC from CS3 and I keep running into things that feel like a downgrade. Super disappointed.
    Our posts overlapped there.  Are you saying you could reliably drag one pixel with CS3? 
    What other issues are you having?  Things like the Crop tool can feel strange at first, but I promise you you'll never want to use Classic mode once you get used to it.

  • How can we know the format of report

    Developed a web application using java SDK.
    How can we know the format of report that is is it a crystal report , PDF or excel or hyperling.
    If it is crystal report then i use openDoc and the report is opened but if its a hyperlink or PDf i am not able to open the report .
    Please help.
    Thanks

    Check the si_kind or so_progid property of object. You can use oInfoObject.getKind() to retrieve that.
    a crystal report would return crystalreport a pdf would return pdf etc.

  • How do you know the version of a JAR file ?

    how do you know the version of a JAR file ?
    is it what is written on MANIFEST.MF ?
    for example i have a JAR file
    whose MANIFEST.MF has this
    Manifest-Version: 1.0
    Created-By: Ant 1.4.1so, whats the version of this JAR ? 1.0 ?

    anyway, that was JSTL..jar.
    Now, come to another JAR file....
    whose MANIFEST.MF has......
    Manifest-Version: 1.0
    Created-By: Apache Ant 1.5.1
    Extension-Name: Struts Framework
    Specification-Title: Struts Framework
    Specification-Vendor: Apache Software Foundation
    Specification-Version: 1.1
    Implementation-Title: Struts Framework
    Implementation-Vendor: Apache Software Foundation
    Implementation-Vendor-Id: org.apache
    Implementation-Version: 1.1
    Class-Path:  commons-beanutils.jar commons-collections.jar commons-dig
    ester.jar commons-logging.jar commons-validator.jar jakarta-oro.jar s
    truts-legacy.jarso, How do you believe whats the version now ? do u go with the comment "Manifest-Version: 1.0" or "Specification-Version: 1.1" ?
    definitely, you would go with the "Specification-Version: 1.1" and declare this JAR as STRUTS 1.1
    hmmm, so, if nothing is mentioned like above should we follow the MANIFEST version as the JSTL version ? in my earlier example i did not find any comment on ""Specification-Version" ......so , if anybody gives me that JAR , how do i decide whether its 1.0 specification or 1.1 specifucation compliant ?
    can you tell whats the JSTL version of my earler example JAR file ?

  • How can i know which version of Smartview is installed on my system ?

    Hi All,
    How can i know which version of Smartview is installed on my system ?

    Do you know what version of Essbase you are running? that could help. You can find that in EAS. Right click on the server name and select edit ptoperties, then look on the environment tab. As a final measure, find the smartview.exe on yout machine right click and select properties. in one of the tabs there might be a version number

  • How can I check the version of the rdf file?

    Dear all:
    How can I check the version of the rdf file? such like CEXRECRE.rdf .
    my environment is : oracle 11.5.9
    platform : Linux red hat 4.0
    Regards
    Terry

    Terry,
    Use "adident" or "strings -a" commands -- See (Note: 125922.1 - How To Find Oracle Application File Versions) for details.
    Thanks,
    Hussein

  • How can I hide the version of ColdFusion showing in COldFusion Administrator

    How can I hide the version of coldfusion being shown from the coldfusion administrator login page? Right now I have the Version: 6,1,0,83762 showing.

    For security reasons.
    If there are known vulnerabilities with a specific version of a software release, you don't want to have someone who is scanning to be able to pull that information and then be able to try known attacks that will increase their chances of compromising your site/application.

  • How do i know the version of AD in my instance ?

    Hello All,
    How do i know the version of AD in my instance ?
    Reg
    Chirag Patel

    - Use Patchset comparison tool - patchsets.sh (Note: 139684.1 - Oracle Applications Current Patchset Comparison Utility - patchsets.sh)
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=139684.1
    - From OAM
    - Use Applications Diagnostic Tests
    - Use $AD_TOP/sql/adutconf.sql
    - By running the following SQL:
    SQL> select patch_level
    from fnd_product_installations
    where patch_level like '%AD%';

  • How can i know current version of webdynpro

    Hai,
    How can i know , which version of webdynpro now iam using.
    what are the versions of webdynpros released up to now.
    Regards,
    Naga Raju

    If you login to the J2EE Engine Start Page of your server and you go to system information (http://<host>:<port>/sap/monitoring/SystemInfo) you can view all components and their versions (http://<host>:<port>/sap/monitoring/ComponentInfo).
    Regards,
    Christophe

  • How can i know the exact model of my wireless network card? macbook pro 13"

    how can i know the exact model of my wireless network card? macbook pro 13"

    I think the best you can do is use the System Information application (Utilities Folder), looking in the wireless section.
    charlie

Maybe you are looking for