Check Oracle Version जांच Oracle संस्करणः

There are several ways where you can query or retrieve the version number of installed Oracle products: वहाँ कई तरीके आप क्वेरी जहां या स्थापित Oracle उत्पादों के संस्करण संख्या प्राप्त कर सकते हैं:

1. 1. If you just want to check the version information of the Oracle database, simply connect and login to the Oracle database with SQL *Plus. अगर आप बस Oracle डाटाबेस के संस्करण की जानकारी की जाँच करना चाहें, तो कनेक्ट और एसक्यूएल * प्लस के साथ Oracle डाटाबेस के लिए लॉगिन. Upon login, you will see: प्रवेश करने पर, आप देखेंगे:

SQL*Plus: Release 9.2.0.6.0 – Production on Tue Oct 18 17:58:57 2005 एसक्यूएल प्लस *: 9.2.0.6.0 रिलीज - मंगल अक्टूबर 18 17:58:57 2005 को उत्पादन

Copyright (c) 1982, 2002, Oracle Corporation. कॉपीराइट (c) 1982, 2002, Oracle Corporation. All rights reserved. सभी अधिकार सुरक्षित.

Connected to: सेकनेक्टेडहै:
Oracle9i Enterprise Edition Release 9.2.0.6.0 – 64bit Production Oracle9i Enterprise संस्करण रिलीज 9.2.0.6.0 - 64bit उत्पादन
With the Partitioning, OLAP and Oracle Data Mining options विभाजन, OLAP और Oracle डाटा खनन के साथ विकल्प
JServer Release 9.2.0.6.0 – Production JServer रिलीज 9.2.0.6.0 - उत्पादन

The first italic number is the version of the SQL*Plus client and the second italic number is the version of Oracle database which you are connected to . पहली तिरछा संख्या एसक्यूएल * प्लस ग्राहक के संस्करण और दूसरी तिरछा संख्या है Oracle डाटाबेस जो तुम से जुड़े रहे हैं के संस्करण है.

2. 2. Retrieve the version information from v$version table by using SQL*Plus. एसक्यूएल * प्लस का उपयोग करके v $ से संस्करण जानकारी निकालें संस्करण तालिका. In this table you can find version information on Oracle, PL/SQL, etc. इस तालिका में आप पर Oracle संस्करण जानकारी प्राप्त कर सकते हैं, पी एल एसक्यूएल / आदि

To retrieve the version information for Oracle, you execute the following SQL statement: Oracle करने के लिए संस्करण पुनः प्राप्त जानकारी, तो आप निम्नलिखित एसक्यूएल बयान निष्पादित:

select * from v$version where banner like 'Oracle%'; चुनें v $ से संस्करण * जहां 'Oracle%' जैसे बैनर;

It should return something like this: यह कुछ इस तरह वापस आ जाना चाहिए:

Banner बैनर
————————————————————————————– -----------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 – 64bit Production Oracle9i Enterprise संस्करण रिलीज 9.2.0.1.0 - 64bit उत्पादन

3. 3. Version information can also be checked from Installed Products from the Oracle Universal Installer. जानकारी के संस्करण भी स्थापित उत्पाद से Oracle यूनिवर्सल Installer से जाँच की जा सकती है. It will tells you what products is installed on the machine and also its version information too. यह आपको बताता हूँ क्या उत्पादों मशीन पर स्थापित है और भी अपने संस्करण भी जानकारी.

In Unix, the installer is located at $ORACLE_HOME/bin/runInstaller. यूनिक्स में, इंस्टॉलर ORACLE_HOME $ स्थित / बिन है / runInstaller.
In Windows, access the installer by Start -> All Programs -> Oracle Installed Products -> Universal Installer. Windows में, प्रारंभ से उपयोग Installer -> सभी कार्यक्रम -> Oracle स्थापित उत्पाद -> यूनिवर्सल Installer.

IMPORTANT : The page is machine translated and provided "as is" without warranty. महत्वपूर्ण: पृष्ठ की मशीन है और अनुवाद प्रदान "के रूप में वारंटी के बिना है." Machine translation may be difficult to understand. मशीन अनुवाद मुश्किल से समझ सकते हो. Please refer to कृपया उल्लेख करने original English article मूल अंग्रेजी लेख whenever possible. जब भी संभव है.


