Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

how to get the number of processor license

575729Nov 19 2008 — edited Nov 20 2008
Hi,

SQL> select CPU_COUNT_CURRENT,CPU_CORE_COUNT_CURRENT,CPU_COUNT_HIGHWATER,CPU_CORE_COUNT_HIGHWATER,CPU_SOCKET_COUNT_HIGHWATER
2 from v$license;

CPU_COUNT_CURRENT CPU_CORE_COUNT_CURRENT CPU_COUNT_HIGHWATER CPU_CORE_COUNT_HIGHWATER CPU_SOCKET_COUNT_HIGHWATER
----------------- ---------------------- ------------------- ------------------------ --------------------------
48 48 48 48 48

1 row selected.


select
SESSIONS_MAX NUMBER
SESSIONS_WARNING,
SESSIONS_CURRENT,
USERS_MAX from v$license;


1 select
2 SESSIONS_MAX
3 SESSIONS_WARNING,
4 SESSIONS_CURRENT,
5* USERS_MAX from v$license
SQL> /

SESSIONS_WARNING SESSIONS_CURRENT USERS_MAX
---------------- ---------------- ----------
0 115 0

How many processor of license for oracle i have. I think its 48. Can you confirm me in this regards

regards
Nick
This post has been answered by JustinCave on Nov 19 2008
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 18 2008
Added on Nov 19 2008
3 comments
3,039 views