1、临时表空间是作为临时数据使用的
2、一个表只能是属于一个用户,一个用户只能有一个数据表空间和一个临时表
  空间,一个表空间可以拥有多个数据文件,一个数据文件只能属于一个表
  空间。
3、用wxc1登陆可以看到wxc2的表,要加前缀如wxc2.table
4、wxc1可以使用wxc2的表,如 select * from wxc2.table;

解决方案 »

  1.   

    可以
    用wxc1登录
    grant select on tablename to wxc2;
    用wxc2登录
    grant select on tablename to wxc1;
    例:
    select * from  wxc2.tbname;
      

  2.   

    3 kinds of tablespace:  Normal Tablespace (like System , User_data etc ) store the table data and oracle system tables .   Rollback Tablespace : stoer rollback segment , Only will be used at time of transaction.  Temporary tablespace : If the sorting (order by , union etc) calculation  takes memory more than sort_areo_size , Oracle will use temporary tablespace to perform the sorting .