Oracle用户授权

前端之家收集整理的这篇文章主要介绍了Oracle用户授权前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

grant create session to zhangsan;//授予zhangsan用户创建session的权限,即登陆权限

  grant unlimited tablespace to zhangsan;//授予zhangsan用户使用表空间的权限

  grant create table to zhangsan;//授予创建表的权限

  grante drop any table to zhangsan;//授予删除表的权限

  grant insert table to zhangsan;//插入表的权限

  grant update table to zhangsan;//修改表的权限

  grant all to public;//这条比较重要,授予所有权限(all)给所有用户(public)

imp prjtkybs/prjtkybs@ORCl file=E:\daochu.dmp full=y;

exp prjtkybs/prjtkybs@数据库实体 file=d:\daochu.dmp full=y

原文链接:https://www.f2er.com/oracle/210960.html

猜你在找的Oracle相关文章