Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
CLages
Posting Yak Master
116 Posts |
Posted - 2005-08-02 : 14:20:01
|
| Hi folksi have a System with several StoredProcedure +- 80Is there a easy way to find out one String searching in all SP ex. i want to use a Column (ADT_TYPE) i think its not used anymore , but to be sure i would like to know if one of this 80 SP use this Column.tksCLages |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2005-08-02 : 14:21:33
|
easiest i thik is:script the sprocs with scriptdband do a simple search in the created file.Go with the flow & have fun! Else fight the flow |
 |
|
|
CLages
Posting Yak Master
116 Posts |
Posted - 2005-08-02 : 14:29:59
|
| TKS, but I Found The Answer By Myself select * from INFORMATION_SCHEMA.ROUTINES where routine_definition like '%ADT_TIPO%'C. Lages |
 |
|
|
spirit1
Cybernetic Yak Master
11752 Posts |
Posted - 2005-08-02 : 14:33:13
|
cool... but i thought that INFORMATION_SCHEMA.ROUTINES can have problems with statistics not being updated...hmmm... maybe i'm confusing it with something else...Go with the flow & have fun! Else fight the flow |
 |
|
|
X002548
Not Just a Number
15586 Posts |
|
|
|
|
|