博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
sql openxml sp_xml_preparedocument xml 中文乱码
阅读量:6229 次
发布时间:2019-06-21

本文共 574 字,大约阅读时间需要 1 分钟。

DECLARE @xmlText xml ,@idoc int
set @xmlText = (select doc from openrowset(bulk 'C:\Word\SRC\WebApp\Demo\XML\XMLFile.xml',single_blob) as t(doc))
--select @xmlText
EXEC sp_xml_preparedocument @idoc OUTPUT,@xmlText
--insert into TB_TB_Category
-- (Cid, Name, ParentCid)
--select [cid],[name],[parent_cid]
select *
from openxml(@Idoc,'/itemcats_get_response/item_cats/item_cat',2)
With(
[cid] bigint,
[Cis_parent] nvarchar(100),
[name] nvarchar(50),
[parent_cid] bigint
)
--where cid='50000671'
EXEC sp_xml_removedocument @idoc

转载于:https://www.cnblogs.com/ok519/p/3397716.html

你可能感兴趣的文章
iOS中的UIScrollView
查看>>
程序中新建Thread部署到WebSphere中产生的问题
查看>>
vtk学习笔记 --- 显示label之vtkLabelPlacementMapper
查看>>
也谈未来移动设备发展的趋势
查看>>
Hive快速入门
查看>>
时光启程了岁月里所有的狼狈
查看>>
ORA-00119,ORA-00132 错误处理
查看>>
让你永远赢得Popcap bookworm
查看>>
数据库同步和数据库复制技术分析
查看>>
oracle 密码问题
查看>>
019—两道题学会MYSQL多表查询02
查看>>
STM32学习笔记(4):通用定时器基本定时功能
查看>>
MVC 一个简单的MVC框架
查看>>
用户画像——persona分析法
查看>>
第一片51cto博文
查看>>
c++中back_inserter
查看>>
Discuz与Moodle实现同步登录:
查看>>
Linux C语言的定时器使用方法
查看>>
我的友情链接
查看>>
我的友情链接
查看>>