Check Oracle Version Перевірка версій Oracle
There are several ways where you can query or retrieve the version number of installed Oracle products: Є кілька способів, де ви можете запитати або отримати номер версії встановлених продуктів Oracle:
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. Якщо ви просто хочете, щоб перевірити інформацію про версію бази даних Oracle, достатньо просто підключити і Логін до бази даних Oracle в SQL * Plus. Upon login, you will see: За Логін, ви побачите:
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 - Провадження у Вт 18 жовтня 17:58:57 2005
Copyright (c) 1982, 2002, Oracle Corporation. Copyright (C) 1982, 2002, Oracle Corporation. All rights reserved. Всі права захищені.
Connected to: Чи пов'язані з:
Oracle9i Enterprise Edition Release 9.2.0.6.0 – 64bit Production Oracle9i Enterprise Edition Release 9.2.0.6.0 - 64bit виробництва
With the Partitioning, OLAP and Oracle Data Mining options З Partitioning, OLAP і Oracle Data Mining сторінку
JServer Release 9.2.0.6.0 – Production JServer Release 9.2.0.6.0 - Виробництво
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 . Курсив перший номер версії SQL * Plus і клієнт курсивом другий номер версії Oracle Database якої ви підключені.
2. 2. Retrieve the version information from v$version table by using SQL*Plus. Отримати інформацію про версію з V $ версію таблиці за допомогою SQL * Plus. In this table you can find version information on Oracle, PL/SQL, etc. У цій таблиці ви можете знайти інформацію про версію на Oracle, PL / SQL і т.д.
To retrieve the version information for Oracle, you execute the following SQL statement: Щоб отримати інформацію про версію для Oracle, ви виконаєте наступну заяву SQL:
select * from v$version where banner like 'Oracle%'; SELECT * FROM V $ версію банера, де, як "Oracle% ';
It should return something like this: Вона повинна повернути щось на зразок цього:
Banner Банер
————————————————————————————– -----------------------------
Oracle9i Enterprise Edition Release 9.2.0.1.0 – 64bit Production Oracle9i Enterprise Edition Release 9.2.0.1.0 - 64bit виробництва
3. 3. Version information can also be checked from Installed Products from the Oracle Universal Installer. Версії інформація також може бути підтверджено з встановленим Вироби з Oracle Universal Installer. It will tells you what products is installed on the machine and also its version information too. Вона каже вам, які продукти встановлені на комп'ютері, а також свою версію інформації теж.
In Unix, the installer is located at $ORACLE_HOME/bin/runInstaller. У Unix, установка знаходиться в $ ORACLE_HOME / BIN / RunInstaller.
In Windows, access the installer by Start -> All Programs -> Oracle Installed Products -> Universal Installer. У Windows, доступ до установок по Пуск -> Програми -> Oracle встановлених продуктів -> Universal Installer.
IMPORTANT : The page is machine translated and provided "as is" without warranty. ВАЖЛИВО: Сторінка машина переведена і надаються "як є" без гарантії. Machine translation may be difficult to understand. Машинний переклад може бути важким для розуміння. Please refer to Будь ласка, зверніться до original English article оригінальний англійська статтю whenever possible. коли це можливо.
Related Articles Статті за Темі
- Manual and Clean Uninstall Oracle for Windows Керівництво та Чистота Видаліть Oracle для Windows
- Oracle Database Import Error 3113/3114 Oracle Database Import Error 3113/3114
- Change Oracle Database User Password Зміна бази даних Oracle пароль користувача
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error Створення, додати або Split Oracle Database розділів збій з ORA-14080 помилка
- Oracle JDeveloper Reviews Oracle JDeveloper Відгуки
- ORA-02449 Oracle Drop Table Error ORA-02449 Oracle Drop Table помилку
- Oracle ORA-14074 Create or Add New Partition Fails Error Oracle ORA-14074 Створити або додати нові розділи Збій помилку
- Oracle EXP-00091 Error When Export Database Oracle EXP-00091 помилка експорту бази даних
- View and Retrieve Oracle Database Link Details Переглядати та виймати Oracle базу даних інформацію про посилання
- Oracle Database Link Oracle Database Посилання










































October 22nd, 2009 16:48 22 жовтня 2009 16:48
Thanks. Спасибо. It worked for me. Він працював для мене.
Still running Windows Server 2003 with Oracle 9.22 enterprise server. Still Running Windows Server 2003 з Oracle 9.22 Enterprise Server.
September 12th, 2008 04:39 12 Вересня 2008 04:39
Apparently this server is automatically replacing straight singlequotes with curly ones, even in my comment! Мабуть, це сервер автоматично замінюючи прямі singlequotes з фігурними них, навіть в мій коментар! 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. Тим не менш, пропозиція від мого попереднього посту вище все ще застосовується, просто зробити заміну на вашій локальній машині, а не в коментарі.
September 12th, 2008 04:35 12 Вересня 2008 04:35
If anyone gets an “invalid character” error after copy & pasting in the query from the article: Якщо хтось отримує "неприпустимий символ" Помилка після копіювання & вставки у запиті зі статті:
select * from v$version where banner like 'Oracle%';” SELECT * FROM V $ версію банера, де, як "Oracle% ';"
Try replacing the “curly” singlequote characters around “Oracle%” with regular straight singlequotes: Спробуйте замінити "Curly" singlequote навколо символу "% Oracle" з регулярним прямим singlequotes:
select * from v$version where banner like 'Oracle%'; SELECT * FROM V $ версію банера, де, як "Oracle% ';
August 13th, 2008 19:03 13 серпня 2008 19:03
The above query will not work in oracle Цей запит не буде працювати в Oracle
use the below query використовувати запит нижче
Select * from v$version; * Вибрати з V $ версію;
August 13th, 2008 06:16 13 серпня 2008 06:16
select * from versions; * Вибрати з версій;
The above SQL will do. Вище SQL буде робити.
March 3rd, 2008 22:29 3 березня 2008 22:29
It was a very helpful to find the oracle version information through sqlplus. Це було дуже корисно, щоб знайти інформацію Oracle версії через sqlplus.
Thanks, Спасибі,
pankaj Панкадж