XML SCHEMA COLLECTION#
An XML schema collection stores XML Schema (XSD) definitions used to type and validate xml
values. See XML for how typed XML is used.
CREATE XML SCHEMA COLLECTION#
Creates a new schema collection from an XSD definition.
ALTER XML SCHEMA COLLECTION#
Adds schema components to an existing collection.
DROP XML SCHEMA COLLECTION#
Removes a schema collection.
Examples#
CREATE XML SCHEMA COLLECTION dbo.BookSchema AS '<xsd:schema> ... </xsd:schema>';
See also