Steven Pressfield, The War of Art, pg 42.

“Resistance is directly proportional to love. If you’re feeling massive resistance, the good news is, it means there’s tremendous love there too. If you didn’t love the project that is terrifying you, you wouldn’t feel anything. The opposite of love isn’t hate; it’s indifference. The more resistance you experience, the more important your unmanifested art/project/enterprise is to you—and the more gratification you will feel when you finally do it.”

Reset SQL 2000 objects to DBO

It sometimes happens that developers will log in with non-dbo credentials and create some objects, resulting in the object's owner being incorrect. Here's a simple script to reset all objects in your database to dbo.

declare @ChangeOwner varchar(8000)
set @ChangeOwner = ''
declare @ChangeOwner varchar(8000)
set @ChangeOwner = ''
SELECT @ChangeOwner = @ChangeOwner +
'EXEC(''sp_changeobjectowner @objname = '''''
+ ltrim(sysusers.name) + '.' + ltrim(sysobjects.name) + ''''''
+ ', @newowner = dbo'')'
FROM sysobjects,
sysusers
WHERE sysobjects.uid = sysusers.uid
AND sysusers.name <> 'dbo'
AND xtype in ('V', 'P', 'U')
AND sysusers.name not like 'INFORMATION%'
order by sysobjects.name
exec(@ChangeOwner)