drop删除数据库

 drop删除数据库

 

1,shutdown abort

2,startup mount

3,alter system enable restricted session;  

--让oracle 处于RESTRICTED模式

 

 

alter system enable restricted session;
如果需要取消
alter system disable restricted session;  

需要注意的是RESTRICTED模式以后  除了管理员都不能登录,如果需要非管理员登录,必须
GRANT restricted session to test; 

4,drop database;





RAC  drop database;


  
  
  
  
1.先停止所有节点实例(否则回报ORA-29707: inconsistent value 1 for initialization parameter cluster_database_instances with other instances)
sqlplus "/as sysdba"
shutdown immediate 
2.在其中一节点操作,先关闭rac模式。
startup nomount
alter system set CLUSTER_DATABASE=FALSE scope=spfile;
shutdown immediate
3启动mount restric 模式
startup mount restrict 
4.删除数据库
drop database;

 

 

你可能感兴趣的:(drop,删除数据库)