2、进入cmd后,首先连接oracle数据库
3、创建数据库新用户,shop为数据库用户,123456为密码
4、给新建的数据库用户授权
5、连接新的数据库用户
6、显示数据库用户为shop,到此数据库用户创建及验证成功
1、首先需要在电脑上登录SA账户。
2、然后展开节点 点击选择安全性节点。
3、接着在安全性节点下有一个登录名节点,右键点击可以新建登录名。
4、然后设置登录名,设置密码。
5、接着选择数据库,可以选择默认数据库。
6、选择设置之后,点击确定,完成登录名的新建。
使用sqlplus或者其它oracle客户端工具连接登陆到数据库:--创建【表空间指定为可选项】
create user 用户名 identified by 密码 [default tablespace 表空间名 ]
--授权【根据需要来决定】
grant create session to 用户名
grant create table to 用户名
grant create tablespace to 用户名
grant create view to 用户名
grant connect,resource to 用户名
grant create any sequence to 用户名
grant create any table to 用户名
grant delete any table to 用户名
grant insert any table to 用户名
grant select any table to 用户名
grant unlimited tablespace to 用户名
grant execute any procedure to 用户名
grant update any table to 用户名
grant create any view to 用户名
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)