create table test(id number,name varchar2(20)) tablespace yourtablespace;

解决方案 »

  1.   

    create table AAA
    (
      AAAA NUMBER,
      BBBB VARCHAR2(4)
    )
    tablespace your_tabspace_name
      pctfree 10
      initrans 1
      maxtrans 255
      storage
      (
        initial 64K
        minextents 1
        maxextents unlimited
      );
      

  2.   

    create table(
    col1 number(8,2),
    col2 number(2)
    )
    tablespace aa;
    还有:
    alter user bb default tablesapce aa;
    在bb 下建的表就存在aa;
      

  3.   

    找个Oracle PL/SQL Developer
    很好用,不过老用,人会变懒
      

  4.   

    使用TOAD工具操作数据库非常方便