I have a TypedDataSet whose source tables live on a SQL Server. The
DataTables in the TypedDataSet have lots of customized TableAdapters to
execute special SELECTS. Took a lot of work.

I have to change the Database name and Owner (schema actually on SQL 2005)
but not the name of the tables on the SQL server. This wreaks havoc as you
can imagine with the DataSource Wizard. If I add the tables anew to the
TypedDataSet, I loose all the modifications to the original DataTables. I
want to just modify the definitions of the existing DataTables in the
TypedDataSet to reflect the changes in the underlying SQL database. It's not
as simple as changing the Connection properties!

It seems that the only way to change the Database Name and Owner is to
Find/Replace within the .xsd file itself. A bit scary. Is there a better way?
Is it safe just to make the suggested replacement?


--
Michael