How can I find the edition of Oracle installed? - oracle

I have inherited an installation of Oracle 11G on CentOS. I know the version by running:
SELECT * FROM v$version;
Result: Oracle Database 11g Release 11.2.0.2.0 - 64bit Production
However, I am trying to find the edition of Oracle installed for licensing purposes. Everyone keeps telling me it is a 'Lite' version...
The Oracle documentation tells me there are 5 editions:
From everything I have read when googling this, people say that if the results from select * from v$version does not say Enterprise, then it is Standard. I do not believe that I can go by that as there are 5 editions and two of them are separate types of Standard Edition. I need to know the exact edition installed.
Does anyone have any idea who I can determine what exact edition is installed?
Thanks!

Running this on 11g Enterprise
select * from v$version where banner like 'Oracle%';
shows
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
If it doesn't say Enterprise or XE then it is Standard

Mine tells me it's Enterprise
SQL> select * from v$version;
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - 64bi
PL/SQL Release 10.2.0.1.0 - Production
CORE 10.2.0.1.0 Production
TNS for IBM/AIX RISC System/6000: Version 10.2.0.1.0 - Productio
NLSRTL Version 10.2.0.1.0 - Production

Related

SAVEPOINT errors in oracle database 10g express edition

Whenever I use SAVEPOINT in Oracle Database 10g Express Edition it gives me errors continuously either I use "SAVEPOINT A", "SAVEPOINT A;" AND "SAVEPOINT <A.>;"
Help me in this
It is kind of difficult to debug code you can't see. I don't have 10gXE, but - this is 10gEE; I don't expect it to behave differently in that matter:
SQL> select * From v$version;
BANNER
----------------------------------------------------------------
Oracle Database 10g Enterprise Edition Release 10.2.0.5.0 - 64bi
PL/SQL Release 10.2.0.5.0 - Production
CORE 10.2.0.5.0 Production
TNS for Linux: Version 10.2.0.5.0 - Production
NLSRTL Version 10.2.0.5.0 - Production
SQL> begin
2 savepoint a;
3 end;
4 /
PL/SQL procedure successfully completed.
SQL>
Therefore, perhaps you'd want to share your code so that we'd see what you did and how Oracle responded.

Web Console and SQL Plus not syncing in Oracle XE 10g

I have Oracle XE 10g installed in my Windows 10 OS. I am able to connect both Web Console and SQL Plus command line to the database. The issue is operations done in SQL Plus command line are not reflecting in Web UI. But whatever doing in Web UI is reflecting in SQL Plus command line. I am using the default SYSTEM user. Why this issue coming?
SQL Plus version - SQL*Plus: Release 10.2.0.1.0
Oracle version - Oracle Database 10g Express Edition Release 10.2.0.1.0
Thanks in Advance

Oracle 12c standard CDB count

I am using Oracle Database 12c Standard Edition Release 12.1.0.2.0 - 64bit. Can anyone please help me to know that how many numbers of CDB/SID/Instance I can create it with standard edition?

Which edition of oracle is installed

We are compiling a code which needs 32 bit oracle db to be installed. So i need to install a oracle 32 bit. We have another machine where 32 bit oracle 11g is installed and we are able to compile Succesfully.
I need to know which edition of oracle is installed there (Standard or Enterprise) so I can install the same in my machine.
Additional info:
Oracle 32 bit is just a plain db. it is not installed with configuration or Listner. So i cant find out through any queries.
You have to query the data dictionary view PRODUCT_COMPONENT_VERSION to identify the release of Oracle Database that is currently installed.
The below query will help you.
SELECT product, version, status
FROM PRODUCT_COMPONENT_VERSION
WHERE product LIKE 'Oracle Database%';
PRODUCT VERSION STATUS
====================================== ========== ================
Oracle Database 11g Enterprise Edition 11.2.0.3.0 64bit Production
If you need more information about database, you can query
select * from v$database;
for more information refre here http://docs.oracle.com/cd/B19306_01/server.102/b14237/dynviews_1073.htm#REFRN30047
If you connect to SQL PLUS it will say which version and edition you had installed

Determine Oracle Warehouse Builder version

Is there a way to check whether a server is running the 11g release 2 or 11g release 1 version of Oracle Warehouse Builder?
Also is it safe to assume that Release 11.1.0.7.0 in terms of the Oracle instance itself (as opposed to OWB) is an instance of 11g release 1?
select * from v$version;
returns
Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
PL/SQL Release 11.1.0.7.0 - Production
CORE 11.1.0.7.0 Production
TNS for Solaris: Version 11.1.0.7.0 - Production
NLSRTL Version 11.1.0.7.0 - Production
"Also is it safe to assume that Release 11.1.0.7.0 in terms of the Oracle instance itself (as opposed to OWB) is an instance of 11g release 1?"
Yes.
To get the version of OWB, try...
select release
from all_iv_installations;
(I can't test it as I haven't got OWB installed.)
Ref: http://download.oracle.com/docs/cd/E10926_01/doc/owb.101/b12146/d_pub.htm
Given that the OWB schema is installed with the database, it seems likely that that's the version of OWB you'll have, unless you think it's been upgraded seperately.
It seems it is possible to install OWB 11.2 into an 11.1 database:
"It is generally not necessary to download this standalone software unless you have any of the following needs:
- To install OWB 11.2 and host an OWB repository on Oracle Database 10 g Release 2 or Oracle Database 11 g Release 1. "
http://www.oracle.com/technetwork/developer-tools/warehouse/downloads/index.html
Log onto the owb server and the following query should help you:
select runtime_version from owbsys.wb_rt_service_nodes;
You either need to log in as owbsys or as someone who has the privileges to access this table.

Resources