5 Responses to “Check Oracle Version” 5 जवाब "चेक Oracle संस्करण में"

  1. Jon Schneider जॉन Schneider
    September 12th, 2008 04:39 12, 2008 04:39 सितम्बर
    5 5

    Apparently this server is automatically replacing straight singlequotes with curly ones, even in my comment! जाहिरा तौर पर इस सर्वर स्वचालित रूप से घुंघराले लोगों के साथ सीधे singlequotes की जगह है, यहाँ तक कि मेरी टिप्पणी में! Still, the suggestion from my previous post above still applies; just do the replace on your own local machine, instead of in a comment here. फिर भी, अभी भी लागू होता है ऊपर मेरे पिछले पोस्ट से सुझाव; बस के बजाय अपने स्थानीय मशीन पर है, की जगह एक टिप्पणी में यहाँ. :-)

  2. Jon Schneider जॉन Schneider
    September 12th, 2008 04:35 12, 2008 04:35 सितम्बर
    4 4

    If anyone gets an “invalid character” error after copy & pasting in the query from the article: अगर किसी की नकल के बाद एक "अमान्य वर्ण" त्रुटि हो जाता है और लेख से प्रश्न में चिपकाने:

    select * from v$version where banner like 'Oracle%';” चुनें v $ से संस्करण * जहां 'Oracle%' जैसे बैनर; "

    Try replacing the “curly” singlequote characters around “Oracle%” with regular straight singlequotes: "चारों ओर Oracle%" घुंघराले "singlequote अक्षरों की जगह नियमित रूप से सीधे singlequotes के साथ प्रयास करें":

    select * from v$version where banner like 'Oracle%'; चुनें v $ से संस्करण * जहां 'Oracle%' जैसे बैनर;

  3. A एक
    August 13th, 2008 19:03 13 अगस्त 2008 19:03
    3 3

    The above query will not work in oracle इसके बाद के संस्करण क्वेरी Oracle में काम नहीं करेगा
    use the below query क्वेरी के नीचे का उपयोग करें
    Select * from v$version; * V $ से संस्करण का चयन करें;

  4. Karthikeyan कार्तिकेयन
    August 13th, 2008 06:16 13 अगस्त 2008 06:16
    2 2

    select * from versions; चुनें संस्करणों से *;

    The above SQL will do. एसक्यूएल ऊपर करेंगे.

  5. Pankaj पंकज
    March 3rd, 2008 22:29 3 मार्च 2008 22:29
    1 1

    It was a very helpful to find the oracle version information through sqlplus. यह एक बहुत ही मददगार को sqlplus के माध्यम से Oracle संस्करण जानकारी प्राप्त था.

    Thanks, धन्यवाद,
    pankaj पंकज

Leave a Reply एक उत्तर दें छोड़ दो

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> आप इन टैग्स: <a href="" उपयोग title=""> <abbr title=""> <acronym कर सकते हैं <blockquote title=""> <b> cite=""> <cite> <code> <डेल DateTime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. टिप्पणी की सुविधा है विकलांग गया है की सदस्यता लें. To receive notification of latest comments posted, subscribe to सदस्यता के लिए नई टिप्पणियों की सूचना प्राप्त पोस्ट किया है, My Digital Life Comments RSS feed मेरे डिजिटल जीवन टिप्पणियाँ आरएसएस फ़ीड or या register to receive रजिस्टर प्राप्त करने के लिए new comments in daily email digest. दैनिक ईमेल में नई टिप्पणियाँ डाइजेस्ट.
Custom Search

New Articles नए लेख

Incoming Search Terms for the Article के लिए खोजें शर्तें आने अनुच्छेद

