Log in
::
Register
::
Not logged in
Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us
Articles with tag
xml
Search for
any
content tagged
xml
<< Previous 20
Items 41 to 60 of 191
Next 20 >>
XML Workshop 26 ā SELECT * FROM XML
This article presents a generic function that makes it easy to query XML documents
Read more...
By
Jacob Sebastian
2010/06/30
|
Source:
SQLServerCentral.com
|
Category:
xquery
Rating:
|
Discuss
|
Briefcase
|
11,778 reads
Generating a Distinct Delimited List Using XML
Generating an ordered, distinct, delimited string using ROW_NUMBER() and FOR XML PATH.
Read more...
By
Puja Shah
2010/06/29
|
Source:
SQLServerCentral.com
|
Category:
for xml path
Rating:
|
Discuss
|
Briefcase
|
7,050 reads
Creating XML in SQL Server
XML has become a common form of representing and exchanging data in today's information age. SQL Server introduced XML-centric capabilities in SQL Server 2000. That functionality has been expanded in later releases. One aspect of working with XML is creating XML from relational data, which is accomplished utilizing the FOR XML clause in SQL Server.
Read more...
By
Additional Articles
2010/06/22
|
Source:
Database Journal
|
Category:
xml
Rating:
(not yet rated)
Rate this
|
Briefcase
|
4,188 reads
SQL Server and the XML Data Type : Data Manipulation
The introduction of the xml data type, with its own set of methods for processing xml data, made it possible for SQL Server developers to create columns and variables of the type xml. Deanna Dicken examines the modify() method, which provides for data manipulation of the XML data stored in the xml data type via XML DML statements.
Read more...
By
Additional Articles
2010/06/08
|
Source:
Database Journal
|
Category:
xml
Rating:
Rate this
|
Briefcase
|
2,963 reads
Hello SSIS World, From XML!
This article brings us an SSIS package that reads an XML file and sequentially displays each XML record in a MessageBox before inserting it into a staging table. You can use this to get XML data into your SQL Server database for further processing.
Read more...
By
Stan Kulp
2010/04/13
|
Source:
SQLServerCentral.com
|
Category:
integration services (ssis)
Rating:
|
Discuss
|
Briefcase
|
9,147 reads
XML Workshop 25 - Inserting elements and attributes to an XML document
This article from MVP Jacob Sebastian looks at the modify method for changing an XML document.
Read more...
By
Jacob Sebastian
2010/03/18
|
Source:
SQLServerCentral.com
|
Category:
xml
Rating:
|
Discuss
|
Briefcase
|
7,072 reads
Ten Problems with XQuery and the SQL/XML Standard
XQuery and SQL/XML standard are processors for XML. SQL/XML was designed to try to match the capabilities of XQuery as closely as possible and XQuery was designed not only to support XML, but also to support relational processing. Read on to learn why this may have a negative influence on their capabilities.
Read more...
By
Additional Articles
2010/03/02
|
Source:
Database Journal
|
Category:
xml
Rating:
(not yet rated)
Rate this
|
Briefcase
|
2,323 reads
Using T-SQL to Transform XML Data to a Relational Format
More and more data is being stored or transmitted in an XML format. New author Nasir Mirza brings us an article that examines how to transform a number of XML structures into different relational formats for storage in SQL Server.
Read more...
By
Nasir Mirza
2009/12/30
|
Source:
SQLServerCentral.com
|
Category:
t-sql
Rating:
|
Discuss
|
Briefcase
|
11,416 reads
Using XML to pass and return values to procs
Tips on parsing and sculpting XML from within a SQL 2005 stored procedure
Read more...
By
Steve McRoberts
2009/10/19
|
Source:
SQLServerCentral.com
|
Category:
xml
Rating:
|
Discuss
|
Briefcase
|
9,926 reads
Sparse Columns ā ConvertSVtoXML & XMLToResv
Not very often I run across something with zero matches in a search engine, but had it happen recently. I had set up a simple demo of a sparse column set and happened to look at the execution plan, was interested to see that the Compute Scalar was backed by ConvertSVtoXML. This was on a select from a table with one row, and then, being a little more curious, updated it with an xml fragment I saw a call to ConvertXMLtoResv. Iād venture that those serve to convert back/forth from XML storage.
Read more...
By
Andy Warren
2009/10/15
|
Source:
SQLServerCentral.com
|
Category:
blogs
Rating:
(not yet rated)
Rate this
|
Briefcase
|
746 reads
Explore XML Data Type in SQL Server
SQL Server 2005 and 2008 provide native XML data type and provides extensive support for XML data processing. The easy conversion from XML to a relational table provides a way for set-based updates based on user input.
Read more...
By
Additional Articles
2009/10/01
|
Source:
Database Journal
|
Category:
xml
Rating:
Rate this
|
Briefcase
|
3,632 reads
Sending multiple rows to the Database from an Application: Part II
In part 2 of this series, Mohd Nizamuddin looks at sending multiple rows to the database from an application using XML.
Read more...
By
Mohd Nizamuddin
2010/10/22 (first published: 2009/08/25)
|
Source:
SQLServerCentral.com
|
Category:
t-sql
Rating:
|
Discuss
|
Briefcase
|
17,838 reads
The Ghost in the Machine
Now that hierarchical data structures are popular again because of XML, their full hierarchical processing is still being limited to flat two dimensional linear path processing by relational processing. This will change when database professionals realize that ANSI SQL relational processing can now support full multipath nonlinear hierarchical processing.
Read more...
By
Additional Articles
2009/08/25
|
Source:
TDAN
|
Category:
xml
Rating:
Rate this
|
Briefcase
|
3,140 reads
Sending multiple rows to the Database from an Application: Part I
New author Mohd Nizamuddin brings us the start of a series that talks abuot how you can send multiple rows to the database from an application.
Read more...
By
Mohd Nizamuddin
2010/10/15 (first published: 2009/08/18)
|
Source:
SQLServerCentral.com
|
Category:
comma seperated
Rating:
|
Discuss
|
Briefcase
|
27,216 reads
Gain Space Using XML data type
This article is an attempt to explain the application of new XML support in SQL Server 2005 for efficient data storage and performance.
Read more...
By
Satish More
2009/08/04
|
Source:
SQLServerCentral.com
|
Category:
xml
Rating:
|
Discuss
|
Briefcase
|
3,889 reads
XML Workshop 24 - Modifying XML Documents Using XQuery Part 1
This next few installments of this series from MVP Jacob Sebastian will deal with how to modify XML documents. Part 1 looks at XQUERY.
Read more...
By
Jacob Sebastian
2009/07/22
|
Source:
SQLServerCentral.com
|
Category:
xml
Rating:
|
Discuss
|
Briefcase
|
6,430 reads
A Generic Process to Convert XML Data - Part 2
Continuing with his series on loading and transforming XML data, Leo Peysakhovich shows how to create the generic process to perform the convesions.
Read more...
By
Leo Peysakhovich
2009/07/10 (first published: 2008/08/26)
|
Source:
SQLServerCentral.com
|
Category:
xml
Rating:
|
Discuss
|
Briefcase
|
12,567 reads
The New Reality of an Audit Trail
With a continuation of his last article on auditing, Leo Peysakhovich enhances his solution to capture more details using XML.
Read more...
By
Leo Peysakhovich
2009/07/08
|
Source:
SQLServerCentral.com
|
Category:
auditing
Rating:
|
Discuss
|
Briefcase
|
6,045 reads
A Generic Process to Convert XML Data - Part 1
Longtime author Leo Peysakhovich brings us a new series on converting XML data into regular data. This article examines validating the XML data against a schema.
Read more...
By
Leo Peysakhovich
2009/07/03 (first published: 2008/08/25)
|
Source:
SQLServerCentral.com
|
Category:
xml
Rating:
|
Discuss
|
Briefcase
|
16,115 reads
Split string using XML
Learn how you can split a delimited string in a single query using XML with Divya Agrawal.
Read more...
By
Divya Agrawal
2009/06/25
|
Source:
SQLServerCentral.com
|
Category:
xml
Rating:
|
Discuss
|
Briefcase
|
10,682 reads
<< Previous 20
Items 41 to 60 of 191
Next 20 >>
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved.
Privacy Policy.
Terms of Use.
Report Abuse.