|
-
Originally posted by salvareztur
I have made.
create spfile='/oradmin/xxx/spfileDbd.ora' from pfile='/oradmin/xxx/inidDb.ora'
When you create a non-default spfile, you need to specify the SPFILE name in the PFILE, i.e init.ora, The parameter name to be specified in init.ora is SPFILE
SPFILE = 'current SPFILE name', in your case, it would be
SPFILE = /oradmin/xxx/spfileDbd.ora
Now....
1. Specify this parameter in your PFILE as
SPFILE = /oradmin/xxx/spfileDbd.ora
2. Create the SPFILE as
CREATE SPFILE='/oradmin/xxx/spfileDbd.ora' FROM PFILE='/oradmin/xxx/inidDb.ora'
3. Shutdown the database
4. and now try to start the database...
For more info refer to initialisation parameter SPFILE or non-default SPFILE specification...
HTH
Sameer
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|