Join this online group to communicate across IBM product users and experts by sharing advice and best practices with peers and staying up to date regarding product enhancements.
How do I correctly tdefine this data in the schema, so when I use the sortby() command I have :2.1.13.13.1.13.1.2The pattern of this data is 0-9*Thanks a lot, I read the docs but did not really figure it out.Babs
Use the following schema:<xs:schema xmlns:xs=“XML Schema” xmlns:tsd=“http://namespaces.softwareag.com/tamino/TaminoSchemaDefinition”> xs:annotation xs:appinfo <tsd:schemaInfo name=“string”> <tsd:collection name=“types-string”/> <tsd:doctype name=“types”> tsd:logical tsd:contentclosed</tsd:content> </tsd:logical> </tsd:doctype> </tsd:schemaInfo> </xs:appinfo> </xs:annotation> <xs:element name=“string” type=“xs:string”/></xs:schema>with the following data:2.1.13.1.23.1.13.1and _xql = string sortby(.)you’ll obtainxql:result 2.1.1 3.1 3.1.1 3.1.2</xql:result>as desired