I want to have a list of all SPs from my database that fulfill some conditions, say, all those SPs that have StudentId, because I want to update these SPs where StudentId will be the key column.
How can I get a list of all such SPs?
Thanks for your details.
select OBJECT_NAME(object_id) from sys.sql_modules where OBJECTPROPERTY(object_id,'IsProcedure') = 1 and definition like '%StudentId%'
Source: https://habr.com/ru/post/1766775/More articles:Django Comment Submission Notice - djangoreading a large file from a remote server using php script - php"device not ready" when using File.Copy () in C # - c #Why is this C # code not compiling? - c #Difference between type casting and parsing? - castingFilling NSForm with NSComboBoxes - objective-cFree RCS for Windows 7 - version-controlCygwin Bash command line variable assignments not working? - bashWhy is my pile damaged? - c ++Тканые производственные классы с аспектами AspectJ в Maven для выполнения тестов только - javaAll Articles