I have a DataSet defined and designed in visual studio.
Who knows of a tool to generate tables in SQL Server to match the dataset.
I have a DataSet defined and designed in visual studio.
Who knows of a tool to generate tables in SQL Server to match the dataset.
I'm not aware of any tools that will do it just like that - but you could always use SMO (the SQL Server Management Objects) to read your DataSet's structure and create database tables from that.
Marc
Here's an article I found very very helpful in building a class to do just that.