- 论坛徽章:
- 1
|
为什么create spfile from pfile不能执行?
CREATE SPFILE [= '<spfile_name>;'] FROM PFILE [= '<pfile_name>;'];
The above will create a Server Parameter file (SPFILE) based on the existing Parameter File (PFILE) (INIT<ORACLE_SID>;.ORA). The SPFILE is by default named SPFILE<ORACLE_SID>;.ORA and placed in the default (port specific) directory.
If existing PFILE (INIT<ORACLE_SID>;.ORA) is not in default directory and using default naming, the below must be specified:
CREATE SPFILE FROM PFILE='<directory-and-filename>;' ; |
|