Administrator
|
Yes! that's the fix. sure..
That parameter, however; is a workaround. That parameter, I mean utl_file_follow_symlinks is a hidden parameter, so you can't directly see it in your pfile.. You normally set it and check it using a hidden-parameter aware sql.
A query like the following;
SELECT
ksppinm,
ksppstvl
FROM
x$ksppi a,
x$ksppsv b
WHERE
a.indx=b.indx
AND
substr(ksppinm,1,1) = '_'
ORDER BY ksppinm
/
|