This is what I would use ...
select SO.NAME AS TABLENAME, SC.NAME AS COLNAME
from sysobjects so, syscolumns sc
where so.id = sc.id and sc.name = 'DESCRIPTION'
This query will give you a listing of every table that has a field that is named, 'DESCRIPTION'. Good luck, david