Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

help!!! pfiles sfiles

Status
Not open for further replies.

dcampo

Programmer
Jun 13, 2006
71
0
0
EC
Hi...

I'm sorry if write very bad the english.

I'm studing Oracle and I'm looking the concept, content, what are...!! the files PFILE and SFILE in Oracle....

thanks
 

Both are equivalent, the pfile is the database initialization parameter file in text format and the spfile (server parameter file) is the same file but used by the Oracle database at run time.

The difference is that once the spfile is created it allows some permanent parameter changes without having to re-start the database; on the other hand, changes to the pfile may require restarting the database.

You can create one from the other:

CREATE SPFILE FROM PFILE;
-- or --
CREATE PFILE FROM SPFILE;

[3eyes]



----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
You can also force the database to start using the pfile if that is necessary:

startup pfile='/path/to/pfile'

Useful if something screws up in the spfile (as if!!).

Alan Bennett said:
I don't mind people who aren't what they seem. I just wish they'd make their mind up.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top