Table of Contents

Class StretchDatabaseSchema.RemoteDataArchiveDatabase

Namespace
LinqToDB.Tools.DataProvider.SqlServer.Schemas
Assembly
linq2db.Tools.dll

Stretch Database Catalog Views - sys.remote_data_archive_databases

Applies to: √ SQL Server 2016 (13.x) and later

Contains one row for each remote database that stores data from a Stretch-enabled local database.


See sys.remote_data_archive_databases.

[Table(Schema = "sys", Name = "remote_data_archive_databases", IsView = true)]
public class StretchDatabaseSchema.RemoteDataArchiveDatabase
Inheritance
StretchDatabaseSchema.RemoteDataArchiveDatabase
Extension Methods

Properties

DataSourceID

The data source used to connect to the remote server

[Column("data_source_id")]
[NotNull]
public int DataSourceID { get; set; }

Property Value

int

RemoteDatabaseID

The auto-generated local identifier of the remote database.

[Column("remote_database_id")]
[NotNull]
public int RemoteDatabaseID { get; set; }

Property Value

int

RemoteDatabaseName

The name of the remote database.

[Column("remote_database_name")]
[NotNull]
public string RemoteDatabaseName { get; set; }

Property Value

string