pattern Argument

Parent Previous Next

pattern Argument


The pattern argument specifies a pattern (Regular Expression) to determine which tables and columns should be included or excluded from the transfer.


Format


/pattern:include/exclude,Pattern


Example


Include only Tables whose names begin with the word "Customer"


/pattern:include,Customer.*


Exclude all Tables whose names being with the word "Customer"


/pattern:exclude,Customer.*


Exclude all Columns named "Id"


/pattern:exclude,.*\.Id


Exclude all Columns whose names begin with the word "Id"


/pattern:exclude,.*\.Id.*


Exclude all Columns of the Table Order whose names begin with the word "Date"


/pattern:exclude,Order\.Date.*


Required

This argument is optional.


Possible values

The modifier "include" or "exclude" followed by a comma "," and a regular expression (the pattern).