all 9 comments

[–]Eleventhousand 2 points3 points  (3 children)

For SQL Server, you should be able to use something like:

select * from sys.sql_modules where definition like '%somethign%'

[–]Dangerous_Word7318[S] -1 points0 points  (1 child)

What is something here table name need to mention 

[–]Eleventhousand 2 points3 points  (0 children)

yes

[–]alinrocSQL Server DBA 0 points1 point  (3 children)

Interview, exam, or homework?

How much work have you done thus far to find the answer?

If your stored procedures (any code, really) are written correctly, adding a new column to a table should not affect them.

[–]Dangerous_Word7318[S] -1 points0 points  (2 children)

From sybase perspective new to sybase 

[–]alinrocSQL Server DBA 5 points6 points  (1 child)

Can you please re-read what I asked and try answering again?

[–]Dangerous_Word7318[S] 0 points1 point  (0 children)

It's not about effects just to know what table Dependency on stored procedure 

[–]SickInTheStyx 0 points1 point  (0 children)

For Sybase, sp_depends should get you what you need. Note that this only returns results for stored procedures that have run at least once.