Check Oracle Version Skontrolujte, Oracle Version
There are several ways where you can query or retrieve the version number of installed Oracle products: Existuje niekoľko spôsobov, kde možno získať dotazem alebo číslo verzie nainštalovaného Oracle produkty:
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. Ak si len chcete overiť informácie o verziu z databázy Oracle, jednoducho pripojiť a prihlásenie do databázy Oracle pomocou SQL * Plus. Upon login, you will see: Po prihlásení uvidíte:
SQL*Plus: Release 9.2.0.6.0 - Production on Tue Oct 18 17:58:57 2005 SQL * Plus: Vydanie 9.2.0.6.0 - Výroba na utorok október 18 17:58:57 2005
Copyright (c) 1982, 2002, Oracle Corporation. Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. Všetky práva vyhradené.
Connected to: Pripojene na:
Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production Oracle9i Enterprise Edition Vydanie 9.2.0.6.0 - 64bit Produkcia
With the Partitioning, OLAP and Oracle Data Mining options S Porciovanie, OLAP a Oracle Data Mining voľby
JServer Release 9.2.0.6.0 - Production JServer Vydanie 9.2.0.6.0 - Výroba
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 . Prvé číslo je kurzíve verzia SQL * Plus klient a druhý kurzíve číslo verzie databázy Oracle, ktoré ste pripojený.
2. 2. Retrieve the version information from v$version table by using SQL*Plus. Načítanie informácií o verziu z $ v Verzia tabuľky pomocou SQL * Plus. In this table you can find version information on Oracle, PL/SQL, etc. V tejto tabuľke nájdete informácie o verzii pre Oracle, PL / SQL, atď
To retrieve the version information for Oracle, you execute the following SQL statement: Ak chcete získať informácie o verzii pre Oracle si vyřídit SQL nasledujúce vyhlásenie:
select * from v$version where banner like 'Oracle%'; select * from v $ verzia, kde banner ako 'Oracle%';
It should return something like this: Je potrebné vrátiť niečo takéto:
Banner Banner
————————————————————————————– -----------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production Oracle9i Enterprise Edition Vydanie 9.2.0.1.0 - 64bit Produkcia
3. 3. Version information can also be checked from Installed Products from the Oracle Universal Installer. Informácie o verzii možno tiež skontrolovať z Inštalovaný Výrobky z Oracle Universal Installer. It will tells you what products is installed on the machine and also its version information too. Bude sa vám povie, aké výrobky je inštalovaný na počítači a tiež informácie o verziu taky.
In Unix, the installer is located at $ORACLE_HOME/bin/runInstaller. V Unix, inštalácia je umiestnená na $ ORACLE_HOME / bin / runInstaller.
In Windows, access the installer by Start -> All Programs -> Oracle Installed Products -> Universal Installer. Vo Windows je prístup do inštalačného Štart -> Programy -> Oracle Inštalovaný Produkty -> Universal Installer.
IMPORTANT : The page is machine translated and provided "as is" without warranty. Upozornenie: Stránka je stroje preložené a poskytované "tak ako sú" bez záruky. Machine translation may be difficult to understand. Strojový preklad môže byť ťažké pochopiť. Please refer to Obráťte sa prosím na original English article Anglický originál článku whenever possible. kedykoľvek je to možné.
Related Articles Súvisiace články
- Manual and Clean Uninstall Oracle for Windows Manuál a čistého Odinštalovať Oracle pre Windows
- Oracle Database Import Error 3113/3114 Oracle Database Import Chyba 3113/3114
- Change Oracle Database User Password Zmeniť Oracle Database Užívateľ Heslo
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Vytvoriť, Pridať alebo Split Oracle Database oddiel nerozumie s ORA-14080 Chyba
- Oracle JDeveloper Reviews Oracle JDeveloper Recenzie
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 Vytvoriť alebo Pridať nový oddiel nerozumie Chyba
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle Drop Tabuľka Chyba
- Oracle EXP-00091 Error When Export Database Oracle EXP-00091 chybu pri exporte databázy
- View and Retrieve Oracle Database Link Details Zobrazenie a Načítať Oracle Database Link Detaily
- Oracle Database Link Oracle Database Link










































September 12th, 2008 04:39 12. septembra 2008 04:39
Apparently this server is automatically replacing straight singlequotes with curly ones, even in my comment! Zrejme tento server je automaticky nahradí rovno kučeravé singlequotes s tými, dokonca v mojej komentár! 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. Napriek tomu návrh z mojej predchádzajúci príspevok vyššie stále platí, len urobiť nahradiť na vlastnú lokálnu stroj miesto vo komentár tu.
September 12th, 2008 04:35 12. septembra 2008 04:35
If anyone gets an “invalid character” error after copy & pasting in the query from the article: Ak sa niekto dostane "neplatný znak" chyba po copy & nalepenie na otázku z článku:
select * from v$version where banner like 'Oracle%';” select * from v $ verzia, kde banner ako 'Oracle%'; "
Try replacing the “curly” singlequote characters around “Oracle%” with regular straight singlequotes: Skúste nahradiť "kučeravé" singlequote znaky okolo "Oracle%" s pravidelnou rovnou singlequotes:
select * from v$version where banner like 'Oracle%'; select * from v $ verzia, kde banner ako 'Oracle%';
August 13th, 2008 19:03 13. augusta 2008 19:03
The above query will not work in oracle Vyššie uvedený dotaz nebude fungovať v Oracle
use the below query použite nižšie dotazu
Select * from v$version; Select * from v $ version;
August 13th, 2008 06:16 13. augusta 2008 06:16
select * from versions; select * from verzia;
The above SQL will do. Vyššie uvedený SQL bude robiť.
March 3rd, 2008 22:29 3. marca 2008 22:29
It was a very helpful to find the oracle version information through sqlplus. Bolo to veľmi užitočné zistiť verziu Oracle informácií prostredníctvom sqlplus.
Thanks, Vďaka,
pankaj pankaj