All Tags » XML (RSS)

Browse Blog Posts by Tags

Showing related tags and posts for the Blogs application. See all tags in the site
  • Processing XML with PowerShell II

    In our previous blog article Processing XML with PowerShell we looked at using XPath expressions to do calculations that used XML as input. One of the things that this article pointed out was that you often can do an entire calculation within an XPath expression. Sometimes, however, you want to read...
    Posted to Deferred Processing by dan-sullivan on 11-28-2006
    Filed under: Filed under: ,
  • Processing XML with PowerShell

    There are a couple of powerful technologies for processing native XML, XPath and XSLT. People often avoid processing native XML but instead convert the XML to an object model in a language they are used to and do “conventional” programming on that model. Even PowerShell itself does this with...
    Posted to Deferred Processing by dan-sullivan on 11-25-2006
    Filed under: Filed under: ,
  • PowerShell and XmlDocument

    PowerShell has builtin support for XML, but the System.Xml namespace offers many additional capabilites for processing XML. This article looks at using System.Xml in PowerShell. This article assumes you know some of the basics of PowerShell programming and are familiar with the System.Xml namespace in...
    Posted to Deferred Processing by dan-sullivan on 10-30-2006
    Filed under: Filed under: ,
  • PowerShell and XML and SQL Server

    PowerShell offers support for XML data directly though its [xml] datatype and this article is going to look at that. First of all to make use of the builtin [xml] datatype just prefix a variable name with [xml] when you assign something to it. PS C:\demos> [xml]$order = "<order customer='joe'>...
    Posted to Deferred Processing by dan-sullivan on 10-28-2006
    Filed under: Filed under: ,
  • Comparing XML in SQL Server 2005

    Comparing XML in SQL Server 2005 Xml is not text so a literal compare of two xml documents may lead to a false negative, that is it may indicate that two documents are not equal when in fact they are. For example these two xml documents are the same: <item x="1" y="2"/> <item y="2" x="1"/>...
    Posted to Deferred Processing by dan-sullivan on 09-01-2006
    Filed under: Filed under: ,
  • What cost xml, SQL Server?

    How much space does xml cost in SQL Server 2005? This question seems to come up a lot because xml has a lot of meta data in it and to top it off SQL Server saves the xml data type using UTF-16 encoding. This is, at least for xml that is mostly ascii type characters, up twice as much space as the encoding...
    Posted to Deferred Processing by dan-sullivan on 08-06-2006
    Filed under: Filed under: ,
  • Evaluating String Arithmetic Expressions in SQL Server 2005

    I saw a wish list blogged at http://omnibuzz-sql.blogspot.com/2006/07/next-version-of-sql-server-wish-list.html. It wanted a sql function that would evaluate an string arithmetic expression in the next version of SQL Server. It turns out that function is already available, sort of, in T-SQL on SQL Server...
    Posted to Deferred Processing by dan-sullivan on 07-27-2006
    Filed under: Filed under: ,
Page 1 of 1 (7 items)