Check Oracle Version Check Oracle versão
There are several ways where you can query or retrieve the version number of installed Oracle products: Existem várias maneiras em que você pode consultar ou obter o número da versão do Oracle instalado produtos:
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 você só quiser conferir as informações sobre a versão do banco de dados Oracle, basta ligar e login para o banco de dados Oracle com o SQL * Plus. Upon login, you will see: Após o login, você vai ver:
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 - Produção em Tue Oct 18 17:58:57 2005
Copyright (c) 1982, 2002, Oracle Corporation. Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved. Todos os direitos reservados.
Connected to: Conectado a:
Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit Production Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bits Produção
With the Partitioning, OLAP and Oracle Data Mining options Com o particionamento, OLAP e Oracle Data Mining opções
JServer Release 9.2.0.6.0 - Production Jserver Release 9.2.0.6.0 - Produção
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 . O primeiro número itálico é a versão do SQL * Plus cliente e itálico o segundo número é a versão do banco de dados Oracle que você está conectado.
2. Retrieve the version information from v$version table by using SQL*Plus. Obter informações sobre a versão de v $ versão tabela usando SQL * Plus. In this table you can find version information on Oracle, PL/SQL, etc. Neste quadro, pode encontrar informações sobre a versão Oracle, PL / SQL, etc
To retrieve the version information for Oracle, you execute the following SQL statement: Para recuperar informações de versão Oracle, SQL que você execute a seguinte declaração:
select * from v$version where banner like ‘Oracle%’; selecione * de v $ versão onde banner como "Oracle% ';
It should return something like this: Ele deve retornar algo como isto:
Banner
————————————————————————————– -----------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit Production Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bits Produção
3. Version information can also be checked from Installed Products from the Oracle Universal Installer. Versão informações também podem ser verificadas a partir de produtos instalados a partir do Oracle Universal Installer. It will tells you what products is installed on the machine and also its version information too. Ele lhe diz que produtos é instalado na máquina e também a sua versão informação também.
In Unix, the installer is located at $ORACLE_HOME/bin/runInstaller. No Unix, o programa de instalação está localizada em US $ ORACLE_HOME / bin / runInstaller.
In Windows, access the installer by Start -> All Programs -> Oracle Installed Products -> Universal Installer. No Windows, acesse o instalador em Iniciar -> Todos os Programas -> Oracle Instalado Produtos -> Universal Installer.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. IMPORTANTE: Esta é uma página traduzida máquina que é fornecida "como está" sem garantia. Machine translation may be difficult to understand. A tradução automática pode ser difícil de compreender. Please refer to Por favor, consulte a original English article Inglês original article whenever possible. sempre que possível.
Share and contribute or get technical support and help at Compartilhe e contribuir ou obter suporte técnico e ajudar a My Digital Life Forums Minha vida digital Fóruns .
Related Articles Artigos relacionados
- Manual and Clean Uninstall Oracle for Windows Manual limpo e desinstalação Oracle para Windows
- Oracle JDeveloper Reviews Oracle JDeveloper opiniões
- Oracle Database Import Error 3113/3114 Banco de dados Oracle importação erro 3113/3114
- Change Oracle Database User Password Mudar banco de dados Oracle usuário Senha
- ORA-00942 Table or View Does Not Exist Oracle Error ORA-00942 Ver tabela ou não existe erro Oracle
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle gota tabela erro
- Oracle Business Activity Monitoring Reviews Oracle actividade empresarial acompanhamento Comentários
- Oracle ORA-01658 Unable to Create INITIAL Extent for Segment in Tablespace Error Oracle ORA-01658 Não foi possível criar INICIAL Extensão para o segmento no tablespace Erro
- Oracle EXP-00091 Error When Export Database Oracle EXP-00091 erro ao exportar Database
- How Drop Tablespace and Recover Oracle Database When Accidentally Delete Datafile Como drop tablespace e recuperar banco de dados Oracle, quando acidentalmente apagar Datafile
















March 3rd, 2008 22:29 3 de março de 2008 22:29
It was a very helpful to find the oracle version information through sqlplus. Foi um muito útil para encontrar a informação através da versão oracle sqlplus.
Thanks, Obrigado,
pankaj
August 13th, 2008 06:16 13 de agosto de 2008 06:16
select * from versions; * selecione a partir de versões;
The above SQL will do. O SQL acima irá fazer.
August 13th, 2008 19:03 13 de agosto de 2008 19:03
The above query will not work in oracle A consulta acima não irá funcionar em oracle
use the below query utilizar a infra query
Select * from v$version; Selecione v * a partir de US $ versão;