how create a sql database fom a stongly typed dataset
Posted
by
Keith Vinson
on Stack Overflow
See other posts from Stack Overflow
or by Keith Vinson
Published on 2012-06-05T04:18:53Z
Indexed on
2012/06/05
4:40 UTC
Read the original article
Hit count: 292
I'm looking for an easy way to transfer a database schema I have developed inside visual studio as a strongly typed dataset (xsd file) into a corresponding sql server database. Silly me I assumed the process would be forthright, but I can't find out how to do it. I assume I could duplicate the tables column by column, but that seems so error prone. Does anyone know of a way to perform the schema transfer like this? Maybe a tool to translate the xsd file into a corresponding sql server ddl file?
Final thought once I have the schema transferred moving data around between the two data stores will be straight forward, its just getting the schemas synced that has me stumped...
Thanks, Keith
© Stack Overflow or respective owner