命令没有正常结束,把你的语句贴出来

解决方案 »

  1.   

    因为我运行的是一个可执行程序,无法看到他的语句;而且,这个程序起初还是可以用的。
      

  2.   

    ORA-00933 SQL command not properly ended Cause :
    The SQL statement ends with an inappropriate clause. For example, an  ORDER BY clause may have been included in a CREATE VIEW or INSERT statement. ORDER BY cannot be used to create an ordered view or to insert in a certain order. Also, an improper SQL ending occurs if IN clause is used with only one argument (IN(X), for example). An IN clause must have two or more arguments. Action  :
    Correct the syntax by removing the inappropriate clauses. It may be possible to duplicate the removed clause with another SQL statement. For example, to order the rows of a view, do so when querying the view and not when creating it. This error can also occur in SQL*Forms applications if a continuation line is indented. Check for indented lines and delete these spaces.