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. בכל הזדמנות אפשרית.


5 Responses to “Check Oracle Version” 5 תגובות ל "בדוק גירסה אורקל"

  1. Jon Schneider ג 'ון שניידר
    September 12th, 2008 04:39 12 ספטמבר 2008 04:39
    5 5

    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. עדיין, את ההצעה הקודמת שלי ממוצב מעל עדיין חל; פשוט לעשות את עצמו להחליף במחשב המקומי שלך, במקום בהערה כאן. :-)

  2. Jon Schneider ג 'ון שניידר
    September 12th, 2008 04:35 12 ספטמבר 2008 04:35
    4 4

    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 $ גרסה שבו הבאנר כמו% "אורקל";

  3. A
    August 13th, 2008 19:03 13 אוגוסט 2008 19:03
    3 3

    The above query will not work in oracle השאילתה לעיל לא יעבוד Oracle
    use the below query להשתמש להלן השאילתה
    Select * from v$version; Select * from v $ version;

  4. Karthikeyan Karthikeyan
    August 13th, 2008 06:16 13 אוגוסט 2008 06:16
    2 2

    select * from versions; * בחר מגירסאות;

    The above SQL will do. מעל SQL יעשה.

  5. Pankaj פאנקאג
    March 3rd, 2008 22:29 3 מרס 2008 22:29
    1 1

    It was a very helpful to find the oracle version information through sqlplus. זה היה מועיל מאוד למצוא את המידע באמצעות Oracle גרסה sqlplus.

    Thanks, תודה,
    pankaj Pankaj

Leave a Reply השאירו תגובה

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> באפשרותך להשתמש בתגים אלה: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q cite=""> <strike> <strong>

Subscribe to comments feature has been disabled. כדי להירשם הערות תכונה הושבת. To receive notification of latest comments posted, subscribe to כדי לקבל הודעה העדכנית של תגובות, כדי להירשם My Digital Life Comments RSS feed החיים שלי דיגיטליות תגובות RSS Feed or או register to receive הרשמה לקבלת new comments in daily email digest. תגובות חדש ב דוא"ל תקציר יומי.
Custom Search

New Articles מאמרים חדשים

Incoming Search Terms for the Article תנאי נכנסות חיפוש עבור מאמרים

oracle version גרסה Oracle - -- Check Oracle version לבדוק את גירסת אורקל - -- how to check oracle version כיצד לבדוק את גירסת Oracle - -- oracle version query שאילתה גרסה Oracle - -- version oracle Oracle גירסה - -- oracle check version גרסה לבדוק Oracle - -- checking oracle version בדיקת הגירסה Oracle - -- version of oracle הגירסה של Oracle - -- get oracle version לקבל גרסה Oracle - -- check oracle database version Oracle גרסה לבדוק באתר - -- finding oracle version מציאת גרסה Oracle - -- how to check oracle database version כיצד לבדוק את גירסת מסד הנתונים Oracle - -- Get Oracle Database Version קבל Oracle Database גירסה - -- Oracle version הגירסה של Oracle - -- check oracle client version Oracle גרסה לבדוק הלקוח - -- query oracle version גרסה Oracle שאילתה - -- oracle database version query שאילתת מסד נתונים Oracle גרסה - -- what version of oracle איזו גירסה של Oracle - -- oracle version check לבדוק את גירסת Oracle - -- oracle database version גירסת מסד הנתונים Oracle - -- Oracle versions גירסאות אורקל - -- how to check version of oracle כיצד לבדוק את הגירסה של Oracle - -- check version of oracle גרסה הסימון של Oracle - -- query oracle database version מסד הנתונים Oracle גרסה שאילתה - -- oracle get database version Oracle לקבל גרסה באתר - -- how to get oracle version איך להגיע גרסה Oracle - -- oracle query database version שאילתה גרסה Oracle Database - -- oracle check database version לבדוק את גירסת Oracle Database - -- how to see oracle version איך לראות גרסה Oracle - -- oracle get version Oracle לקבל גירסה - -- check version oracle Oracle גרסה לבדוק - -- Oracle version info מידע על אורקל גרסה - -- oracle version table שולחן גרסה Oracle - -- how to check the version of Oracle כיצד לבדוק את הגירסה של אורקל - -- how to check oracle client version כיצד לבדוק את גירסת הלקוח Oracle - -- check oracle db version Oracle גרסה לבדוק db - -- oracle query version גרסה שאילתה Oracle - -- "oracle version" "גרסה Oracle" - -- oracle version number מספר הגירסה Oracle - -- finding oracle database version למצוא גירסת מסד הנתונים Oracle - -- get oracle client version את גירסת הלקוח Oracle - -- how to get oracle database version איך להגיע גירסת מסד הנתונים Oracle - -- HOW TO CHECK ORACLE DB VERSION כיצד לבדוק ORACLE DB VERSION - -- how to find oracle database version איך למצוא גירסת מסד הנתונים Oracle - -- oracle version information פרטי הגירסה Oracle - -- check oracle version גרסה Oracle לבדוק - -- all הכל - -- which version of oracle איזו גירסה של Oracle - -- query to find oracle version שאילתה למצוא גרסה Oracle - -- version in oracle גרסה ב Oracle - -- which oracle version איזו גירסה של Oracle - -- versione oracle Oracle Versione - -- get oracle db version לקבל db גרסה Oracle - -- how to check oracle version כיצד לבדוק את גירסת Oracle - -- see oracle version לראות גרסה Oracle - -- SQL check Oracle version Oracle SQL לבדוק גרסה - -- what is my oracle version מה היא הגירסה Oracle שלי - -- sql to check oracle version SQL כדי לבדוק את גירסת Oracle - -- query database version oracle גירסת מסד הנתונים Oracle שאילתה - -- versions of oracle גירסאות של Oracle - -- find oracle version למצוא גרסה Oracle - -- check database version oracle מסד הנתונים Oracle לבדוק את גירסת - -- finding version of oracle מציאת גרסה של Oracle - -- how to find oracle version איך למצוא גרסה Oracle - -- query for oracle version שאילתה עבור גרסה Oracle - -- sql query oracle version גרסה Oracle שאילתת SQL - -- find oracle client version למצוא את גירסת הלקוח Oracle - -- how to check the oracle version כיצד לבדוק את גירסת Oracle - -- check oracle edition מהדורה Oracle לבדוק - -- oracle sql get database version Oracle SQL לקבל גרסה באתר - -- how to find oracle client version איך למצוא את גירסת הלקוח Oracle - -- how check oracle version איך לבדוק גרסה Oracle - -- how to check the version of oracle database כיצד לבדוק את הגירסה של Oracle Database - -- oracle how to check version Oracle כיצד לבדוק את גירסת - -- checking version of oracle בדיקת הגירסה של Oracle - --