Link to home
Start Free TrialLog in
Avatar of awking00
awking00Flag for United States of America

asked on

Find parameter values

Hopefully, this is a simple one. How can I find the value of the skip_unusable_indexes parameter?
Avatar of TelcoDBA
TelcoDBA

Using SQLPLUS connect as a dba user (sys is best)
Type 'show parameter skip_unusable_indexes' <enter>

Avatar of awking00

ASKER

I tried this before. The problem is that the show parameters command only shows the names and values of the parameters that are in v$parameter, of which skip_unusable_indexes is not one.
OK, if you're using enterprise manager, you can select 'instance' and view all initialisation parameters.

Otherwise, check your init file.

What db version are you on?
Another problem. This is a production database, and while I have select access on the production tables (including the dba_ and v$ tables), I have no OEM access. I do have OEM access on a development system and, even there, the skip_unusable_indexes parameter does not show when I select view "all initialization parameters."
ASKER CERTIFIED SOLUTION
Avatar of TelcoDBA
TelcoDBA

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