ORA-00933: SQL command not properly ended】的更多相关文章

今天写了一个小的SQL语句类似下面的这句: UPDATE A SET ID=B.ID FROM A,B WHERE A.NAME=B.NAME 在执行时居然报了“ORA-00933: SQL command not properly ended”这个错误提示信息,SQL语句如此简单,不应该出现错误的!但是事实上确实报错了,仔细看了下没发现那里有问题,百度了一下,出现这个错误的情况还是挺多的,当抛出此错误提示信息,代表着SQL语句本身就是有问题的!(ORA-00933:SQL命令没有正确的结束)比…
原文链接:https://www.cnblogs.com/godtrue/p/3784526.html 1:可能SQL语句中关键字前后缺少空格 2:Oracle 给表起别名时,直接在表名的后面空格别名就可以,不需要AS 3:SQL 语句中缺少关键字或者多了某个关键字,比如:AND 4:SQL 语句中缺少关键字或者多了某个标点符号,比如:, 5:数据库不同的版本或不同的数据库支持的SQL的语法规则是不一样的,一句SQL语句在一个数据中是正确的在另一个数据库中未必也正确…
转载:http://www.cnblogs.com/xihuaodc/p/3189257.html  因为之前的Oracle不能用了,所以重新安装了64位的Oracle,安装一路正常 完了之后安装了PL/SQL Developer,连接时提示“SQL*Net not properly installed”错误 解决方法如下: 1.去Oracle官网下载32位的客户端 由于PL/SQL是32位的,所以要用32位的客户端,且版本最好能对应(我的版本:11.2.0.1.0) 地址:http://www…
pl/sql command window基本操作 PL/SQL Developer应用两年了,今天第一次应用command window. command window类似于sqlplus窗口: 1.用Esc键退出到SQL行. 2.调用存储过程:Begin  procedure xxx(); end; 时,先回车到下一行,再/ ,再按enter键,才能执行出结果. 3.调用存储过程前,需要先打开 set serveroutput on 否则执行不出结果. 4.SQL window中调用完存储过…
用Yii2也有一段时间了,发现Yii2 Framework对Database的操作有非常良好的结构和弹性. 接下来介绍三种数据库操作方式. SQL Command Level: // Get DB componet of Application $db = Yii::$app->db; # Get data form SQL execution $ arrData = $db->createCommand('SELECT * FROM table limit 10') ->queryAl…
When the Oracle client software has not been properly installed, you will get an exception when trying to connect: [FireDAC][Phys][Ora]-1309. OCI is not properly installed on this machine (NOE1/INIT) http://docs.embarcadero.com/products/rad_studio/fi…
问题: 在64位机器上了64位的oracle客户端. 然后装上PL/SQL Developer,但是连接oracle老报这个错: Initialization error      SQL*Net not properly installed   OracleHomeKey:        OracleHomeDir: 方法: 1.安装 32位Oracle Client 2. plSQL->工具->首选项->配置Oracle Home和OCI library到安装的Oracle Clie…
We know that there is "commit" in oracle to submit all data in the session and used very common. But there is "/" in sql command line that is special and do not use it in wrong way. "Adding a slash to the end of each statement was…
在PLSQL Developer选择Tools > Preferences > options > 下的如图所示:"Oracle Home" and "OCI Library" Oracle10g装在d:/oracle/ Oracle Home为d:/oracle/product/10.1.0 OCI Library为d:/oracle/product/10.1.0/Db_1/BIN/oci.dll 配置完以后重新启动PLSQL Developer…
各种找资料都不行,最后还是在公司的线上环境中去找不同点配置好的.不多说了,就做了如下配置: 服务器环境是:windows server 2008 64位操作系统 1.电脑系统环境变量PATH增加:x:/db/oracle_64 2.在pl/sql的首选项中,把主目录配置成oracle_x86那个文件夹的路径,把下面的OCI.dll配置成oracle_x86文件夹下的OCI.dll的文件路径(全路径,包含完整文件和后缀) 3.勾选上检查连接(这一步,不知道起没有起作用,反正线上的服务器是勾选的)…