DBA Hub

📋Steps in this guide1/2

oraversion utility in oracle 18c - New feature - DBACLASS DBACLASS

A new utility oraversion has been introduced in Oracle 18c, Which provides Oracle database version/release related information.   HELP: oraversion -help This program prints release version information. These are its possible arguments: -compositeVersion: Print the full version number: a.b.c.d.e. -baseVersion: Print the base version number: a.0.0.0.0. -majorVersion: Print the major version number:

oracle clusteringintermediate
by OracleDba
14 views
1

Overview

A new utility oraversion has been introduced in Oracle 18c, Which provides Oracle database version/release related information. HELP: For displaying specific information.

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
oraversion -help
This program prints release version information.
These are its possible arguments:
-compositeVersion: Print the full version number: a.b.c.d.e.
-baseVersion: Print the base version number: a.0.0.0.0.
-majorVersion: Print the major version number: a.
-buildStamp: Print the date/time associated with the build.
-buildDescription: Print a description of the build.
-help: Print this message.
2

Section 2

Code/Command (click line numbers to comment):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
$ oraversion -compositeVersion
18.3.0.0.0

$ oraversion -baseVersion
18.0.0.0.0

$ oraversion -majorVersion
18

$ oraversion -buildStamp
180628094320

$ oraversion -buildDescription
Release_Update

Comments (0)

Please to add comments

No comments yet. Be the first to comment!