Check Oracle Version Patikrinkite Oracle versija
There are several ways where you can query or retrieve the version number of installed Oracle products: Yra keletas būdų, kur Jūs galite užklausą arba gauti versijos numeris įdiegta "Oracle" produktus:
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. Jei tiesiog norite patikrinti versiją iš "Oracle" duomenų bazę, tiesiog prijungti ir prisijungti prie duomenų bazę Oracle SQL * Plus. Upon login, you will see: Po prisijungimo, jūs matysite:
SQL*Plus: Release 9.2.0.6.0 – Production on Tue Oct 18 17:58:57 2005 SQL * Plus: Release 9.2.0.6.0 - Production m. spalis 18 Tue 17:58:57 2005
Copyright (c) 1982, 2002, Oracle Corporation. Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. Visos teisės saugomos.
Connected to: Prijungta prie:
Oracle9i Enterprise Edition Release 9.2.0.6.0 – 64bit Production Oracle9i Enterprise Edition Release 9.2.0.6.0 - Production 64bit
With the Partitioning, OLAP and Oracle Data Mining options Su pertvara, OLAP, Oracle Data Mining puslapį
JServer Release 9.2.0.6.0 – Production JServer Release 9.2.0.6.0 - Production
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 . Pirmasis kursyvu skaičius yra SQL * Plus kliento versiją ir antra kursyvu numeris Oracle duomenų bazę, kurioje esate prisijungę prie versiją.
2. 2. Retrieve the version information from v$version table by using SQL*Plus. Gauti informaciją apie versiją iš V $ version lentelę naudojant SQL * Plus. In this table you can find version information on Oracle, PL/SQL, etc. Šioje lentelėje galite rasti informaciją apie versiją su Oracle PL / SQL, etc
To retrieve the version information for Oracle, you execute the following SQL statement: Norėdami surasti informaciją apie versiją, Oracle, galite atlikti šiuos SQL:
select * from v$version where banner like 'Oracle%'; SELECT * FROM V $ version kur banerio kaip "Oracle"% ";
It should return something like this: Ji turėtų grįžti kažką panašaus į tai:
Banner Banner
————————————————————————————– -----------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 – 64bit Production Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production 64bit
3. 3. Version information can also be checked from Installed Products from the Oracle Universal Installer. Versija informacija taip pat gali būti tikrinamas iš naudojami produktai "Oracle" Universal Installer. It will tells you what products is installed on the machine and also its version information too. Jis bus jums pasakys, kokie produktai yra įdiegta kompiuteryje, taip pat jo versija per daug informacijos.
In Unix, the installer is located at $ORACLE_HOME/bin/runInstaller. Unix, montuotojas įsikūręs $ ORACLE_HOME / bin / runInstaller.
In Windows, access the installer by Start -> All Programs -> Oracle Installed Products -> Universal Installer. Windows, gauti pagal Pradėti montuotojas -> All Programs -> "Oracle" Installed Produktai -> Universalus diegimo.
IMPORTANT : The page is machine translated and provided "as is" without warranty. DĖMESIO: Šis puslapis yra mašina išvertė ir pateikiama "kaip yra" be garantijų. Machine translation may be difficult to understand. Automatinis vertimas gali būti sunku suprasti. Please refer to Remkitės original English article originalas anglų straipsnis whenever possible. jei įmanoma.
Related Articles Susiję straipsniai
- Manual and Clean Uninstall Oracle for Windows Rankinis ir švarios Pašalinti Oracle Windows
- Oracle Database Import Error 3113/3114 Oracle Database Importo Klaida 3113/3114
- Change Oracle Database User Password Keisti Oracle Vartotojas Slaptažodis
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Kurti, Pridėti arba neskaldytos Oracle Pasiskirstymo fails su klaida ORA-14080
- Oracle JDeveloper Reviews Oracle JDeveloper Atsiliepimai
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle Drop Table Klaida
- Oracle ORA-14074 Create or Add New Partition Fails Error "Oracle" ORA-14074 Kurti arba Pridėti naują skyrių fails Klaida
- Oracle EXP-00091 Error When Export Database Oracle Tinka-00091 Klaida Eksporto duomenų bazė
- View and Retrieve Oracle Database Link Details Peržiūrėti ir atsiimti Oracle Link Details
- Oracle Database Link Oracle Database Nuoroda










































September 12th, 2008 04:39 12 rugsėjis 2008 04:39
Apparently this server is automatically replacing straight singlequotes with curly ones, even in my comment! Matyt, šis serveris yra automatiškai pakeičia tiesiai singlequotes su garbanotais klubus, net savo komentarą! 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. Still, mano ankstesnį postą aukščiau vis dar galioja pasiūlymas; tiesiog pakeisti į savo vietiniame kompiuteryje, o ne komentarus.
September 12th, 2008 04:35 12 rugsėjis 2008 04:35
If anyone gets an “invalid character” error after copy & pasting in the query from the article: Jei kas gaus "Invalid character" klaida po nukopijuokite ir įklijuokite į nuo straipsnis query:
select * from v$version where banner like 'Oracle%';” SELECT * FROM V $ version kur banerio kaip "Oracle"% ";"
Try replacing the “curly” singlequote characters around “Oracle%” with regular straight singlequotes: Pabandykite pakeisti "garbanotas" singlequote ženklų apie "Oracle"% "su reguliariais tiesiai singlequotes:
select * from v$version where banner like 'Oracle%'; SELECT * FROM V $ version kur banerio kaip "Oracle"% ";
August 13th, 2008 19:03 13 rugpjūtis 2008 19:03
The above query will not work in oracle Aukščiau užklausa neveiks Oracle
use the below query naudokite žemiau užklausą
Select * from v$version; SELECT * FROM V $ version;
August 13th, 2008 06:16 13 rugpjūtis 2008 06:16
select * from versions; SELECT * FROM versijos;
The above SQL will do. Pirmiau SQL darys.
March 3rd, 2008 22:29 3 kovas 2008 22:29
It was a very helpful to find the oracle version information through sqlplus. Tai buvo labai naudinga rasti informaciją naudojantis Oracle versija sqlplus.
Thanks, Ačiū,
pankaj Pankaj