这里牵扯到2个用户分别为b,c。
b用户建立了一个表student,c用户也建立了一个表student。b和c用户都被赋予了dba的权限:
grant dba to b;
grant dba to c;
那么b用户登录后怎么才能删除c用户下的student。
sys用户应该可以删除c用户下的student表吧!
请赐教!
------解决方案--------------------------------------------------------
drop table c.student;
------解决方案--------------------------------------------------------
drop table c.student;