当您遇到Oracle数据库中的错误“ORA-00933: SQL command not properly ended”时,这通常指示SQL语句的语法或结构存在问题,导致Oracle无法正确解析和执行该语句。以下是一些具体的步骤和建议,帮助您解决这个问题: 1. 确认SQL语句的完整性 确保您的SQL语句包含了所有必要的部分,比如SELECT、INSERT、UPDATE、DELETE等关键字...
5.在SELECT语句表之间忘记了逗号, 6.在Oracle 8i中使用INNER JOIN或类似的关键词(这些是在Oracle 9i中实现的) 7.遗漏逗号,遗漏括号,子语句使用错误 ... 比较好的博客有How To Resolve ORA-00933 SQL Command Not Properly Ended 可以说这个问题产生的原因五花八门 我的问题也很奇怪,我使用Navicat直连数据库,并...
whereb.ID='{4589EEC4-9E7F-4CBF-947E-8D47FDE325AC}'and(fno<>ReferenceNum); 在ORALCE中这样会报错:ORA-00933: SQL command not properly ended --> ORA-00933: SQL command not properly ended updateb_dispatchsetReferenceNum=( casewhenNVL(fno,' ')=' 'thenfnowhenfno='〔〕'then''elsereplace...
Oracle Communications Order and Service Management - Version 7.0.3 and laterInformation in this document applies to any platform.SymptomsIn OSM 7.0.3.16 and the user receive the error "SQL command not properly ended" when configure your Worklist Preferences.To reproduce the error:1) Deploy the att...
Oracle : ORA 00933: SQL command not properly ended 基于这个报错,网上有很多答案,包括: 1.在INSERT语句中使用了JOIN或者ORDER BY 2.在UPDATE语句中使用了JOIN 3.在DELETE语句中使用了ORDER BY 4.在SELECT语句中使用了UNION或UNION ALL,并且在非结尾的地方使用了ORDER BY...
Eclipse,Oracle 方法/步骤 1 写程序时,有一条查询语句,一运行报错了,错误内容:java.sql.SQLSyntaxErrorException: ORA-00933: SQL command not properly ended 2 用Oracle客户端又执行了一下这个语句,也是相同的错误。大概意思应该是SQL命令有不正确的结尾。3 仔细看了一下SQL语句,果然是在两个条件之间少了一...
ORA-00933: SQL command not properly ended SQL> alter system set events '10035 trace name context off'; System altered. 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 就可以在alert日志中,看到如下信息,error=933,就是ORA-00933,第二行的SQL,就是要找的, ...
ORA-00933,意思是“SQL command not properly ended”,明显是SQL的语法出现错误,但是现在的问题,就是如何找到错误的SQL? 第一种考虑,能不能从数据字典视图中找到? 我们执行如下这两条SQL,第一条是错误的,提示ORA-00933,第二条是正确的, SQL>selectobject_idfromt whe...
When trying to explain a query on an Oracle backend, the function errors as follows: library(DBI) library(dplyr) library(dbplyr) library(ROracle) con <- dbConnect(dbDriver("Oracle"), "PDB", username = "USER" password = "PWD") tbl(con, in...
UPDATEASETID=(SELECTIDFROMBWHEREA.NAME=B.NAME ) 参考: 1:http://stackoverflow.com/questions/8940471/sql-error-ora-00933-sql-command-not-properly-ended 2:http://docs.oracle.com/cd/E11882_01/server.112/e26088/statements_10008.htm#SQLRF01708...