How to create SQL Server table schema from a XML schema? (with .NET and Visual Studio 2008)
.net, c#, sql-server, sql-server-2005, xml
Solution
You can use the XSD2DB utility
This is the Example xsd2db.exe -f true -l [Server Name] -n [Database Name] -s D:\po.xsd -t sql
Link for Help http://xsd2db.sourceforge.net/
Problem
I have a XML schema, and I know that "xsd.exe" can generate the C# code for it. But I want to know if is possible to automatically create the MS SQL Server 2005+ tables from the XSD, with the help of this or other tools. BTW I didn't get what the C# code generated by "xsd.exe" is worth for. What's the difference between code generated by CodeXS and xsd.exe?