Check Oracle Version Check Oracle Version
There are several ways where you can query or retrieve the version number of installed Oracle products: Ir vairāki veidi, kur var vaicājumu vai retrieve redakcijā numuru instalēto Oracle produktiem:
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. Ja jūs vienkārši vēlaties pārbaudīt versija informāciju par Oracle datu bāzi, vienkārši savienot un piesakieties uz Oracle datu bāzi ar SQL * Plus. Upon login, you will see: Pēc pieteikšanās, jūs skatīt:
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 par Tue Oct 18 17:58:57 2005
Copyright (c) 1982, 2002, Oracle Corporation. Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. All rights reserved.
Connected to: Connected to:
Oracle9i Enterprise Edition Release 9.2.0.6.0 – 64bit Production Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production
With the Partitioning, OLAP and Oracle Data Mining options Ar Sadalīšana, OLAP un Oracle Data Mining iespējas
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 . Pirmais slīprakstu numurs ir versija, SQL * Plus klients, un otro, kursīviem numurs ir versiju Oracle datu bāzi, kas jums ir pieslēgtas.
2. 2. Retrieve the version information from v$version table by using SQL*Plus. Iegūstiet versiju informāciju no v $ versija tabulu, izmantojot SQL * Plus. In this table you can find version information on Oracle, PL/SQL, etc. Šajā tabulā Jūs varat atrast versija informācija par Oracle, PL / SQL uc
To retrieve the version information for Oracle, you execute the following SQL statement: Lai ielādētu redakcijā informācija Oracle, jūs izpildīt šādu SQL paziņojums:
select * from v$version where banner like 'Oracle%'; izvēlieties * no v $ versija kur banner piemēram, "Oracle"% ";
It should return something like this: Tā būtu atgriešanās kaut kas līdzīgs šim:
Banner Banner
————————————————————————————– -----------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 – 64bit Production Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production
3. 3. Version information can also be checked from Installed Products from the Oracle Universal Installer. Version informāciju var arī pārbauda no Installed Products no Oracle Universal Installer. It will tells you what products is installed on the machine and also its version information too. Tas stāsta jums to, kādus produktus ir uzstādīts uz mašīnas, kā arī tās versija informācija too.
In Unix, the installer is located at $ORACLE_HOME/bin/runInstaller. In Unix, uzstādītājs atrodas $ ORACLE_HOME / bin / runInstaller.
In Windows, access the installer by Start -> All Programs -> Oracle Installed Products -> Universal Installer. Windows, piekļuves uzstādītājs ar Start -> All Programs -> Oracle Installed Produkti -> Universal Installer.
IMPORTANT : The page is machine translated and provided "as is" without warranty. SVARĪGI: Šī lapa ir mašīna tulkoto un ar nosacījumu ", kas ir" bez garantijas. Machine translation may be difficult to understand. Machine translation var būt grūti saprast. Please refer to Lūdzu, skatiet original English article oriģināls angļu rakstu whenever possible. kad vien iespējams.
Related Articles Saistītie raksti
- Manual and Clean Uninstall Oracle for Windows Rokasgrāmatas un Clean Atinstalēt Oracle for Windows
- Oracle Database Import Error 3113/3114 Oracle Database Import Error 3113/3114
- Change Oracle Database User Password Maina Oracle Database Lietotājs Parole
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Izveidojiet, Pievienot vai Split Oracle Database Sadalīšanās neizpratni ar ORA-14080 Error
- Oracle JDeveloper Reviews Oracle JDeveloper Recenzijas
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 Izveidot vai Pievienot jaunu Sadalīšanās neizpratni kļūdu
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle Drop tabula kļūdu
- Oracle EXP-00091 Error When Export Database Oracle EXP-00091 kļūdu Kad Export Database
- View and Retrieve Oracle Database Link Details View un paņemt Oracle Database Link detaļas
- Oracle Database Link Oracle Database Link










































September 12th, 2008 04:39 Septembris 12, 2008 04:39
Apparently this server is automatically replacing straight singlequotes with curly ones, even in my comment! Acīmredzot šī servera tiek automātiski aizstāt taisni singlequotes ar cirtaini tiem, pat mans komentārs! 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, ierosinājumu no manu iepriekšējo post virs joprojām piemēro; tikai darīt to nomainīt uz savu vietējo mašīnā, tā vietā, jo komentāru šeit.
September 12th, 2008 04:35 Septembris 12, 2008 04:35
If anyone gets an “invalid character” error after copy & pasting in the query from the article: Ja kāds kļūst par "invalid raksturu" kļūdu pēc kopiju & līmēšana ar query no rakstu:
select * from v$version where banner like 'Oracle%';” izvēlieties * no v $ versija kur banner piemēram, "Oracle"% ";"
Try replacing the “curly” singlequote characters around “Oracle%” with regular straight singlequotes: Izmēģiniet aizstāt "sprogains" singlequote rakstzīmes ap "Oracle%" regulāri taisni singlequotes:
select * from v$version where banner like 'Oracle%'; izvēlieties * no v $ versija kur banner piemēram, "Oracle"% ";
August 13th, 2008 19:03 Augusts 13, 2008 19:03
The above query will not work in oracle Iepriekš query netiks darbu orākuls
use the below query izmantot zem query
Select * from v$version; Izvēlieties * no v $ versijā;
August 13th, 2008 06:16 Augusts 13, 2008 06:16
select * from versions; izvēlieties * no versijām;
The above SQL will do. Iepriekš SQL darīs.
March 3rd, 2008 22:29 Marts 3, 2008 22:29
It was a very helpful to find the oracle version information through sqlplus. Tas bija ļoti noderīga, lai atrastu orākuls versija informāciju sqlplus.
Thanks, Pateicība,
pankaj pankaj