Results 1 to 5 of 5

Thread: Finding the version of database

  1. #1
    Join Date
    Jan 2010
    Posts
    53

    Finding the version of database

    HI all ,

    I have a simple question against you all whoever getting my question here. I need to find out the which version of oracle database I am using right now.I would like to know what patch I currently have installed. I know I have version 8.1.7.? installed.Is there any particular SQL command through which I can find out that .So please aware me about that.

    Thanks

  2. #2
    Join Date
    Oct 2005
    Posts
    2,393

    Finding the version of database

    Finding the version of database :

    There are several ways to find out the versions of oracle database.when you execute the specific statement it results the perfect version of current running database.There are three ways to represent the version of oracle database :

    1- At start up of database
    2- Using dynamic view
    3- Using selected columns.

  3. #3
    Join Date
    May 2008
    Posts
    2,389

    Finding the version at startup

    Finding the version at startup :

    If you used to check simply the version of running database,you need to login into the database with SQL *Plus utility.As you connect with this utility you get some information from oracle database.

    SQL*Plus: Release 9.2.0.6.0 – Production on Tue Jan 18 12:58:00 2010

    Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.

  4. #4
    Join Date
    Feb 2008
    Posts
    1,852

    Finding version using dynamic view

    Using dynamic view :

    If you have stated the database and come across the text that you unable to see right now then you can use the provided view
    to investigate the version :

    The Dynamic view V$version is one of the view which is used to get the desired output,you have to execute the following :

    Code:
    SQL>select * from v$version where banner like ‘Oracle%’;

  5. #5
    Join Date
    Jan 2008
    Posts
    1,521

    Finding the version using selected columns

    Using selected columns :

    You can find out the database version the another option is introduced here to check the applied patch of your database.The table name "Product_component_version" is being used and it will show the structure when you fire the description command :

    SQL> Desc Product_component_version;

    And the value would be represented using the following statement :

    SQL> Select * from Product_component_version;

Similar Threads

  1. Replies: 2
    Last Post: 02-02-2012, 12:03 PM
  2. Finding database name and PID
    By Adriana_andros in forum Software Development
    Replies: 5
    Last Post: 16-02-2010, 06:47 PM
  3. Creating Database link in database
    By Lachlann in forum Software Development
    Replies: 3
    Last Post: 28-01-2010, 01:17 PM
  4. Replies: 2
    Last Post: 08-02-2008, 09:15 PM
  5. convert filemaker pro database to access database
    By Czack in forum MS Office Support
    Replies: 3
    Last Post: 15-04-2007, 01:06 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,727,305,077.18555 seconds with 17 queries