DBAsupport.com Forums - Powered by vBulletin
Results 1 to 5 of 5

Thread: init file or spfile

Threaded View

  1. #2
    Join Date
    Mar 2004
    Location
    DC,USA
    Posts
    650
    You can type in sqlplus:

    show parameter spfile

    If its set it would give you the path else "unknown show option" error, similarly try with pfile.

    I got this when i googled, give a try next time

    Code:
    select decode(count(*), 1, 'spfile', 'pfile' ) from v$spparameter where rownum=1 and isspecified='TRUE';
    -courtesy TomKyte
    This would be usefull for all who needs.
    Last edited by dbasan; 06-13-2007 at 04:49 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width