Class AzureSynapseAnalyticsSchema.PermanentTableMapping
- Namespace
- LinqToDB.Tools.DataProvider.SqlServer.Schemas
- Assembly
- linq2db.Tools.dll
sys.pdw_permanent_table_mappings (Transact-SQL)
Applies to: √ Azure Synapse Analytics
Ties permanent user tables to internal object names by object_id.
note
sys.pdw_permanent_table_mappings holds mappings to permanent tables and does not include temporary or external table mappings.
[Table(Schema = "sys", Name = "pdw_permanent_table_mappings", IsView = true)]
public class AzureSynapseAnalyticsSchema.PermanentTableMapping
- Inheritance
-
AzureSynapseAnalyticsSchema.PermanentTableMapping
- Inherited Members
- Extension Methods
Properties
Object
objects (sys.objects)
[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }
Property Value
ObjectID
object_id NOT NULL int
The object ID for the table. See sys.objects (Transact-SQL).physical_name and object_id form the key for this view.
[Column("object_id")]
[NotNull]
public int ObjectID { get; set; }
Property Value
PhysicalName
physical_name NOT NULL nvarchar(36)
The physical name for the table.physical_name and object_id form the key for this view.
[Column("physical_name")]
[NotNull]
public string PhysicalName { get; set; }