其实SCOTT就两个权限: CONNECT 和 RESOURCE  create user aaaa identified by pwd ;
grant connect to scott;
grant resource to scott;ok查看某个用户的权限一般在这里
DBA_ROLE_PRIVS 
DBA_SYS_PRIVS 
DBA_TAB_PRIVS

解决方案 »

  1.   

    呵呵,写错了 grant … to aaaa;至于用户下的表结构以及数据,可以使用exp/imp导入exp system/manager file=c:\scott.dmp log=c:\exp_scott.log owner=scottimp system/manager file=c:\scott.dmp log=c:\imp_aaaa.log fromuser=scott touser=aaaa
      

  2.   

    create user aaaa identified by password ;
    grant connect,resource to aaaa;
    一般用户你只要grant这两个权限就可以实现该用户的建,删,改表,和对表的增删改查等基本功能,对于普通用户已经足够了,如果你想有更多的权限,可以查询xinpingf(白开心)说的
    表,用grant语句即可,如果你想有dba的权限,grant sysdba to aaaa