`
myCsdn_taoge
  • 浏览: 38610 次
  • 性别: Icon_minigender_1
  • 来自: 沈阳
文章分类
社区版块
存档分类
最新评论

oracle 通过dbLink 获取blob 字段解决方案

阅读更多
-------创建虚拟表
create global temporary table  temp(
     id   int,
     X    blob
) 
on commit delete rows;

2. 执行 将数据保存在本地临时表中

insert into temp select id,msg from msg_bak;

 3.查询本地blob 类型数据

select X from temp

 4. 当commit 后数据自动删除,解决查询远端bolo 类型的问题

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics