I have a value in a table that was changed unexpectedly. The column in question is CreatedDate: this is set when my item is created, but it\'s being changed by a st
CreatedDate
try this..
SELECT Name FROM sys.procedures WHERE OBJECT_DEFINITION(OBJECT_ID) LIKE '%CreatedDate%' GO
or you can generate a scripts of all procedures and search from there.