find column in all stored procedures sql server

Solutions on MaxInterview for find column in all stored procedures sql server by the best coders in the world

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "find column in all stored procedures sql server"
Angelo
12 Aug 2020
1-- Search column in All Objects
2SELECT OBJECT_NAME(OBJECT_ID),
3definition
4FROM sys.sql_modules
5WHERE definition LIKE '%' + 'BusinessEntityID' + '%'
6GO
7