-1
다음 create xml schema collection
코드는 다른 방법으로 고유 제한 조건을 설정하는 방법은 없나요SQL Server XML 스키마 : XML에 고유 제한 조건을 추가하는 방법이 있습니까?
Msg 9336, Level 16, State 1, Line 34 The XML Schema syntax 'unique' is not supported.
create xml schema collection cs.T as N'
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<xsd:element name="Column">
<xsd:unique name="uniqueKey">
<xsd:selector xpath="@ColumnKey"/>
<xsd:field xpath="."/>
</xsd:unique>
</xsd:element>
</xsd:schema>';
의 오류를 반환?
다른 방법으로 고유 제한 조건을 설정할 수있는 방법이 있습니까? – ca9163d9