user_tab_cols   字段信息
select * from tab_name

解决方案 »

  1.   

    select * from  user_tab_cols where table_name = '表名大写';
      

  2.   

    1.desc a;
    2.select * from a;
      

  3.   

    a是数据库,不是数据表;比如a中有一个表为a1,在SQL*PLUS中select * from a1说第一行错误;还没试select * from  user_tab_cols where table_name = '表名大写';
    可以查出表中各行的信息吗?
      

  4.   

    首先确定当前a1是属于哪个用户,再用哪个用户登陆,ok!
      

  5.   

    1、用select * from  user_tab_cols where table_name = '表名大写';
    出错说“表或视图不村在”
    2、1.desc a;
       2.select * from a; 确实能看到,但是一堆,看不清楚。TO beckhambobo(beckham) :一个用户有多个库吧,而且用DBA的身份登陆怎么区分呢?
      

  6.   

    一个用户存在多个表,一个库存在多个用户
    假设当前A表是属于user_a用户
    sql>connect user_a/user_a
    sql>select * from  user_tab_cols where table_name = 'A';