I have this query that finds all tables and views that matches my column name of a certain database. I am using SQL SERVER 2008
SELECT table
You can use this query for find field name that used in SP/View or Function
SELECT OBJECT_NAME(object_id) as 'Procedure/Function/View Name', definition --,* FROM sys.sql_modules WHERE ( definition LIKE '%' + '' + '%' )