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