see table/view:
user_objects,user_tables,tab,cat

解决方案 »

  1.   

    SQL> select object_name from all_objects where object_Type ='TABLE' and owner='
    COTT' ;OBJECT_NAME
    ------------------------------
    ACCOUNT
    BONUS
    DEPT
    DJ_APP
    EMP
    P
    PP
    PUMA
    RECEIPT
    SALGRADE
    TEST1OBJECT_NAME
    ------------------------------
    TPUMA已选择12行。有很多方法的。
      

  2.   

    你也可以用这个用户登陆,然后select * from cat/tab/user_table;
      

  3.   

    to 楼上:
    应该是select * from user_tables;
      

  4.   

    select * from all_tables where owner ='user_name'