Class AzureSynapseAnalyticsSchema.ReplicatedTableCacheState
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.pdw_replicated_table_cache_state (Transact-SQL)
Applies to: √ Azure Synapse Analytics
Returns the state of the cache associated with a replicated table by object_id.
[Table(Schema = "sys", Name = "pdw_replicated_table_cache_state", IsView = true)]
public class AzureSynapseAnalyticsSchema.ReplicatedTableCacheState
- Inheritance
-
AzureSynapseAnalyticsSchema.ReplicatedTableCacheState
- Extension Methods
Properties
Object
objects (sys.objects)
[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }
Property Value
ObjectID
The object ID for the table. See sys.objects (Transact-SQL).
object_id is the key for this view.
[Column("object_id")]
[NotNull]
public int ObjectID { get; set; }
Property Value
State
The replicated table cache state for this table.
Range: 'NotReady','Ready'
[Column("state")]
[NotNull]
public string State { get; set; }