Is there a way to rebuild/repair ASP.Net personalization tables without losing the data inside? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T15:07:44Z http://stackoverflow.com/feeds/question/668056 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/668056/is-there-a-way-to-rebuild-repair-asp-net-personalization-tables-without-losing-th 0 Is there a way to rebuild/repair ASP.Net personalization tables without losing the data inside? Christopher 2009-03-20T21:23:14Z 2009-03-22T11:38:55Z <p>I inherited an Asp.Net app that uses ASP.Net membership services. I am trying to add web parts with personalization to the site, and am getting a lot of errors. It looks like the tables generated by Aspnet_regsql.exe have been changed - probably copied at some point in the past using "select into" causing them to lose all their indexes and primary keys.</p> <p>How can I repair these tables without losing all the data inside?</p> http://stackoverflow.com/questions/668056/is-there-a-way-to-rebuild-repair-asp-net-personalization-tables-without-losing-th/670881#670881 1 Answer by Bryan Parker for Is there a way to rebuild/repair ASP.Net personalization tables without losing the data inside? Bryan Parker 2009-03-22T11:38:55Z 2009-03-22T11:38:55Z <ol> <li>Backup database (just in case!)</li> <li>Rename existing database</li> <li>Recreate aspnetdb</li> <li>Bulk copy data from renamed DB into newly recreated DB. (probably with BCP)</li> </ol> <p>I know BCP is an old tool... but it still works. Maybe there is an easier way to do it, but this is how I would do it.</p>