Goalie3533
Programmer
I have a particular table field name in which I need to locate each and every occurrence of throughout all of my stored procedures.
The problem however is I have over 100 stored procedures and was just wondering if there was an easier way to locate each and every occurrence of a particular field name within all of my stored procedures than going in to each and every one and manually searching for this field.
For example, you could use the "syscolumns" table to see all of the different field names of all of your tables, which can be helpful(unfortunately, syscolumns doesn't list which stored procedures are using this field as well).
So is there something that shows me where this field occurs within my stored procedures?
Thanks in advance.
-Goalie35
The problem however is I have over 100 stored procedures and was just wondering if there was an easier way to locate each and every occurrence of a particular field name within all of my stored procedures than going in to each and every one and manually searching for this field.
For example, you could use the "syscolumns" table to see all of the different field names of all of your tables, which can be helpful(unfortunately, syscolumns doesn't list which stored procedures are using this field as well).
So is there something that shows me where this field occurs within my stored procedures?
Thanks in advance.
-Goalie35