Link to home
Start Free TrialLog in
Avatar of rutgermons
rutgermons

asked on

maximo open cursor

folks

how do i determine the maximo open cursor setting on a database in oracle 10?
Avatar of mrjoltcola
mrjoltcola
Flag of United States of America image

From sqlplus / as sysdba

SQL> show parameter open_cursors

Or from any dba


SQL> select name, value from v$parameter where name like '%cursor%';
Avatar of Sean Stuber
Sean Stuber

note on privileges...

SELECT_CATALOG_ROLE
or
select any dictionary
or
direct grant to v$parameter is sufficient.

you don't need DBA privileges to query the above info.
also note,  "show parameter" simlply issues a select against v$parameter for you and formats the results
so, if you don't have one or more of the above privileges, it won't work either.
ASKER CERTIFIED SOLUTION
Avatar of schwertner
schwertner
Flag of Antarctica image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hi rutgermons,

It is noted by sdstuber that you don't need DBA privs to see that view, however, it is unlikely that you can see that view if you are not a DBA, so you may have to ask your DBA for that info.

I don't condone connecting / as sysdba for every little option, but meant only to provide 2 options in the answer, and I have a bit of a habit of using / as sysdba since often asker's will take suggestions of system/manager literally when "manager" is not their password.