User Craig - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T09:50:36Zhttp://stackoverflow.com/feeds/user/13988http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/89606/in-sql-server-2005-how-do-i-change-the-schema-of-a-table-without-loosing-any-d/89658#89658-2Answer by Craig for In sql server 2005, how do I change the "schema" of a table without loosing any data?Craig2008-09-18T03:04:48Z2009-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#800731Answer by Craig for Are Foreign Keys really necessary in a database design?Craig2008-09-17T04:44:39Z2008-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>