I have a varchar/text field that contains untyped xml. I don't want to use schema. How would one query this:
I want the "value" for 'IgnoreFailure'
DECLARE @x XML
select @x = myColumn from myTable where recordid = 1
select @x.query(...
~Gina_M~
Code:
<configuration> <connectionsettings> <add key="appKey" value="355" /> <add key="SessionURL" value="http://xxxxxx" /> <add key="UpdateOrderURL" value="http://yyyyyyy" /> <add key="IgnoreFailure" value="true" /> </connectionsettings> </configuration>
DECLARE @x XML
select @x = myColumn from myTable where recordid = 1
select @x.query(...
~Gina_M~
Comment