Is there an easy way to chase down table/stored procedure/function dependencies in SQL Server 2005+? I\'ve inherited a giant application with lots of tables and even more s
The system table that attempt to keep track of dependencies is usually wrong, so any answer you get from that, you will have to re-confirm by other means, so why bother with it?
Commercial products exist, such as Redgate SQL Dependency Tracker.
A poor developer like myself, I use SQL Digger, which is free. By searching the DDL for an object name, you usually can find what first degree dependencies there are for an object in question.
The next level of dependency tracing is to trace what C# or VB.NET net objects depend on an object in SQL, but AFAIK, tools don't exist for that outside of global search.