Collections:
Create a Server Parameter File in Oracle
How To Create a Server Parameter File in Oracle?
✍: FYIcenter.com
This is Step 5. The initialization parameter file is good to get an Oracle database instance started. But it is not ideal run an instance as production. You need to convert the initialization parameter file into a Server Parameter File (SPFile) using the CREATE SPFILE statement. The script below shows you how do this:
SQL> CREATE SPFILE=$ORACLE_HOME/dbs/SPFILEFYI.ora 2 FROM PFILE=$ORACLE_HOME/database/initFYI_ini.ora; File created.
Note that $ORACLE_HOME should be replaced by the real path name where your Oracle server is intalled.
The SPFile should be located in the expected directory and named as SPFILE($SID).ora.
⇒ Start an Oracle Instance in Oracle
⇐ Connect to Oracle Server as SYSDBA in Oracle
2018-05-08, 2582🔥, 0💬
Popular Posts:
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
What is dba.FYIcenter.com Website about? dba.FYIcenter.com is a Website for DBAs (database administr...