Sql Server: all object dependencies

前端 未结 3 2175
再見小時候
再見小時候 2021-01-16 08:24

Is there any place where I can find all possible object type dependencies in Sql Server?

What I mean by \"object dependency\" is a list of object that one object can

3条回答
  •  [愿得一人]
    2021-01-16 08:56

    For actual objects (what objects does table 'foo' depend on):

    sys.sql_dependencies

    Is mostly accurate. There is also the SMO helper, DependencyWalker.

    As a general type question (ie. what type of objects can a table depend on), you just need to go through the spec on MSDN for each object CREATE/ALTER statement and read carefully everything.

提交回复
热议问题