Hi All, I would like to have a few namespaces available by default when running an XQuery in SQL Server 2005, is this possible?
For example, I would like to do the following:
select * from TableWithXML
where
FieldWithXML.exist(
declare namespace nsp="http://www.example.com/exampleNamespace";
nsp:root/nsp:childnode) = 1
Without having to redeclare the namespace each time, so that SQL will recognize nsp without me including the prolog each time.
Thoughts?