I had to rename in a column in my database - let's call it Customer.CellPhone. Now 'CellPhone' needs to be 'Mobile'. Not to hard using the build-in SP:use WebShopEXEC sp_rename 'Customer.CellPhone', 'Mobile'goBut what if I used 'CellPhone' in a SP? Then it would fail now... But that's when I found this solution.create proc spFindWordsInSP@word nvarchar(100)asBEGINSELECT ROUTINE_NAME, ROUTINE_DEFINITIONFROM INFORMATION_SCHEMA.ROUTINES... ROUTINE_DEFINITION LIKE '%'+@word+'%'AND ROUTINE_TYPE='PROCEDURE'ORDER ......
I'v just come across the keyboard shortcut for closing the current tab in VS2010. For a while I was annoyed the ctrl+w wouldn't close the tab as in IE...
For some reason the (default) shortcut for VS2010 is CTRL+F4 - go figure :-/