create user user_name
identified by user_pass
quota 1000m on default_space
quota 50m on system
profile user_profile
password expire;

解决方案 »

  1.   

    sqlplus /nolog
    connect sys/manager as sysdba;
    create user test identified by test;
    grant dba to test;
    conn test/test;
    create table test(
    code varchar2(10);
    name varchar2(20));
    /
      

  2.   

    使用security manager一样使用鼠标搞掂
      

  3.   

    sql和Oracle不一样,只要在企业管理器中,就可以搞定你说的添加用户和创建表
    在Oracle中,只有写sql或者通过其他的工具来建表,添加用户可以在oracle的安全管理里面作。