1
vote
Are Foreign Keys really necessary in a database design?
Foreign keys allow someone who has not seen your database before to determine the relationship between tables.
Everything may be fine now, but think what will happen when your programmer le …
-2
votes
In sql server 2005, how do I change the “schema” of a table without loosing any data?
You need to firstly stop all connections to the database, change the ownership of the tables that are 'db_owner' by running the command
sp_MSforeachtable @command1="sp_changeobject …
