Using Visual Studio 2010 and an XSD to handle data sets and table adapters.
I am moving the application's database objects to a new server (SQL 2005 to 2012). Along with moving to a new server I am taking this opportunity to put the database objects under their own database schema. Also, all of the objects will be slightly renamed. For example: "tblEval" to "hreval.EvalPeriod", and "tblEvaluations" to "hreval.Evaluations".
How best to go about updating the XSD so as to minimize the rework? Can I just pop open the XSD file in a text editor and do a search and replace? Or am I best off biting the bullet and recreating it from scratch?
Thoughts, ideas, suggestions? Thank you.