MS SQL Server Table
Parameter
Value
connectionString
table
the name of the domain and table e.g. dbo.employees_new
idColumn
the name of the identity column that exists in the target (or a single column that is guaranteed to be unique and automatically populated for every new record)
idColumnDataType
the data type of the id column
Before 4.0
connectionString
: the encrypted connection string. See ".NET Framework Data Provider for SQL Server" section on https://www.connectionstrings.com/sql-server/ for a sample.schema
: the schema of the table, e.g. dbotable
: the name of the domain and table e.g. dbo.employees_newidColumn
: the name of the identity column that exists in the target (or a single column that is guaranteed to be unique and automatically populated for every new record)idDataType
: the data type of the id column
CLI 4.0+
connectionString
: the encrypted connection string. See ".NET Framework Data Provider for SQL Server" section on https://www.connectionstrings.com/sql-server/ for a sample.table
: the name of the table including the schema, e.g. dbo.employeesidColumn
: the name of the identity column that exists in the target (or a single column that is guaranteed to be unique and automatically populated for every new record)idDataType
: the data type of the id column
Last updated