create user testother identified by 密码。
grant create session,create table,create view to testother

解决方案 »

  1.   

    create user username identified by password;
    授权:
    grant create session,create table ... view to username;
    撤权:
    revoke 权限... from username;
      

  2.   

    CREATE USER:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_84a.htm#SQLRF01503grant:
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_912a.htm#SQLRF01603
      

  3.   

    create user ... identified by 密码;
    grant create session,create table,create view,select all tables…… to ...
    不知道楼主是不是就是求这两条语句
      

  4.   

    oracle是先建用户,再建数据库?是在用户下创建表吧
      

  5.   

    但是建完用户,没有数据库。
    ----------------------
    不可能,没有数据库怎么可以建用户。
    高级用户授予权限.grant resource to user;
    普通用户授予权限。grant select any table to user
      

  6.   

    create user testother identified by passwordgrant select,update,delete,insert,any table to testothergrant execute any source to testothergrant select,update,delete,insert,any view to testother
      

  7.   

    可能是我没有问明白,我现在已经有一个test用户,并且在test用户下有一个test数据库,
    我想在test数据库上建立一个testother的用户,我已经建完了一个testother的用户,可是我以testother登陆没有看到test数据库的表,我该怎么办