User Craig - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T09:50:36Z http://stackoverflow.com/feeds/user/13988 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/89606/in-sql-server-2005-how-do-i-change-the-schema-of-a-table-without-loosing-any-d/89658#89658 -2 Answer by Craig for In sql server 2005, how do I change the "schema" of a table without loosing any data? Craig 2008-09-18T03:04:48Z 2009-08-07T03:22:00Z <p>You need to firstly stop all connections to the database, change the ownership of the tables that are 'db_owner' by running the command </p> <pre><code>sp_MSforeachtable @command1="sp_changeobjectowner ""?"",'dbo'" </code></pre> <p>where ? is the table name.</p> http://stackoverflow.com/questions/18717/are-foreign-keys-really-necessary-in-a-database-design/80073#80073 1 Answer by Craig for Are Foreign Keys really necessary in a database design? Craig 2008-09-17T04:44:39Z 2008-09-17T04:44:39Z <p>Foreign keys allow someone who has not seen your database before to determine the relationship between tables.</p> <p>Everything may be fine now, but think what will happen when your programmer leaves and someone else has to take over.</p> <p>Foreign keys will allow them to understand the database structure without trawling through thousand of lines of code.</p>