本帖最后由 zyzy68 于 2013-01-08 18:28:32 编辑

解决方案 »

  1.   

    创建用户
    create user [username] identified by [password];
    用户授权:
    grant connect,resource to [username];
    其他的按需要弄吧
      

  2.   

    先把concepts里面的用户管理那章大致读一遍
    另外,1楼的resource角色很危险!其含quota unlimited tablespace:
    revoke unlimited tablespace from username;
    alter user username quota unlimited on tablespace_name;
      

  3.   

    创建表空间
    建立用户
    授予权限使用plsqldeveloper搞就可以了,本身用的人不是很多,完全胜任.
      

  4.   


    先创建一个表空间,再创建用户abc,要给用户指定表空间,最后赋予该用户的权限。
    CREATE TABLESPACE "abc_TAB" 
        LOGGING 
        DATAFILE 'E:\abc_TAB.ora' SIZE 100M 
        AUTOEXTEND 
        ON NEXT  100M MAXSIZE UNLIMITED EXTENT MANAGEMENT LOCAL 
        SEGMENT SPACE MANAGEMENT  AUTO ;CREATE USER abc  PROFILE DEFAULT 
        IDENTIFIED BY abc DEFAULT TABLESPACE abc_TAB
        TEMPORARY TABLESPACE TEMP 
        QUOTA UNLIMITED 
        ON abc_TAB 
        QUOTA UNLIMITED 
        ON abc_TAB 
        ACCOUNT UNLOCK;grant connect to abc with admin option;
    grant resource to abc with admin option; 
    grant create table to abc;
    grant create procedure to abc;
    grant create public synonym to abc;
    grant create view to abc;
    grant drop public synonym to abc;
    grant grant any privilege to abc;
    grant select any table to abc with admin option;
    grant unlimited tablespace to abc with admin option;
      

  5.   

    下载一个pl/sql,有界面管理的,先用管理员账号进去,然后新建用户,赋予dba角色即可
      

  6.   

    请问 表空间用oracle11g 默认带的那几个的其中一个行么?行的话用哪个?
    SYSTEM
    SYSAUX
    UNDOTBS1
    TEMP
    USERS
    EXAMPLE
      

  7.   


    默认表空间是system表空间,,你可以指定users表空间。