select table_name from user_tables where table_name='tablename';

解决方案 »

  1.   

    select * from tab where table_name='your_table';
      

  2.   

    select table_name from user_tables where table_name='tablename';不存在就自然没记录啊
      

  3.   

    不行啊,你们在sql plus中试过吗?
      

  4.   

    表名要大写。而且要用tom用户登录,才可以用user_tables视图。当然了,你也可以dba_tables视图,单要制定owner_name='TOM'
      

  5.   

    sorry:
    select * from tab where tname='your_table';
      

  6.   

    select * from tab where tname='YOUR_TABLE';
    你的表名一定要大写。
      

  7.   

    CONNECT INTERNAL
    SELECT OWNER,TABLE_NAME FROM DBA_TABLES WHERE OWNER='tom' and table_name='table';
      

  8.   

    select table_name from user_tables where table_name='YOUTABLE';
      

  9.   

    select table_name from all_tables where owner='USERNAME' and table_name='YOURTABLE';
      

  10.   

    desc lemotan.pets;
    其中lemotan是你的方案名字,pets是你的表名字。
      

  11.   

    在SQL*PLUS中先连到该用户
    然后用命令:desc tablename;