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

OracleSourceConfig

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

Configuration for Oracle as a source in a migration.

interface OracleSourceConfig {
binaryLogParser?: BinaryLogParser;
cdcStartPosition?: bigint;
logMiner?: LogMiner;
maxConcurrentCdcConnections?: number;
maxConcurrentFullDumpConnections?: number;
skipFullDump?: boolean;
}

§Properties

§
binaryLogParser?: BinaryLogParser
[src]

Use Binary Log Parser.

§
cdcStartPosition?: bigint
[src]

Optional. The schema change number (SCN) to start CDC data migration from.

§
logMiner?: LogMiner
[src]

Use LogMiner.

§
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.