或者任何判断是系统表还是用户表
用Sql?

解决方案 »

  1.   

    select table_name from user_tables;
      

  2.   

    楼主是这个意思吗?select * from all_tables a where a.table_name not like '%$%'
      

  3.   

    select table_name from user_tables;
      

  4.   

    select table_name from user_tables?
    好像不对,选出的是用户表空间的表名
      

  5.   

    登陆的时候选择 normal 就可以了
      

  6.   

    select table_name from all_users where owner not 
    in ('SYS','SYSTEM','SCOTT',...);
      

  7.   

    登陆选择 normal 
    select table_name from user_tables;
      

  8.   

    select * from tab where tabtype='TABLE'
      

  9.   

    select table_name from user_tables;