select name
from sysobjects o, syscomments s
where o.id = s.id
and upper(text) like upper('%\_PY%') ESCAPE '\'
and o.xtype = 'P' ORDER BY name
select name
from sysobjects o, syscomments s
where o.id = s.id
and upper(text) like upper('%\_PY%') ESCAPE '\'
and o.xtype = 'P' ORDER BY name