查系统表,count一下,
select count(*) from SYS.ALL_TABLE where table_name = 'yourTableName'

解决方案 »

  1.   

    查Test
    select count(*) from all_tables where table_name = UPPER('Test');
      

  2.   

    select * from tabs where table_name = 'TableName'
      

  3.   

    select count(*) from all_tables where table_name='your table name';
      

  4.   

    呵呵,都可:
    select count(*) from tab where table_name='Test';                 //是表tab
    select count(*) from all_tables where table_name = UPPER('Test'); //表名在系统表中是大写
      

  5.   

    根据数据字典来查
    注意以下区别:
    dba_tables:数据库中所有的表
    all_tables:当前用户可以访问到的所有的表
    user_tables:当前用户自己创建的表
      

  6.   

    补充
    user_objects; 
    cat;