Sql Server: all object dependencies

前端 未结 3 2073
再見小時候
再見小時候 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:47

    A persisted computed column in a table could depend on a user defined function.

    A non-deterministic user-defined function can depend on a table.

    A constraint could cause a table to depend on a table.

    ad nauseum.

    You could pick any pair of object types and we might be able to come up with a dependency.

    There are obviously some restrictions in the various SQL Server features, but I'm not aware of any comprehensive matrix of all possible allowed and disallowed dependencies.

提交回复
热议问题