Load Mapper

The loaddata command is a very efficient and quick way to load bulk data. The main benefit is its enormous speed to load thousands of rows (compared to e.g. integrate). The main drawback is that it will always work on entire rows. That means that with loaddata it is not possible to update just some columns. The source data must always contain the entire row’s content. This command only works on selected data types (type codes).

<loadMapper id="productMapper"> <body in="sku" /> <body in="company_name" out="company" /> <body in="price" out="price" converter="stringToNumber"/> </loadMapper>

IntegrationManager version 5.8.0