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 ......