How can I restart an Oracle database? [duplicate]

徘徊边缘 提交于 2021-01-01 06:43:48

问题


I have to restart my Oracle database because of view changes in the SPFile. I tried to shutdown and startup, but I don't know how to startup in the right way again.


回答1:


Start SQL*Plus without connecting to a database

SQLPLUS /NOLOG
Connect as SYSDBA
CONNECT username AS SYSDBA

Issue the startup command

STARTUP

If that doesn't work for you I would recommend consulting the Oracle Docs on starting up a DB. Lots of startup options are listed there.



来源:https://stackoverflow.com/questions/39262026/how-can-i-restart-an-oracle-database

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!