select * from user_tables

解决方案 »

  1.   

    select * from all_tables where owner not in ('SYS','SYSTEM')
      

  2.   

    Select * From All_All_Tables Where owner Not In('SYS','CTXSYS')
      

  3.   

    select * from DBA_objects where object_type='TABLE' AND OWNER=USER_NAME
      

  4.   

    用户登陆后
    select * from tab
    则会列出该用户的表
      

  5.   

    上面的几种都可以实现了.select * from all_tables a where a.owner='USER_NAME'
      

  6.   

    select * from DBA_objects where object_type='TABLE' AND OWNER=USER_NAME
      

  7.   

    Select * From All_All_Tables Where OWNER=Name
      

  8.   

    select * from user_tables
      

  9.   

    赞同 wylwyl1130(落雪山林)和 liuyi8903(西西)其他的都不满足要求