创建2个用户testA和testB,密码为testA、testB,
然后创建一个角色demo,并将建立连接、建表、建视图
及对scott用户的emp表的select等权限赋给该角色,
然后将该角色赋给testA和testB.
create user c##testA identified by testA;
create user c##testB identified by testB;
create role c##demo;
grant create session,create table,create view to c##demo;
grant select on c##scott.emp to c##demo;
grant c##demo to c##testA;
grant c##demo to c##testB;