vote up 1 vote down star

Here's a Sample xml document I'm trying to create a schema for:

'<Fields>
  <Field ID="-1">somevalue</Field>
  <Field ID="-2" />
  <Field ID="-3" />
  <Field ID="-4">Some other value</Field>
  <Field ID="-5" />
</Fields>'

I'm trying to create a SQL Server 2005 schema collection to:
1. prevent dupicate id's.
2. only allow negative ids.

I can achieve the negative constraint with type="xs:negativeInteger" for the id attribute. But I can't create a unique constraint or key\keyref in SQL 2005. If I set my type="xs:ID", then I cant use numbers at all for my ID values, nevermind negative IDs.

Either I'm missing something, or its not possible. If its not possible, why would SQL 2005 not support the ability to have a unique attribute? Is there a work around using a constraint\trigger or an xml index on the table, or some other technique that I cant even imagine right now?

All help is greatly appreciated.

flag

1 Answer

vote up 1 vote down

Here's a solution using "unique" ("key" also works):

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="Fields">
    <xs:complexType>
      <xs:sequence>
        <xs:element maxOccurs="unbounded" ref="Field"/>
      </xs:sequence>
    </xs:complexType>

    <xs:unique name="nearlyID">
      <xs:selector xpath=".//*"/>  
      <xs:field xpath="@ID"/>
    </xs:unique>
  </xs:element>


  <xs:element name="Field">
    <xs:complexType>
      <xs:simpleContent>
        <xs:extension base="xs:string">
          <xs:attribute name="ID" type="xs:negativeInteger"/>
        </xs:extension>
      </xs:simpleContent>
    </xs:complexType>
  </xs:element>
</xs:schema>

It validates your example, and gives errors for:

  1. duplicate id's
  2. id's that aren't negative integers.

Here's your eg plus tests:

<Fields>
  <Field ID="-1">somevalue</Field>
  <Field ID="-2" />
  <Field ID="-3" />
  <Field ID="-4">Some other value</Field>
  <Field ID="-5" />

  <Field ID="-2"   >  not unique   </Field>
  <Field ID="2"    >  not negative </Field>
  <Field ID="hello">  not integer  </Field>
</Fields>

EDIT I have no idea if this is the best way or even if it's a good way. It works, but I think there's might be a simpler, more straightforward way.

link|flag
Though your solution is valid xsd and would achieve the rules I need to enforce, it doesn't work with SQL Server 2005. 'unique' is not supported apparently, neither is 'key'. – Sheki May 19 at 14:18
:-( really? But it's in the spec - see the link I gave. uh... that's for the "second edition", maybe they only support the first edition? No - it also has unique/key: w3.org/TR/2001/… So I guess they simply didn't implement the whole spec. – 13ren May 20 at 3:01
so my question is still out there, how can I enforce that my ID is unique and negative in SQL 2005. "<xsd:include>, <xsd:key>, <xsd:keyref>, <xsd:redefine>, and <xsd:unique> SQL Server does not support these." ...see here technet.microsoft.com/en-us/library/… – Sheki May 20 at 14:20
I don't know. Maybe try their forums too? – 13ren May 20 at 16:03

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.