1. sql语句的问题
 2. 权限问题。sqlserver中很多表的owner都是dbo,而oracle中没有
    dbo这个用户.
 
   查询表的拥有者:
    select owner from all_tables where table_name='大写的表名'   假设查询出来的所有者是用户A   如果用户B要查询这个表:      
     grant select on 表名 to 用户B
     select * from 用户B.表名