Checking Values of Hidden Parameters - Examples of how to use ESCAPE

Hidden parameters are parameters that normally start with an underscore (_%)

 

To find out all hidden parameters within an instance, login as / as sysdba and run the following sql

 

SELECT inst_id, parno_kspvld_values, name_kspvld_values , ordinal_kspvld_values, value_kspvld_values, isdefault_kspvld_values FROM x$kspvld_values

WHERE name_kspvld_values LIKE ‘\_%’ ESCAPE ‘\’

AND inst_id = USERENV (’Instance’);

 

The bonus, this will also give you an example of how to search a string with an underscore in it.

 

 

Saturday, December 13th, 2008 at 17:45
No comments yet.

Leave a comment

XHTML: You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>