how to write xsd for the following xml?
- by Venkats
<?xml version="1.0"?>
<datatype xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
xs:noNamespaceSchemaLocation="sampletype.xsd">
<table name="emp">
<columns>
<column>
<name>emp_id</name>
<data_type>int(200) </data_type>
</column>
</columns>
</table>
</datatype>
Here i generate the xsd for above xml, but it was not correct. can you help me generate the xsd for the xml? thanks in advance.