ORACLE11GXMLTYPE迁移切换
xmltype 迁移切换的过程 着实让我郁闷了很久,但是最终解决还是好的,方案已经验证OK了,
针对 xmltype的表 导出的时候有诸多的限制,因为xml的内容格式还是比较多样,oracle 官方也经常修修补补,但还是有漏网之鱼,所以 以后想要迁移xmltype的表,优先建议的步骤是:
一、先转成clob字段,
例如: create table xxx_clob_tab as select t.xmltypecol.getclobval() xxx_clob from sourceXMLTab
二、expdp/impdp the xxx_clob
三、convert to xmltype
注意:在转换之前必须建创建的session 设置一下:
本文题目:ORACLE11GXMLTYPE迁移切换
链接URL:http://abwzjs.com/article/pceigo.html
针对 xmltype的表 导出的时候有诸多的限制,因为xml的内容格式还是比较多样,oracle 官方也经常修修补补,但还是有漏网之鱼,所以 以后想要迁移xmltype的表,优先建议的步骤是:
一、先转成clob字段,
例如: create table xxx_clob_tab as select t.xmltypecol.getclobval() xxx_clob from sourceXMLTab
二、expdp/impdp the xxx_clob
三、convert to xmltype
注意:在转换之前必须建创建的session 设置一下:
Disable BINARY XML storage and switch to CLOB based storage. The following event can be set at the destination host:
1、alter system set
events '31156 trace name context forever, level 0x400';
then covert it to xmltype
2 、create table xxx_xml
as select sys.xmltype.createXML(clob column) as xmlcol from xxx_clob_tab
创新互联公司是一家专业从事网站制作、网站建设、网页设计的品牌网络公司。如今是成都地区具影响力的网站设计公司,作为专业的成都网站建设公司,创新互联公司依托强大的技术实力、以及多年的网站运营经验,为您提供专业的成都网站建设、营销型网站建设及网站设计开发服务!
本文题目:ORACLE11GXMLTYPE迁移切换
链接URL:http://abwzjs.com/article/pceigo.html