- 最后登录
- 2018-11-1
- 在线时间
- 377 小时
- 威望
- 29
- 金钱
- 6866
- 注册时间
- 2011-10-12
- 阅读权限
- 200
- 帖子
- 891
- 精华
- 4
- 积分
- 29
- UID
- 1
|
2#
发表于 2011-10-31 18:25:20
出现 ORA-01446 和这里的ROWID因该没有关系- [root@vrh2 ~]# oerr ora 1466
- 01466, 00000, "unable to read data - table definition has changed"
- // *Cause: Query parsed after tbl (or index) change, and executed
- // w/old snapshot
- // *Action: commit (or rollback) transaction, and re-execute
复制代码 Oracle在解析SQL的时候可能会 "补全" select 选择的列- 如SQL语句是:
- select * from maclean;
- 解析时可能变成:
- select t1,t2,t3 from maclean;
复制代码 |
|