conn system/manager
create user test identified by test tablespace users temporary tablespace temp;
grant select,delete on  tbl to test

解决方案 »

  1.   

    还要 grant create session to test 才行,否则不能连接数据库
      

  2.   

    1、以SYSTEM用户MANAGER密码登陆数据库
    2、建立用户名为TEST密码为TEST,指定使用表空间和临时表空间
    3、赋权SELECT和DELETE给TEST用户
      

  3.   

    原因是在你新建的用戶下面根本沒有建表。怎麼能打開表呢?
    conn username/password
    create table .........
    下面才能對你所建的表進行相應的操作。
      

  4.   

    select * from b.tablename(以a用户登陆,查询b用户建立的表)
      

  5.   

    还要赋予连接connection的权利吧。
    另外为另外一个用户的表创建同义词。