Just becuase I keep needing to do this: To reset an iPod with a Click Wheel, including: iPod nano (3rd generation) iPod classic iPod (5th generation) iPod nano (2nd generation) iPod nano iPod with color display (iPod photo) iPod (Click Wheel) iPod mini iPod mini (2nd generation) Toggle the Hold switch on and off. (Slide…
Month: January 2008
Change Owner of an Object in SQL Server 2000/2005
This is mostly just a post for me so I never forget this, but to change the owner of an object in sql server, use sp_changeobjectowner, just pass it the name of the object (as a string) and the name of the new owner (as a string) sp_changeobjectowner ‘tablename’,’dbo’ You can view Eric Porter’s original post…