-- Create the user 
create user zjwenzhou
  identified by "xyz"
  default tablespace SYSTEM
  temporary tablespace TEMP
  profile DEFAULT;
-- Grant/Revoke object privileges 
grant execute on DBMS_ALERT to zjwenzhou;
grant execute on DBMS_AQ to zjwenzhou with grant option;
grant execute on DBMS_AQADM to zjwenzhou with grant option;
grant execute on DBMS_AQELM to zjwenzhou with grant option;
grant execute on DBMS_AQ_IMPORT_INTERNAL to zjwenzhou with grant option;
grant execute on DBMS_DEFER_IMPORT_INTERNAL to zjwenzhou;
grant execute on DBMS_REPCAT to zjwenzhou;
grant execute on DBMS_RULE_EXIMP to zjwenzhou with grant option;
grant execute on DBMS_SYS_ERROR to zjwenzhou;
grant execute on DBMS_TRANSFORM_EXIMP to zjwenzhou with grant option;
grant select, insert, update, delete, references, alter, index on INCEXP to zjwenzhou;
grant select, insert, update, delete, references, alter, index on INCFIL to zjwenzhou;
grant select, insert, update, delete, references, alter, index on INCVID to zjwenzhou;
-- Grant/Revoke role privileges 
grant aq_administrator_role to zjwenzhou with admin option;
grant dba to zjwenzhou with admin option;
grant sales_history_role to zjwenzhou with admin option;
-- Grant/Revoke system privileges 
grant unlimited tablespace to zjwenzhou with admin option;用sqlplus登陆,只能以sysdba登陆.
这个用户的权限和system差不多,我是根据system用户来创建的,system可以以normal登陆,而这个用户不行.我想问一下这是为什么?