Believe it,do it!

Ideal is the beacon. Without ideal, there is no secure direction; without direction ,there is no life.
理想是指路明灯。没有理想,就没有坚定的方向;没有方向,就没有生活。
CTRL+T eclipse
posts - 35, comments - 3, trackbacks - 0, articles - 0
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

ORACLE命令创建用户

Posted on 2014-01-16 15:35 三羽 阅读(156) 评论(0)  编辑  收藏

 

cmd
sqlplus /nolog

conn /as sysdba

//创建用户并指定表空间  

create user username identified by password  

default tablespace my(users) 

temporary tablespace my(temp);  

//给用户授予权限  

grant connect,resource to username;  

//以后以该用户登录,创建的任何数据库对象都属于user_temp 和user_data表空间,

这就不用在每创建一个对象给其指定表空间了 

撤权:  

       revoke   权限...   from  用户名;

删除用户命令

drop user user_name cascade;

 


只有注册用户登录后才能发表评论。


网站导航: