Examples of large-capacity Import and Export of XML documents

Source: Internet
Author: User
Example Table

To test example A, you must create the example Table T.

Use tempdbcreate table t (intcol int, xmlcol XML); go
Sample Data File

Before running example A, you must create a UTF-8 encoding file (C: \ samplefolder \ sampledata3.txt) that contains the following example instance that specifies the UTF-8 encoding scheme.

<? XML version = "1.0" encoding = "UTF-8"?> <Root> <productdescription productmodelid = "5"> <summary> some text </Summary> </productdescription> </root>
Example

This example uses insert... select * From OpenRowSet (bulk ...) the single_blob option in the statement imports data from a file named sampledata3.txt and inserts an XML instance into the example table t that contains a single column.

Insert into T (xmlcol) Select * From OpenRowSet (bulk 'C: \ samplefolder \ sampledata3.txt ', single_blob) as X;

Examples of large-capacity Import and Export of XML documents

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.