Check Oracle Version בדוק אורקל גירסה
There are several ways where you can query or retrieve the version number of installed Oracle products: ישנן מספר דרכים בהם אתה יכול לבצע שאילתה או לאחזר את מספר הגירסה של מוצרים מותקנים אורקל:
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. אם אתה רק רוצה לבדוק את פרטי הגירסה של מסד הנתונים אורקל, פשוט להתחבר להתחבר למסד הנתונים אורקל עם 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 - Production ב Tue Oct 18 17:58:57 2005
Copyright (c) 1982, 2002, Oracle Corporation. זכויות יוצרים (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 עם חלוקת, OLAP ו-Oracle Data Mining נוספות
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 . מספר נטוי הראשון הוא הגירסה של הלקוח SQL * Plus ומספר נטוי השני הוא גרסה של מסד הנתונים אורקל שבו אתה מחובר.
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 $ גרסה שבו הבאנר כמו% "אורקל";
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, תוכנית ההתקנה גישה על ידי התחל -> כל התוכניות -> אורקל מוצרים מותקנים -> 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 ידנית ולנקות הסר אורקל עבור Windows
- Oracle Database Import Error 3113/3114 Oracle Database ייבוא שגיאה 3113/3114
- Change Oracle Database User Password שינוי Oracle Database משתמש סיסמא
- Create, Add or Split Oracle Database Partition Fails with ORA-14080 Error צור, הוספה או פיצול Oracle Database החלוקה נכשל עם שגיאה ORA-14080
- Oracle JDeveloper Reviews Oracle JDeveloper סקירות
- ORA-02449 Oracle Drop Table Error ORA-02449-Oracle זרוק טבלה שגיאה
- Oracle ORA-14074 Create or Add New Partition Fails Error אורקל ORA-14074 יצירת מחיצה חדשה או הוסף נכשל שגיאה
- Oracle EXP-00091 Error When Export Database אורקל EXP-00091 שגיאה בעת ייצוא מסד נתונים
- View and Retrieve Oracle Database Link Details הצג ולאחזר קישור מסד הנתונים Oracle פרטים
- Oracle Database Link קישור מסד נתונים אורקל










































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 $ גרסה שבו הבאנר כמו% "אורקל"; "
Try replacing the “curly” singlequote characters around “Oracle%” with regular straight singlequotes: נסה להחליף את "מתולתל" תווים singlequote סביב "% אורקל" עם singlequotes ישר רגיל:
select * from v$version where banner like 'Oracle%'; select * from v $ גרסה שבו הבאנר כמו% "אורקל";
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; Select * from v $ version;
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 Pankaj