3
votes
In sql server 2005, how do I change the “schema” of a table without loosing any data?
simple answer
sp_changeobjectowner [ @objname = ] 'object' , [ @newowner = ] 'owner'
you don't need to stop all connections to the database, this can be done on th …
0
votes
How to get a distinct list of words used in all Field Records using MS SQL?
it'd be a messy stored procedure with a temp table and a SELECT DISTINCT at the end.
if you had the words already as records, you would use SELECT DISTINCT [WordsField] from [owner].[tablen …
