Share free Oracle DBA scripts and OS related shell scripts in this forum section. Very useful resource sharing for all DBAs and System administrators. Shell scripts, DBA scripts, SQL scripts, PL/SQL Packages, functions, triggers, windows dos scripts, sharing.
by shailesh_dba » Mon Jul 09, 2012 6:41 pm
Hi Friends,
How to find out ASM Hidden Parameters? This query raised in every Oracle DBA's mind. Here is script to obtain hidden parameters of ASM. It is just like Oracle's hidden parameter query only thing you need to put ASM in like operator.
- Code: Select all
SELECT x.ksppinm name, y.ksppstvl value, x.ksppdesc description
FROM x$ksppi x, x$ksppcv y
WHERE x.inst id = userenv('Instance')
AND y.inst id = userenv('Instance')
AND x.indx = y.indx
AND x.ksppinm LIKE '\ asm%' ESCAPE '\'
ORDER BY name;
Thanks,
Shailesh the DBA
-
shailesh_dba
- Registered User

-
- Posts: 25
- Joined: Sat Aug 27, 2011 10:22 pm
by mehul80454 » Tue Jul 10, 2012 6:52 am
Hi Shailesh,
Thanks for nice contribution. Appreciate help.
-
mehul80454
- Registered User

-
- Posts: 13
- Joined: Sat Aug 27, 2011 10:26 pm
Return to Free Oracle Scripts
Who is online
Users browsing this forum: No registered users and 1 guest