在Oracle中
怎样将自己创建的用户 和 自己创建的表空间 关联起来???

解决方案 »

  1.   

    alter user user_name default tablespace tablespace_name ?
      

  2.   


     alter user user_name default tablepace tablespace_name
      

  3.   

    create user user_name identified by user_psw
    default tablepace tablespace_name1
    temporary tablepace tablespace_name2
    quota 10m on tablespace_name1
      

  4.   

    使用 Oracle 里面的Enterprise Manager Console 来重建一个表或者是第三方工具来创建就可以知道里面的写法了。