Collections:
Create an Initialization Parameter File in Oracle
How To Create an Initialization Parameter File in Oracle?
✍: FYIcenter.com
This is Step 3. To run an Oracle database as an Oracle instance, you need to create an initialization parameter file, which contains a set of initialization parameters.
The easiest way to create an initialization parameter file to copy from the sample file provided by Oracle. You can do this in a command window as shown below:
>cd $ORACLE_HOME >copy .\config\scripts\init.ora .\database\initFYI_ini.ora >edit .\database\initFYI_ini.ora (replace XE by FYI)
In this example, only the SID is changed from XE to FYI. All other parameters are maintained as is.
⇒ Connect to Oracle Server as SYSDBA in Oracle
⇐ Establish Administrator Authentication to the Server in Oracle
2019-04-03, 2711🔥, 0💬
Popular Posts:
How To Create a Stored Program Unit in Oracle? If you want to create a stored program unit, you can ...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...
Is PL/SQL Language Case Sensitive in Oracle? PL/SQL language is not case sensitive: Reserved words a...
How to download and install SQL Server 2005 Sample Scripts in SQL Server? If you want to learn from ...