DacExternalQueryScopes Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines the type of objects to query from the model.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum DacExternalQueryScopes
[<System.Flags>]
type DacExternalQueryScopes =
Public Enum DacExternalQueryScopes
- Inheritance
-
DacExternalQueryScopes
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | Filter out all elements. |
UserDefined | 1 | Query user defined objects. |
BuiltIn | 2 | Query built in system objects |
Default | 3 | Default query scope is to query both UserDefined and BuiltIn query scopes |
SameDatabase | 4 | Query user defined objects from referenced models where the referenced model is for the same database. |
System | 8 | Query System objects that are not treated as built in. These are objects that appear when the master database is referenced |
DifferentDatabaseSameServer | 16 | Query references to external objects that are from a different database on the same server. |
DifferentDatabaseDifferentServer | 32 | Query references to external objects that are from a different database on a different same server. |
All | 63 | All elements in the model, including references to external elements. |