Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How can find parameter db_file_direct_io_count
"Nicky" <fuffaspam_at_quipo.it> wrote in message
news:chp6cs$t4e$1_at_newsserver.cilea.it...
> Hello
>
> I need to modifify a parameter that I can't find using using sqlplus->show
> parameter or Enterprise Manamgement Console.
>
> Do you know if this parameter exists ? or maybe it's has been renamed in
> someone other ?
It appends that parameters are removed or make available as undocumented parameters. This is such a case... in 9.2 or 10.1 it is only available as undocumented. With a select like the following one you should be able to find it...
select a.ksppinm "Parameter",
decode(p.isses_modifiable,'FALSE',NULL,NULL,NULL,b.ksppstvl) "Session",
c.ksppstvl "Instance", p.isses_modifiable "S-Mod", p.issys_modifiable "I-Mod"
Chris
PS: I don't know why you what to modify it... anyway, I'll not do it without a good reason! Notice that if you get the advice you should modify it, the source is not up to date! In fact, as you have seen, the parameter doesn't exist, officially.
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
![]() |
![]() |