select table_name ,tablespace_name 
from user_tables
where table_name='.. '

解决方案 »

  1.   

    到user_table中找
    select table_name ,tablespace_name 
    from user_tables
    where table_name=' '
      

  2.   

    以哪个用户登陆,就以哪个用户default空间
      

  3.   

    SQL> select table_name ,tablespace_name
      2  from user_tables
      3  where table_name='BAO_TEMP'
      4  /TABLE_NAME                     TABLESPACE_NAME
    ------------------------------ ------------------------------
    BAO_TEMP                       USER_DATA
      

  4.   

    SQL>conn sys/password as sysdba
    SQL>select table_name,tablespace_name 
    SQL>from dba_table
    SQL>where table_name='YOUR_TABLE_NAME'
    一般来讲,以哪个用户登录创建的表,
    该表就在该用户所属的默认表空间.