Wildcards
This section describes wildcards you can use when specifying the schema and table names for table mapping.
Wildcard | Matches |
---|---|
% | Zero or more characters |
_ | A single character |
[_] | A literal underscore character |
[ab] | A set of characters. For example, [ab] matches either 'a' or 'b'. |
[a-d] | A range of characters. For example,[a-d] matches either 'a', 'b', 'c', or 'd'. |