Problems installing Oracle Database Express Edition 11g

前端 未结 7 2137
感动是毒
感动是毒 2021-02-19 13:14

I\'m trying to install Oracle Database in (X)ubuntu 13.04 64-bit using this guide. Everything goed well until I get to the following step:

$ sudo /etc/init.d/ora         


        
7条回答
  •  终归单人心
    2021-02-19 13:43

    I struggled with this too. I have tried a few different solutions, but still got the problem. I "fixed" it by removing memory_target from the database configuration:

    sqlplus / as sysdba
    create pfile=‘’ from spfile 
    !vi 
    

    Add # in front of the line with memory_Target, save and close file.

    startup from pfile=‘'
    create spfile from pfile=‘

    This solution works nice with my XE database, hope it helps.

提交回复
热议问题