随笔分类 -  oracle

摘要:merge into tableA a using( SELECT a,b,c from tableB ) b on (a.id = b.id)//这里一定要用括号包起来.... when matched then update set a.a=b.a, a.b= b.b, a.c= b.c 阅读全文
posted @ 2022-08-10 11:17 SimpleSmile 阅读(916) 评论(0) 推荐(0)
摘要:环境:由于数据库更换,做数据同步,提示 too long 问题,导致一直无法同步完数据。 经排查 oracle 历史数据库版本: Oracle Database 12c Standard Edition Release 12.2.0.1.0 - 64bit Production 新的数据库版本:Or 阅读全文
posted @ 2022-05-24 09:10 SimpleSmile 阅读(1885) 评论(0) 推荐(0)