oracle version Oracle संस्करण - -- Check Oracle version जांच Oracle संस्करण - -- how to check oracle version कैसे Oracle संस्करण की जांच करने के लिए - -- oracle version query Oracle संस्करण प्रश्न - -- version oracle संस्करण Oracle - -- oracle check version Oracle जांच संस्करण - -- checking oracle version Oracle संस्करण की जाँच - -- version of oracle Oracle के संस्करण - -- get oracle version Oracle संस्करण प्राप्त - -- check oracle database version जांच Oracle डाटाबेस संस्करण - -- finding oracle version Oracle संस्करण खोज - -- how to check oracle database version कैसे Oracle डाटाबेस संस्करण की जांच करने के लिए - -- Get Oracle Database Version Oracle डाटाबेस के संस्करण प्राप्त करें - -- Oracle version Oracle संस्करण - -- check oracle client version जांच Oracle ग्राहक संस्करण - -- query oracle version क्वेरी Oracle संस्करण - -- oracle database version query Oracle डाटाबेस संस्करण प्रश्न - -- what version of oracle Oracle के क्या संस्करण - -- oracle version check Oracle संस्करण की जांच - -- oracle database version Oracle डाटाबेस संस्करण - -- Oracle versions Oracle संस्करण - -- how to check version of oracle कैसे Oracle के संस्करण की जांच करने के लिए - -- check version of oracle Oracle के संस्करण की जांच - -- query oracle database version क्वेरी Oracle डाटाबेस संस्करण - -- oracle get database version Oracle डाटाबेस संस्करण प्राप्त - -- how to get oracle version कैसे Oracle संस्करण पाने के लिए - -- oracle query database version Oracle डेटाबेस क्वेरी संस्करण - -- oracle check database version Oracle जांच डाटाबेस संस्करण - -- how to see oracle version कैसे Oracle संस्करण देखने के लिए - -- oracle get version Oracle संस्करण प्राप्त - -- check version oracle जांच संस्करण Oracle - -- Oracle version info Oracle संस्करण जानकारी - -- oracle version table Oracle संस्करण सारणी - -- how to check the version of Oracle कैसे Oracle के संस्करण की जांच करने के लिए - -- how to check oracle client version कैसे Oracle ग्राहक संस्करण की जांच करने के लिए - -- check oracle db version जांच Oracle DB संस्करण - -- oracle query version गूढ़ प्रश्न संस्करण - -- "oracle version" "Oracle संस्करण" - -- oracle version number Oracle संस्करण संख्या - -- finding oracle database version Oracle डाटाबेस संस्करण खोज - -- get oracle client version Oracle ग्राहक संस्करण प्राप्त - -- how to get oracle database version कैसे Oracle डाटाबेस संस्करण पाने के लिए - -- HOW TO CHECK ORACLE DB VERSION यह कैसे जाँचूँ ओरेकल DB संस्करण - -- how to find oracle database version कैसे Oracle डाटाबेस संस्करण को खोजने के लिए - -- oracle version information Oracle संस्करण जानकारी - -- check oracle version जांच Oracle संस्करण - -- all सब - -- which version of oracle Oracle के जो संस्करण - -- query to find oracle version क्वेरी Oracle संस्करण को खोजने के लिए - -- version in oracle Oracle में संस्करण - -- which oracle version जो Oracle संस्करण - -- versione oracle versione Oracle - -- get oracle db version Oracle DB संस्करण प्राप्त - -- how to check oracle version कैसे Oracle संस्करण की जांच करने के लिए - -- see oracle version Oracle संस्करण देखें - -- SQL check Oracle version एसक्यूएल जांच Oracle संस्करण - -- what is my oracle version मेरी वाणी संस्करण क्या है - -- sql to check oracle version संस्करण की जांच करने के लिए Oracle SQL - -- query database version oracle क्वेरी Oracle डाटाबेस संस्करण - -- versions of oracle Oracle के संस्करण - -- find oracle version Oracle संस्करण खोज - -- check database version oracle जांच Oracle डाटाबेस संस्करण - -- finding version of oracle Oracle की खोज संस्करण - -- how to find oracle version कैसे Oracle संस्करण को खोजने के लिए - -- query for oracle version Oracle संस्करण के लिए क्वेरी - -- sql query oracle version SQL प्रश्न Oracle संस्करण - -- find oracle client version Oracle ग्राहक संस्करण खोज - -- how to check the oracle version कैसे Oracle संस्करण की जांच करने के लिए - -- check oracle edition जांच Oracle संस्करण - -- oracle sql get database version Oracle SQL डाटाबेस संस्करण प्राप्त - -- how to find oracle client version कैसे Oracle ग्राहक संस्करण को खोजने के लिए - -- how check oracle version कैसे की जांच Oracle संस्करण - -- how to check the version of oracle database कैसे Oracle के संस्करण की जांच करने को डेटाबेस - -- oracle how to check version Oracle कैसे संस्करण की जांच करने के लिए - -- checking version of oracle Oracle की जाँच संस्करण - --