精选问答
Oracle应考,在线等五、管理用户 1、创建数据库验证用户u1,指定口令。(6分) 2、授予用户u1连接数据库的权限。(6分) 3、用户u1能够查询scott用户下的emp表数据。(6分) 4、创建角色ro1。(6分) 5、授予创建视图的权限给角色ro1,并将角色授予u1。(6分)

2019-04-13

Oracle应考,在线等
五、管理用户
1、创建数据库验证用户u1,指定口令。(6分)




2、授予用户u1连接数据库的权限。(6分)




3、用户u1能够查询scott用户下的emp表数据。(6分)




4、创建角色ro1。(6分)




5、授予创建视图的权限给角色ro1,并将角色授予u1。(6分)
优质解答
  1. create user u1 indentified by password;

  2. grant connect to u1;

  3. grant select on scott.emp to u1l

  4. create role ro1 identified by oracle;

  5. grant create view to ro1;

  6. grant ro1 to u1;

  1. create user u1 indentified by password;

  2. grant connect to u1;

  3. grant select on scott.emp to u1l

  4. create role ro1 identified by oracle;

  5. grant create view to ro1;

  6. grant ro1 to u1;

相关问答