首页 > 数据库技术 > 详细

如何删除oracle 的用户及其数据

时间:2020-07-14 19:53:16      阅读:69      评论:0      收藏:0      [点我收藏+]

1.用sysdba登录

(1)cmd 控制台:sqlplus / as sysdba;

(2)drop user test cascade;

 

2.创建用户

-- Create the user 
create user test
  identified by test
  default tablespace hOTEL_DATA
  temporary tablespace temp;
-- Grant/Revoke role privileges 
grant dba to test;
grant connect to test;

如何删除oracle 的用户及其数据

原文:https://www.cnblogs.com/curedfisher/p/13300470.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!