In the mapping definition for a feature class, you specify properties as shown in the following table.
Property |
Description |
Include In Mapping Definition |
Includes the settings in the mapping definition. |
Migration Method |
Specifies the migration method.
|
Filter |
Use a filter to import a project. For example, for each feature class, use the filter IMPORT_ID = {IMPORT_ID}. Then, the import process replaces the value of the parameter {IMPORT_ID} with the value corresponding to the selected project. |
Comments |
Stores any comments, for example, that explain why a method has been chosen. |
Migration Model - Using a filter—For example, select the Update Existing Feature Using A Filter option, if you need to update existing data instead of inserting data.
Sample scenario: Database A stores parcel data, database B stores additional data for the same parcels. To migrate the parcel data, you execute two migration steps.
Use the alias "s" for the source table and the alias "t" for the final table. For Example:
s.fid = t.fid s.flur=t.flur and s.stammnummer=t.stammnummer and s.unternummer=s.unternummer
Using these expressions, the following Update statement is used.
update AL_F_FLUR t SET (NAME,KENNUNG) = (SELECT NAME,KENNUNG FROM AL_F_FLUR s WHERE s.fid = t.fid)
In this case the attributes NAME and KENNUNG have been selected in the dialog box.
You can use placeholders, see TB2TB: SQL Statements and Placeholder.