↧
sp_depends results are not reliable
sp_depends System Stored procedure will give the list of referencing entities for a table/view and list of referenced entities by the stored procedure/view/function. As per MSDN this system stored...
View ArticleHow to find referenced/dependent objects (like Table, Function etc) of a...
First of all we shouldn’t use the system stored procedure sp_depends for this as it is not reliable. For more details on sp_depends you can refer to the article sp_depends results are not reliable. For...
View Article