Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SqlServerSourceConfig

import type { SqlServerSourceConfig } from "https://googleapis.deno.dev/v1/datamigration:v1.ts";

Configuration for SQL Server as a source in a migration.

interface SqlServerSourceConfig {
cdcStartPosition?: string;
maxConcurrentCdcConnections?: number;
maxConcurrentFullDumpConnections?: number;
skipFullDump?: boolean;
}

§Properties

§
cdcStartPosition?: string
[src]

Optional. The log sequence number (LSN) to start CDC data migration from.

§
maxConcurrentCdcConnections?: number
[src]

Optional. Maximum number of connections Database Migration Service will open to the source for CDC phase.

§
maxConcurrentFullDumpConnections?: number
[src]

Optional. Maximum number of connections Database Migration Service will open to the source for full dump phase.

§
skipFullDump?: boolean
[src]

Optional. Whether to skip full dump or not.