1: SQL817> help desc DESCRIBE
 -------- Lists the column definitions for a table, view, or synonym,
 or the specifications for a function or procedure. DESC[RIBE] {[schema.]object[@database_link_name]}
这个DESC是SQL PLUS中的命令,不是PL/SQL的语法。select column_name from user_tab_columns
  where UPPER(table_name)=UPPER(your_tablename);2:一般是你的tnsnames.ora没配置好