Table of Contents

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.


See sys.pdw_permanent_table_mappings.

[Table(Schema = "sys", Name = "pdw_permanent_table_mappings", IsView = true)]
public class AzureSynapseAnalyticsSchema.PermanentTableMapping
Inheritance
AzureSynapseAnalyticsSchema.PermanentTableMapping
Extension Methods

Properties

Object

objects (sys.objects)

[Association(ThisKey = "ObjectID", OtherKey = "ObjectID", CanBeNull = false)]
public ObjectSchema.Object Object { get; set; }

Property Value

ObjectSchema.Object

ObjectID

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

int

PhysicalName

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; }

Property Value

string