select table_name from all_tables
select table_name from cat

解决方案 »

  1.   

    SELECT OWNER,TABLE_NAME FROM ALL_TABLES WHERE TABLESPACE_NAME=UPPER('&TS');
      

  2.   

    SELECT DISTINCT t.segment_name FROM dba_extents t WHERE t.segment_type = 'TABLE' AND t.tablespace_name = 'SYSTEM'
      

  3.   

    打开pl/sql2000 研究下 就可以找到all_tables 其他问题解决类似
      

  4.   

    select * from all_tables where tablespace_name = '表空间'