15May/083
T-SQL: Find Duplicates Without Using JOIN
I'd forgotten about this lil trick.
select eUserName from eAttribute GROUP BY eUserName HAVING COUNT( eUserName) > 17May/084
SQL Server: Change the Owner of All Tables to “dbo”
Reference for me. Reference for you.
sp_MSforeachtable @command1="EXEC sp_changeobjectowner '?','dbo'"


