Archive for the ‘ Oracle SQL ’ Category

 

Could not start up oracle instance

Read full article | No Comments

Could not start up oracle instance
This issue occurred because no pfile or spfile
SQL> startup
ORA-01078: failure in processing system parameters
LRM-00109: could not open parameter file
β€˜/mnt02/oracle/10.2.0.3/dbs/initfile.ora’

Read More

Oracle init file (parameter file – pfile or spfile)

Read full article | No Comments

init file are located under :
Unix : $ORACLE_HOME/dbs
Windows : %ORACLE_HOME%\database

Read More

SQL Statement – How to check ORACLE_SID

Read full article | No Comments

Just type the below SQL Statement :
select NAME , Value from v$parameter where NAME=’db_name’
Result :
NAME VALUE
db_name BLOGXXX

Read More