M
Morten Snedker
I wish to loop through all my stored procedures to find any given
string contained in the procedure. For instance, using ADO I can loop
through tables and views to find af column of some given name.
I wish to do the same thing with all my stored procedures. This is
what I have:
For Each obj In dbs.AllStoredProcedures
If obj.Type = acStoredProcedure Then
Debug.Print obj.Name
End If
Next obj
So I have the name...now i want to see what's in it. How to?
Regards /Snedker
string contained in the procedure. For instance, using ADO I can loop
through tables and views to find af column of some given name.
I wish to do the same thing with all my stored procedures. This is
what I have:
For Each obj In dbs.AllStoredProcedures
If obj.Type = acStoredProcedure Then
Debug.Print obj.Name
End If
Next obj
So I have the name...now i want to see what's in it. How to?
Regards /Snedker