Re: Invalid directory patch

Posted by ErmanArslansOracleBlog on
URL: http://erman-arslan-s-oracle-forum.114.s1.nabble.com/Invalid-directory-patch-tp8816p8821.html

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
/