imp cmsuser/password@orcl file=bubp dmp fromuser=cmsuser touser=cmsuser
SQL>create user uumcuser identified by password
User created
SQL>grantgrant connect dba to uumcuserSP : unknown mand beginning grantgrant rest of line ignored SQL>grant connect dba to uumcuser
Grant succeeded
SQL>grant exp_full_database imp_full_database resource create any sequence to cmsuser
Grant succeeded
SQL>grant create any trigger create any view create table drop any view to uumcuser
Grant succeeded
SQL>grant exp_full_database imp_full_database resource create any sequence to uumcuser
lishixinzhi/Article/program/Oracle/201311/17382
可按如下步骤创建用户:
1、打开oracle第三方工具,如plsq,然后用一个具有dba权限的用户登录。
2、然后打开一个SQL窗口。
3、执行语句:“create user 用户名 identified by 密码”(其中用户名需要为英文,密码为数字或字母或英文符号或组合)。
4、执行完毕后,可按需要给用户赋予相应的权限,如:“grant connect,resource,dba to 用户名”。
ORACLE数据库系统是美国ORACLE公司(甲骨文)提供的以分布式数据库为核心的一组软件产品,是目前最流行的客户/服务器(CLIENT/SERVER)或B/S体系结构的数据库之一。比如SilverStream就是基于数据库的一种中间件。
ORACLE数据库是目前世界上使用最为广泛的数据库管理系统,作为一个通用的数据库系统,它具有完整的数据管理功能;作为一个关系数据库,它是一个完备关系的产品;作为分布式数据库它实现了分布式处理功能。但它的所有知识,只要在一种机型上学习了ORACLE知识,便能在各种类型的机器上使用它。
oracle怎样为指定数据库创建用户创建用户:
1
create user shopping identified by 123456
其中shopping为创建的用户名,123456为用户密码。
创建用户后需要对用户赋予相应的权限,以下是示例,为shopping用户赋予connect,resource,dba三个权限。
授权:
1
grant connect,resource,dba to shopping
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)