我用系统管理员创建表空间JCK,在JCK中创建表ABC,怎么系统提示我表空间JCK无权限

解决方案 »

  1.   

    应该是系统管理员建表空间,然后建用户,并指定用户使用此表空间,最后connect此用户,建表
      

  2.   

    我是新手,如何指定用户使用此表空间(假如表空间为abc),如何connect此用户(假如用户名是tom,密码是123),建表我会,谢谢帮助
      

  3.   

    connect system/??? 
    alter user tom default tablespace abc;
    connect tom/123
      

  4.   

    create user [username] identified by [password]
    default tablespace tablespace_name         
    temporary tablespace [tmp_tablespace];
    这样可以吧
      

  5.   

    你使用的用户有没有赋予connect + resource 角色?