Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
1answer
743 views

Modifying SQL Server Schema Collection

SQL Server XML Schema Collection is an interesting concept and I find it very useful when designing dynamic data content. However as I work my way through implementing Schema Collections, I find it ...
1
vote
1answer
94 views

SQL Server XML Typed Column Size variance

In Sql server if we create a xml column with a schema associated to it (typed XML) will this help in reducing the space required to store the actual data. Example if i create 2 tables with XML column ...
0
votes
1answer
196 views

Using CONTENT keyword while creating a table with an XML column from XML Schema Collection

While creating a table that has an XML type column, I am referring to a complex XML Schema Collection. When I specify the XML Schema, I have the option of mentioning either CONTENT or DOCUMENT ...
0
votes
1answer
417 views

Sql existence check for Xml Schema Collection?

Hey all, writing scripts for Sql Server 2005. I am registering a schema with CREATE XML SCHEMA COLLECTION [dbo].[MySchema] AS N'<xsd:schema ... >' Now, as I make changes, I would like to ...