Solution of LRM-00109 error in Oracle Database.

bottom-link">'D:\ORACLE\ORA92\DATABASE\INITGPT2.ORA'
Article explains solution of LRM-00109 error whileSystem will generate error for creating spfile because
starting database.required init.ora doesn't available. Means you will get
When user got following errors to gather it is may beerror. But your command "create spfile from pfile" will
due to some mismatch with server parameter filebe generating new empty spfile and it will be
(spfile) and parameter file (init.ora). Generally theseoverwriting existing spfile. Means your current spfile
errors are occurring due to not exist of pfile or spfilehas been washed and becoming empty. After getting
on system. May be oracle doesn't find out parameterthis error if you are trying to restart your database
file in default location. Or may be file there but contentsthen you will get actual following error due to spfile file
of file is wipe off. There are so many reasons foris empty. 
getting ORA-01078 with LRM-00109 errors to gather. If SQL> startup
you get only ORA-01078 then it is indication of wrongORA-01078: failure in processing system parameters
parameter configuration. But when you get both errorsLRM-00109: could not open parameter file
simultaneously is indicating problem of parameter file'D:\ORACLE\ORA92\DATABASE\INITGPT2.ORA'
server parameter file existence. In this article we can How to resolve ORA-01078 with LRM-00109
see how error will be generating and how it getserror? 
resolved.  For resolving this error, you should need to replace
 SQL> conn /as sysdbainit.ora or spfile if you have backup of same files. If you
Connected to an idle instance.don't have backup then go to alert.log and copy all
SQL> startup parameters in one file and save as "init.ora". Modify
ORA-01078: failure in processing system parameters same init.ora with some parameters which need single
LRM-00109: could not open parameter filequotation mark " ' " like
'D:\ORACLE\ORA92\DATABASE\INITGPT.ORA' background_dump_dest,controlfiles,db_name etc.
 Reason: Server parameter file or parameter fileConnect as sysdba in SQL*Plus and execute
doesn't available::command "create spfile from pfile". This command will
Some times error ORA-01078 is coming withgenerate again your server parameter file (spfile) in
LRM-00109. It is due to either spfile or init.ora doesn'tsystem which needs to be starting database.  Means
available in required path. If database is running withcreating new spfile or pfile will solve error of
spfile and there is no init.ora available in system. IfLRM-00109 error with ORA-01078 error. When you
Oracle dba execute following command in SQL*Plusgot error check first default location for same files
for creating spfile.ora (which already there in systemexist or not. If you don't find out any of files then
but init.ora doesn't in system). re-create it. If you find out any of one file then check
 SQL>create spfile from pfile;exact location and try to open database using "startup
*pfile=' '" command. Does it working or not? If it is
ERROR at line 1:working then create spfile from it. Or create pfile from
ORA-01078: failure in processing system parametersalert.log file is last solution to resolve ORA-01078 with
LRM-00109: could not open parameter fileLRM-00109 error.