日期:2014-05-17  浏览次数:20786 次

oracle客户端登录
客户端,用sql plus可以登录,用pl/sql工具也可以登录。但是如果用oracle enterprise manager console的话,sys用户没有问题,其他的用户则提示:ora-00942:表或者视图不存在。
建立的用户的语句是:

create tablespace test datafile 'c:\oracle\oradata\test.ora' size 100m
reuse autoextend on next 100m maxsize 2000m online;

create user test identified by test default tablespace test 
quota unlimited on test ;

grant resource,connect to test;
grant create table,create view,select any table,create sequence,
create trigger,create procedure,create role,grant any privilege,
drop any role,create public synonym,drop public synonym to test;




------解决方案--------------------
你输入什么命令时提示表和视图不存在?
------解决方案--------------------
可能是没赋权限