设为首页 加入收藏

TOP

Oracle创建用户的方法
2017-11-23 08:31:47 】 浏览:87
Tags:Oracle 创建 用户 方法

创建用户

-- Create the user 
create user MEP
  identified by whq1987
  default tablespace MEP
  temporary tablespace MEP_TEMP
  profile DEFAULT;
-- Grant/Revoke role privileges 
grant connect to MEP;
grant datapump_exp_full_database to MEP;
grant datapump_imp_full_database to MEP;
grant dba to MEP;
grant exp_full_database to MEP;
grant imp_full_database to MEP;
grant resource to MEP;
-- Grant/Revoke system privileges 
grant alter_user to MEP;
grant comment any table to MEP;
grant create any view to MEP;
grant create session to MEP;
grant create user to MEP;
grant delete any table to MEP;
grant drop user to MEP;
grant export full database to MEP;
grant unlimited tablespace to MEP;
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇安装好MySQL数据库之后的操作步骤.. 下一篇SQLServer2008须知概述

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目