ORCALE 9i,windows xp系统,在客户端登录后,执行SQL/PLUS语句总是出错,
“ERROR 位于第 1 行:
ORA-00933: Message 933 not found; No message file for product=RDBMS,
facility=ORA”
语句肯定没问题,不知为何?是否权限不够?

解决方案 »

  1.   

    补充一下:在客户端用SYS以DBA的身份登录服务器,可以手工的创建表或添加数据等等操作,但以同样的用户和身份连接SQL*PLUS WORKSHEET后执行就会出现该问题,无法使用查询创建表等。
      

  2.   

    ORA-00931 missing identifierCause: The specified string does not contain an identifier.Action: Correct the string argument.
      

  3.   

    sq/plsu版本太低,你可以用command窗口,执行SQL语句
      

  4.   

    ORA-00923   FROM   keyword   not   found   where   expected Cause:   In   a   SELECT   or   REVOKE   statement,   the   keyword   FROM   was   either   missing,   misplaced,   or   misspelled.   The   keyword   FROM   must   follow   the   last   selected   item   in   a   SELECT   statement   or   the   privileges   in   a   REVOKE   statement. Action:   Correct   the   syntax.   Insert   the   keyword   FROM   where   appropriate.   The   SELECT   list   itself   also   may   be   in   error.   If   quotation   s   were   used   in   an   alias,   check   that   double   quotation   s   enclose   the   alias.   Also,   check   to   see   if   a   reserved   word   was   used   as   an   alias.