


全文预览已结束
下载本文档
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
SQL2005 XML存储过程应用1 OPENXML (memory intensive)OPENXML is a SQL Server function, which accepts a stream of XML data and provides an in-memory relational rowset view of the XML data.-参数示例 类型可以是XML或者字符类型,如VARCHAR(8000),VARCHAR(MAX)等DECLARE a XMLSET a= -存储过程示例CREATE PROCEDURE dbo.usp_InsertShoppingCartOrder ( xml XML ) AS BEGIN SET NOCOUNT ONDECLARE Pointer INT EXECUTE sp_xml_preparedocument Pointer OUTPUT,xml INSERT INTO WebSales(ProductID,SalePrice,SaleDate,SaleBatchID,CustomerID)SELECT ProductID,Price,SaleDate,SaleBatchID,CustomerIDFROM OPENXML (Pointer,/ShoppingCart/Purchase) WITH ( ProductID INT, Price MONEY,SaleDate SMALLDATETIME,SaleBatchID INT,CustomerID INT ) EXEC sp_xml_removedocument Pointer SET NOCOUNT OFFENDWe then must call the system stored procedure sp_xml_preparedocument, which creates an in-memory representation of the xml document, which it also accepts as a parameter. Once we have the memory pointer to the XML variable, we can call OPENXML, which you may do with several different parameters that give you very granular control over the result set of the XML data.We are providing the pointer to the XML document, along with an XPATH query that identifies the nodes in the XML data we wish to return. The WITH clause of the OPENXML function allows you to specify the rowset format that you wish to be returned. Once we insert into our WebSales table, we call the sp_xml_removedocument system stored procedure to clean our XML data from SQL Servers memory.或者可以把输入的XML数据插入不同的表OPENXML的缺点:OPENXML is very memory intensive. The pointer returned by the system stored procedure sp_xml_preparedocument is a memory pointer to a COM XML document object model. So, you must be careful not to load large XML documents into memory with OPENXML because it may overload your servers memory.2. XQuery (可解决OPENXML的缺点)What is XQuery?XQuery, also known as XML Query, is a language designed to query XML data, allowing you to extract nodes and elements as needed. It is defined by the W3C, and is available for use in todays most popular database engines, such as Oracle, DB2, and SQL Server.xml.existThis method returns a Boolean value based upon a search expression on an XML nodeDECLARE x XMLSET x = SELECT x.exist(/christmaslist/persongift = socks)-返回 1SELECT x.exist(/christmaslist/persongift = Socks)-返回 0SELECT x. exist (/christmaslist/zach)-返回 0xml.valueThis method accepts an XQuery statement and returns a single value.SELECT x.value(/christmaslist1/person1/name, VARCHAR(20)-返回 bettySELECT x.value(/christmaslist1/person2/name, VARCHAR(20)-返回 zachxml.queryThis method accepts an XQuery statement and returns an instance of the XML data type. These queries can be as simple or as complex as necessary.SELECT x.query(/christmaslist/person)-返回 xml.nodesThis method is very useful when you need to shred the data from an XML data type variable into relational data. This method accepts an XQuery statement as a parameter and returns a rowset that contains logical scalar data from the XML variable.SELECT x.query(/christmaslist/person) SELECT Table1.Column1.value(name,VARCHAR(20)FROM x.nodes(/christmaslist/person) as Table1(Column1)-返回 betty zach brad-存储过程示例CREATE PROCEDURE dbo.usp_InsertShoppingCartOrder ( xml XML ) AS BEGINSET NOCOUNT ON INSERT INTO WebSales(ProductID,SalePrice,SaleDate,SaleBatchID,CustomerID) SELECT Table1.Column1.value(ProductID, INT),Table1.Column1.value(Price, FLOAT),Table1.Colum
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 4.2.3合理营养与食品安全教学设计2023-2024学年人教版生物七年级下册
- 第一人民医院2025年实习护生结业理论考试题及答案
- 老年脑卒中患者积极度、自我忽视与功能锻炼依从性的相关性研究
- 早产儿生后低体温预测模型的建立与验证
- 夹具钳工岗前工作实操考核试卷含答案
- 稀土挤压工岗前岗位责任制考核试卷含答案
- 集材作业工安全生产意识评优考核试卷含答案
- 铁路机车制修工发展趋势竞赛考核试卷含答案
- 聚苯胺纳米阵列基复合电极材料的结构设计与水系电化学储能性能
- 河南省联考试卷及答案英语
- 无人机集群协同与对抗技术
- 糖尿病酮症酸中毒课件
- 压力性损伤安全警示教育
- 1248国开电大本科《公共部门人力资源管理》自检自测试题及答案
- 入党申请书专用纸-A4单面打印
- 南方医科大学物理实验激光实验实验报告
- 苏科版八年级物理下册10.4浮力 教学设计
- 《有机化学》课程说课
- 创新创业基础-理论、案例与训练(大学生创新创业教育课程)全套教学课件
- 检验科内部审核报告
- 2023新版养老机构等级评定解读
评论
0/150
提交评论