程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> SqlServer數據庫 >> 關於SqlServer >> SQL 2005對xml文件與xml數據的操作

SQL 2005對xml文件與xml數據的操作

編輯:關於SqlServer

由於數據庫對xml數據直接處理有很多優勢,05也對這方面加強了功能。

但這方面資料少,所以自己做了一些總結,希望會給大家帶來幫助

--charry0110(曉風殘月)

--用SQL多條可以將多條數據組成一棵XML樹L一次插入

--將XML樹作為varchar參數傳入用

--insert xx select xxx from openxml() 的語法插入數據

-----------------------------------導入,導出xml--------------------------

--1導入實例

--單個表

--charry0110(曉風殘月)
create table Xmltable(Name nvarchar(20),Nowtime nvarchar(20))
declare @s as nvarchar(2000);
set @s = N'
<Xmltables>
      <Xmltable Name="1" Nowtime="1900-1-1">0</Xmltable>
      <Xmltable Name="2" Nowtime="1900-1-1">0</Xmltable>
      <Xmltable Name="3" Nowtime="1900-1-1">0</Xmltable>
      <Xmltable Name="4" Nowtime="1900-1-1">0</Xmltable>
      <Xmltable Name="5" Nowtime="1900-1-1">0</Xmltable>
</Xmltables>';
declare @idHandle as int ;
EXEC sp_xml_preparedocument @idHandle OUTPUT, @s
insert into Xmltable(Name,Nowtime)
select * from openxml(@idHandle,N'/Xmltables/Xmltable')
with dbo.xmltable
EXEC sp_xml_removedocument @idHandle
select * from Xmltable

-----------------------讀入第二個表數據--------------------

create table Xmlta(Name nvarchar(20),Nowtime nvarchar(20))
declare @s as nvarchar(4000);
set @s =N'
<Xmltables>
    <Xmltb Name="6" Nowtime="1900-2-1">0</Xmltable>
    <Xmlta Name="11" Nowtime="1900-2-1">0</Xmlta>
</Xmltables>
';
declare @idHandle as int ;
EXEC sp_xml_preparedocument @idHandle OUTPUT, @s
insert into Xmlta(Name,Nowtime)
select * from openxml(@idHandle,N'/Xmltables/Xmlta')
with dbo.xmlta
EXEC sp_xml_removedocument @idHandle
select * from Xmlta
drop table Xmlta

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved