2006-12-28 16:14
roartiger
请指教!
用update更新表后,再次用同一语句的同一内容更新表,居然报'Error 45 initializing SQL*Plus Internal error',不知道高手是否碰到过!(个人感觉是sqlplus环境有问题)
2006-12-28 22:35
boypoo
[quote]
SQL> create table boypoo (id number not null,name varchar2(10));
表已创建。
SQL> insert into boypoo values(1,'frank');
已创建 1 行。
SQL> commit;
提交完成。
SQL> update boypoo set id=2 where id=1;
已更新 1 行。
SQL> update boypoo set id=2 where id=1;
已更新0行。
SQL> update boypoo set id=2 where id=1;
已更新0行。
[/quote]
如此般演示翻,别人才能更清楚你的问题