Mar 11, 2003 #1 owenyuen Programmer Feb 19, 2003 22 US Hi all: How can I identify the instance name? Also, is anyway I can find out the version of the database?
Hi all: How can I identify the instance name? Also, is anyway I can find out the version of the database?
Mar 11, 2003 #2 stefanhei Technical User Sep 13, 2001 464 AT Hi. The v$instance - view provides the information you need. Stefan Upvote 0 Downvote
Mar 12, 2003 #4 cliousa Technical User Mar 7, 2003 72 US 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 ------------------ http://www.dbaclick.com Upvote 0 Downvote
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 ------------------ http://www.dbaclick.com
Mar 12, 2003 Thread starter #5 owenyuen Programmer Feb 19, 2003 22 US Thanks All: Best Regards Owen Upvote 0 Downvote