Skip navigation

Developer .NET UPDATE--XML Support Wrap-Up--January 21, 2005

This Issue Sponsored By
This email newsletter comes to you free and is supported by the following advertisers, who offer products and services that might interest you. Please take a moment to visit these advertisers' Web sites and show your support for Developer .NET UPDATE.

VMware Workstation 4.5
http://ad.doubleclick.net/clk;13384104;8214395;d?http://www.vmware.com/wl/offer/1294/0

Free ASP.NET 2.0 Training CD!
http://ad.doubleclick.net/clk;13384066;8214395;k?http://www.appdev.com/promo/RN00113

Win a Harley at Microsoft ASP.NET Connections
http://ad.doubleclick.net/clk;13384088;8214395;o?http://www.devconnections.com


1. Developer .NET Perspectives

  • XML Support Wrap-Up
  • 2. Announcements

  • Get SQL Server Info on Your Schedule...
  • Get a Free Digital Issue of SQL Server Magazine
  • 3. Resource

  • Featured Thread: Problem with Installing Visual Studio .NET Add-On
  • 4. New and Improved

  • Develop Windows, Web, and Mobile Applications with One Toolset
  • Automate Software Builds

  • Sponsor: VMware Workstation 4.5
    Join the Virtual Revolution--try VMware(R) Workstation now, free! With award-winning VMware Workstation 4.5, you can:

    • Run multiple operating systems simultaneously on a single PC
    • Develop, test, and deploy the most complex networked server-class applications running on Microsoft(R) Windows(R), Linux(R) or Novell(R) NetWare(R) all on a single desktop
    • Spend less time configuring and rebooting, more time developing

    VMware Workstation is powerful virtual machine software for developers and system administrators who want to revolutionize software development, testing and deployment in their enterprise. Essential features include: virtual networking, live snapshots, drag and drop, shared folders and PXE support, making VMware Workstation the most powerful and indispensable tool for enterprise IT developers and system administrators. Get your free trial now!
    http://ad.doubleclick.net/clk;13384104;8214395;d?http://www.vmware.com/wl/offer/1294/0

    1. Developer .NET Perspectives


    by Bill Sheldon, [email protected]

    XML Support Wrap-Up
    This week I'm going to finish up my discussion about XML support in Microsoft SQL Server 2005 by showing you how XML columns integrate with other data in an application database. As I noted in my last article "SQL Server 2005 Provides True Integration of XML Data" (http://www.windowsitpro.com/articles/articleid/45131/45131.html), SQL Server 2005 supports both untyped and typed XML columns. At its core, an XML column is still a string, and when an XML column is untyped, the database engine will accept whatever well-formed XML string you pass in as valid.

    However, typing a column has two benefits. First, a typed column allows SQL Server to validate the individual fields within your XML column. This validation goes beyond just ensuring that your XML elements are ordered and structured correctly. It includes details like ensuring that a column labeled as a decimal value does indeed contain numbers.

    The second benefit relates to the ease in which you can retrieve data. As you probably know, getting data into a table is only half the battle. The second half of the battle is finding and retrieving the data you need. When you use a typed XML column, SQL Server 2005 doesn't need to do as much on-the-fly type conversion to determine whether the decimal value you're querying for in your XML column is in fact a decimal value. Because the typed XML column's fields have already been verified, your query operates more efficiently.

    By the way, you might have noticed that I've taken to consistently referring to the value elements inside of XML as "fields." I do this because, in theory, each column in a relational table has a value, as does each field inside of an XML structure. Similarly, the XML term "element" can refer to an entire subtree as opposed to a single value. Thus, I use the term "field" as a way to identify elements that contain a value while still maintaining a distinction from the term "column" in a relational table.

    Besides typing, you can use primary keys and indexes to enhance the efficiency of querying a table. When you create a new table, you typically create a primary key. The purpose of the primary key is to identify unique entries within the table.

    In addition to the primary key, developers often use an index. An index provides a quick way for the application logic to find a group of entries in the database. Although not all indexes are unique, the ability to reduce the number of records involved in a database query can provide significant performance gains.

    SQL Server 2005 provides tools that let you index the fields that are part of an XML column. This process involves only two steps: creating a primary index and creating a secondary index. However, an initial requirement is that your table must have a primary key with a clustered index.

    What is a clustered index? When you create a primary key, SQL Server automatically creates a clustered index for your table. You can alter this default behavior and choose another column to have your clustered index, but clustered indexes are unique in that they keep the index entries in order as the index is built. This feature is important because the clustered index is the most direct index into your table. As long as your table has a primary key and the associated clustered index, you can add a primary index for the data in your XML column. The primary index for an XML column differs from most other indexes in two respects. First, the primary index for an XML column takes all the elements contained in your XML data and creates an index based on all that data. Thus, although the primary index speeds up queries, it also takes up a fair amount of space.

    Second, the primary index doesn't focus on a specific field or path within your XML data. To create an index that focuses on a more specific value, you need to create a secondary index. Let me be crystal clear here: You can't create a secondary XML index until after you create a primary XML index.

    After you create the primary XML index, you can create one of three different types of secondary XML indexes: PATH, PROPERTY, and VALUE. Each one focuses on a different portion of the XML structure. You use the PATH index for queries that include a specific path to elements in your XML data. You use the PROPERTY index to retrieve multiple fields from within an XML file, where the primary key for the records you desire is already known. You use the VALUE index to retrieve elements in your XML data. The VALUE index is particularly useful for fields that might be repeated on different paths within your XML data.

    Of course, creating primary and secondary indexes will greatly impact storage space. If you're concerned about space and you want to run queries against a single field in your XML column, an alternative is to promote an XML field to a column in SQL Server 2005. The advantage of this promotion is that you can reference the data the same way that you would reference any other column, including setting up standard SQL indexes on the column. However, as part of this process, SQL Server 2005 is essentially extracting the field value from your XML structure to create a column. Thus, you're querying against that column rather than directly against your XML structure. If you want to retrieve other fields from your XML data based on the value found in a promoted field, you'll pay a price in the form of an extra step: opening the XML data and retrieving the values.

    After you've completely finished creating your XML columns, the next step is to put in place the business logic needed to manipulate the XML data in those columns. There are several ways to implement the business logic, which brings us to another feature in SQL Server 2005: the ability to create .NET functions.

    XML columns and the integration of the Windows .NET Framework in SQL Server are the two features that will have the greatest impact on developers. In my next column, I'll start discussing how the .NET Framework's inclusion in SQL Server 2005 will affect developers. In the meantime, if you want more information about XML in SQL Server 2005, go to http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql90/html/sql25xmlbp.asp.


    Sponsor: Free ASP.NET 2.0 Training CD!
    See why AppDev was voted the best by thousands of developers nationwide...get a FREE ASP.NET 2.0 Training CD-ROM -- a $95 value! Click the link below for your free training CD...
    http://ad.doubleclick.net/clk;13384066;8214395;k?http://www.appdev.com/promo/RN00113


    2. Announcements


    (brought to you by SQL Server Magazine)

    Get SQL Server Info on Your Schedule...
    Introducing the SQL Server Magazine Monthly Pass--the golden key for the SQL Server Magazine Web site. As a subscriber, you'll be given immediate online access to every article ever published in the magazine since 1999 for an entire month—that's thousands of how-to articles, expert tips, and quick answers for just $5.95. Order now:
    http://ad.doubleclick.net/clk;13380492;8214395;j?http://www.windowsitpro.com/sub/MonthlyAccess/index.cfm?promocode=ep2151dp

    Get a Free Digital Issue of SQL Server Magazine
    Now is the time to try the #1 SQL Server resource--SQL Server Magazine. Whether you're looking for novice or advanced-level SQL Server information, our experts provide helpful answers relevant to every SQL Server user. Stay on top of such topics as stored procedures, Reporting Services, SQL Server 2005, and much more! Click here to get your free issue:
    http://ad.doubleclick.net/clk;13380529;8214395;k?http://www.windowsitpro.com/SQLServer/Digital/index.cfm?code=dupdate0121

    3. Resource


    Featured Thread: Problem with Installing Visual Studio .NET Add-On
    Forum member s504729 wants to know whether Microsoft IIS and ASP.Net are required to install the Visual Studio .Net 2003 add-on for SQL Server Reporting Services. If you know, go to
    http://www.windowsitpro.com/forums/rd.cfm?cid=55&tid=129312


    Hot Spot: Win a Harley at Microsoft ASP.NET Connections
    March 20-23, 2005, Hyatt Grand Cypress Resort in Orlando, Florida. Don't miss this exciting event offering cutting-edge sessions by industry gurus. Attendees receive beta copies of SQL Server 2005 and Visual Studio 2005, and a chance to win a Harley Davidson motorcycle! 800-438-6720 or 203-268-3204.
    http://ad.doubleclick.net/clk;13384088;8214395;o?http://www.devconnections.com


    4. New and Improved


    (by Karen Bemowski, [email protected])

    Automate Software Builds
    Kinook Software announced the release of Visual Build Professional 5.6, a build-management solution for Windows and Web developers. New features in this release include full support for building Visual Studio 2005 projects and solutions with MSBuild (without installing Visual Studio on the build box), custom actions for Subversion version control and code signing of executables. Visual Build Professional 5.6 runs on Windows 2003/XP/2000/NT. Prices start at $295 for a single-user license. A free trial version is available. For more information, contact Kinook Software at (719) 481-4128.
    http://www.visualbuild.com

    Develop Windows, Web, and Mobile Applications with One Toolset
    ComponentOne released Studio Enterprise 2005, a component toolset that provides an integrated approach to developing Windows, Web, and mobile applications. The toolset includes more than 110 components for .NET, ASP.NET, ActiveX, and mobile devices. This release includes more than 45 updates to .NET WinForms and ASP.NET WebForms components. The full version is $899.95, which includes a 1-year subscription service that keeps your components and applications up-to-date and provides new products and support at no extra charge. A free trial version is available. For more information, contact ComponentOne at 412-681-4343, 800-858-2739, or [email protected].
    http://www.componentone.com

    Contact Us


  • About Developer .NET Perspectives -- [email protected]
  • About technical questions -- http://www.sqlmag.com/forums
  • About product news -- [email protected]
  • About your subscription -- [email protected]
  • About sponsoring an UPDATE -- contact Richard Resnick, [email protected]
  • Developer .NET UPDATE is brought to you by SQL Server Magazine, the only magazine devoted to helping developers and DBAs master new and emerging SQL Server technologies and issues. Subscribe today.
    http://www.sqlmag.com/rd.cfm?code=00ep214xeb

    View the SQL Server Magazine Privacy Policy
    http://www.winnetmag.com/aboutus/index.cfm?action=privacy

    SQL Server Magazine is a division of Penton Media, Inc. 221 East 29th Street, Loveland, CO 80538, Attention: Customer Service Department

    Copyright 2005, Penton Media, Inc. All Rights Reserved.

    Hide comments

    Comments

    • Allowed HTML tags: <em> <strong> <blockquote> <br> <p>

    Plain text

    • No HTML tags allowed.
    • Web page addresses and e-mail addresses turn into links automatically.
    • Lines and paragraphs break automatically.
    Publish