Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This enumeration describes the volatility of the element descriptor. Each volatility level is distinct. It is not possible to be a variable AND a temporary table and so on. They are mutually exclusive. A clear difference exists between a temporary object and a global temporary object.
Namespace: Microsoft.Data.Schema.Sql.SchemaModel
Assembly: Microsoft.Data.Schema.Sql (in Microsoft.Data.Schema.Sql.dll)
Syntax
'Declaration
Public Enumeration SqlElementDescriptorVolatility
public enum SqlElementDescriptorVolatility
public enum class SqlElementDescriptorVolatility
type SqlElementDescriptorVolatility
public enum SqlElementDescriptorVolatility
Members
Member name | Description | |
---|---|---|
None | Specifies that the element descriptor has no volatility. | |
VariableOrParameter | Specifies that the element is a variable or a parameter. | |
TemporaryObject | Specifies that the element is a temporary object. | |
GlobalTemporaryObject | Specifies that the element is a global temporary object. |