标题: oracle 权限问题 急。---更近一步的问题 [打印本页] 作者: hxr2000 时间: 2004-02-20 17:17 标题: oracle 权限问题 急。---更近一步的问题 1 -- Create the user
create user WPDS
identified by
default tablespace SYSTEM
temporary tablespace TEMP
profile DEFAULT;
-- Grant/Revoke object privileges
grant select, update on SCA to WPDS;
-- Grant/Revoke role privileges
grant connect to WPDS;
grant resource to WPDS;
-- Grant/Revoke system privileges
grant select any table to WPDS;
grant update any table to WPDS;
2.用wpds登陆没有问题,sca表是system用户建的。
在执行select * from system.sca可以。但是执行select * from sca
提示:ORA-00942: table or view does not exist
我要在SQL不要system,我应该如何做?