Check Oracle Version Verificare la versione di Oracle
There are several ways where you can query or retrieve the version number of installed Oracle products: Ci sono diversi modi in cui è possibile recuperare query o il numero della versione installata di prodotti Oracle:
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. Se si desidera verificare le informazioni sulla versione del database Oracle, è sufficiente collegare e di accesso ai database Oracle con SQL * Plus. Upon login, you will see: Su dati di accesso, vedrete:
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 - Produzione sul mar ott 18 17:58:57 2005
Copyright (c) 1982, 2002, Oracle Corporation. Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. Tutti i diritti riservati.
Connected to: Collegato a:
Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Produzione
With the Partitioning, OLAP and Oracle Data Mining options Con il partizionamento, OLAP e Oracle Data Mining opzioni
JServer Release 9.2.0.6.0 - Production Uscita 9.2.0.6.0 jserver - Produzione
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 . Il primo numero è in corsivo la versione di SQL * Plus client e il secondo corsivo è il numero di versione del database Oracle che si sono collegati.
2. Retrieve the version information from v$version table by using SQL*Plus. Recuperare le informazioni sulla versione da $ / versione tabella utilizzando SQL * Plus. In this table you can find version information on Oracle, PL/SQL, etc. In questa tabella si possono trovare informazioni sulla versione di Oracle, PL / SQL, ecc
To retrieve the version information for Oracle, you execute the following SQL statement: Per recuperare le informazioni sulla versione per Oracle, si esegue la seguente istruzione SQL:
select * from v$version where banner like ‘Oracle%’; SELECT * FROM $ / versione dove banner come 'Oracle%';
It should return something like this: Deve restituire qualcosa di simile a questo:
Banner
————————————————————————————– -----------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Produzione
3. Version information can also be checked from Installed Products from the Oracle Universal Installer. Informazioni sulla versione può anche essere controllato da prodotti installati da Oracle Universal Installer. It will tells you what products is installed on the machine and also its version information too. Essa vi dice quali prodotti è installato sulla macchina e anche la sua informazioni sulla versione troppo.
In Unix, the installer is located at $ORACLE_HOME/bin/runInstaller. In Unix, il programma di installazione si trova a $ ORACLE_HOME / bin / runInstaller.
In Windows, access the installer by Start -> All Programs -> Oracle Installed Products -> Universal Installer. In Windows, il programma di installazione di accesso da Start -> Tutti i programmi -> Installazione di Oracle Prodotti -> Universal Installer.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Questa è una pagina tradotta macchina che è fornito "così com'è" senza alcuna garanzia. Machine translation may be difficult to understand. Traduzione automatica può essere difficile da capire. Please refer to Si prega di fare riferimento a original English article articolo originale inglese whenever possible. quando possibile.
Share and contribute or get technical support and help at Condividere e contribuire o ottenere supporto tecnico e assistenza in My Digital Life Forums La mia vita digitale Forum .
Related Articles Articoli correlati
- Manual and Clean Uninstall Oracle for Windows Pulizia manuale e la disinstallazione di Oracle per Windows
- Oracle JDeveloper Reviews Oracle JDeveloper recensioni
- Oracle Database Import Error 3113/3114 Database Oracle errore di importazione 3113/3114
- Change Oracle Database User Password Cambia database Oracle Utente Password
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 tabella o visualizzare non esiste errore di Oracle
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle goccia tabella di errore
- Oracle Business Activity Monitoring Reviews Oracle Business attività di monitoraggio del cliente
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 Impossibile creare INIZIALE Estensione per il segmento in errore Tablespace
- Oracle EXP-00091 Error When Export Database Oracle exp-00091 errore durante l'esportazione del database
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Come goccia tablespace e recuperare database Oracle quando accidentalmente eliminare archivio dei dati

































March 3rd, 2008 22:29 March 3rd, 2008 22:29
It was a very helpful to find the oracle version information through sqlplus. E 'stato un grande aiuto per trovare la versione oracolo informazioni attraverso sqlplus.
Thanks, Grazie,
pankaj
August 13th, 2008 06:16 13 agosto 2008 06:16
select * from versions; SELECT * FROM versioni;
The above SQL will do. SQL sopra la farà.
August 13th, 2008 19:03 13 agosto 2008 19:03
The above query will not work in oracle Sopra la query non funzionerà in Oracle
use the below query utilizzare la query di seguito
Select * from v$version; SELECT * FROM V $ versione;