Three kinds of methods for inserting XML data in SQL Server 2005

Source: Internet
Author: User
Tags insert sql
server|xml| Insert | Data we know that XML types are added to SQL Server 2005, which means that you can specify a column XML type when you create a table, such as:
CREATE TABLE Customers
(
Name VARCHAR not NULL PRIMARY KEY,
Description XML
)

So how do you insert data into columns of XML type?
There are basically three ways:
1. Use strings directly, such as
INSERT into Customers (FeedName, Feedxml) VALUES
(' Ramon Liu ', ' <description>rich customer</description> ')

2. Use for XML, such as
Go
--declare XML type variable
DECLARE @xmlDoc XML
SET @xmlDoc =
(
SELECT Name, SalesYTD from Sales.salesterritory
For XML AUTO, ROOT (' territories '), ELEMENTS
)
INSERT into Customers (name, description) VALUES
(' Stanley ', @xmlDoc)

3. Use OPENROWSET to load from a file, such as
Go
INSERT into Customers (name, description)
SELECT ' Justin ', xmlData from
(
SELECT * from OPENROWSET
(BULK ' D:\desc.xml ', Single_nclob)
As XmlData
) as feed (xmlData)
Go
SELECT * FROM Customers

Related Article

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.