An xml schema collection will produce an error when it tries to validate an xsd:datetime that does not end with Z. As far as I can tell from the XML Schema rec' the Z is optional. Other schema validator accept as valid xsd:datetime without a Z at the end.CREATE XML SCHEMA COLLECTION TimeTestAS'<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"targetNamespace="TimeTest"><xsd:element name="date" type="xsd:dateTime"/></xsd:schema>'DECLARE @x xml(TimeTest)SET @x='<date xmlns="TimeTest">2002-10-10T12:00:00</date>'/*Produces this errorMsg 6926, Level 16, State 1, Line 3XML Validation: Invalid simple type value: '2002-10-10T12:00:00'. Location: /*:date[1]*/-- works as expectedDECLARE @x xml(TimeTest)SET @x='<date xmlns="TimeTest">2002-10-10T12:00:00Z</date>'