I have a table in SQL Server 2005 SP4; in which one of the column will be of XML data type.
The problem is my XML can be of three different formats. (i.e. XML is not same but can be up to three different format) I want to use typed XML so
Question a) can I create XML schema collection that has XML schema for three different xml
I see a table in adventureworks database, Production.ProductModel in which catalogdescription column has three different schemas applied to it.
b) XML will be generated from ASP.net webform; should I construct XML in ASP.net or bring all form data in to SQL and construct XML there?
Thanks