Jim Brooks

Quickly Finding Missing Objects in Two SQL Server 2005 Databases

Real quick I wanted to know what tables and stored procs were in my ReleaseManagerTest database and not in my ReleaseManager database.  So here is the SQL for that. select min(DB) as DB, name, type from ( select ‘ReleaseManagerTest’ as DB, name, type from ReleaseManagerTest.sys.objects   union all   select ‘ReleaseManager’ as DB, name, type

Quickly Finding Missing Objects in Two SQL Server 2005 Databases Read More »

Forgotten Windows Password Recovery and the “no tables found” error.

A friend of mine brought over his laptop because he couldn’t remember his new Windows Vista login password. I said I would work on it and worst case I would have to clear everything and reinstall Vista. Googling around I found that there were tools for clearing the password. I downloaded and burned to a

Forgotten Windows Password Recovery and the “no tables found” error. Read More »