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

Thread: init file or spfile

  1. #1
    Join Date
    Jun 2007
    Posts
    29

    init file or spfile

    pls how do i know if i am using initfile or spfile to start my instance

  2. #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.

  3. #3
    Join Date
    Jun 2007
    Posts
    29
    thanks it worked

  4. #4
    Join Date
    Jun 2007
    Location
    İstanbul/Turkey
    Posts
    25
    SQL> show parameter spfile
    this is faster

  5. #5
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    Quote Originally Posted by Balki
    SQL> show parameter spfile
    this is faster
    why put the same thing someone else has already answered with?

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