Define schema pairs before tables are suggested.
Schema mapping decides where Compare starts looking for matching objects. One source schema can be paired with any target schema, and each side can be filtered before the platform proposes concrete table pairs.
How schema mapping works
This step determines which parts of the source and target environments should be compared against each other. It is the broadest matching layer in the workflow, so good schema mapping reduces manual cleanup later.
The interface exposes two inputs: Source Schema and Target Schema. Each is populated from the selected databases.
A single reconciliation can include multiple schema mappings, and every pair can be edited or removed later.
Before Compare proposes table pairs, you can filter which tables are even eligible on the source and target side.
Good schema filters make later table mapping faster, more precise, and easier to review.
Filtering modes
Each side of the schema pair can apply its own table filter. This is especially useful when a schema contains technical, historical, or temporary tables that should not participate in the comparison.
Includes all tables from the selected schema with no additional filtering. Use it when the schema is already clean and comparison-ready.
Filters tables by name using a pattern such as LOG_%. The rule can be applied as
LIKE or NOT LIKE.
Large schemas Narrow the comparison to business tables instead of scanning every object.
Mixed naming conventions Align source and target subsets even when schemas contain extra prefixes.
Temporary exclusions Drop archive, staging, or technical tables without changing the schema itself.
Example schema inventory
This view is easier to read as an object inventory than as a flat table because the operator can immediately spot complete source-target candidates and incomplete bindings.
Example pattern matches
SOURCE_%TARGET_%MY_SOURCE_%MY_TARGET_%SOURCE_%MY_TARGET_%DUMMY_TABLE%_TABLEDUMMY_TABLETARGET_%_Pattern design directly affects which table pairs are proposed later. If the source and target filters do not produce a compatible set, Compare will have nothing meaningful to match.