Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Instance Name & database version question?

Status
Not open for further replies.

owenyuen

Programmer
Feb 19, 2003
22
0
0
US
Hi all:
How can I identify the instance name? Also, is anyway I can find out the version of the database?
 
Hi.
The v$instance - view provides the information you need.

Stefan
 
Every time you startup SQL*Plus (svrmgrl) the version and the edition of the db are displayed. Something like that:

$ sqlplus /nolog

SQL*Plus: Release 9.0.1.3.0 - Production on Wed Mar 12 10:06:54 2003

(c) Copyright 2001 Oracle Corporation. All rights reserved.

SQL>


Or you can lookup from OUI the version of each installed product. For the instance name:

SQL>select instance_name from v$instance;



Hope that helps,

clio_usa - OCP DBA
------------------
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top