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, 3411🔥, 0💬
Popular Posts:
How To Start Instance with a Minimal Initialization Parameter File in Oracle? The sample initializat...
Where to find answers to frequently asked questions on PHP Connections and Query Execution for MySQL...
How to continue to the next iteration of a WHILE loop in SQL Server Transact-SQL? How to use CONTINU...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...