Skip to main content
Skip table of contents

source_entity_name_{N}

Resolved as the Nth source entity name in load execution.


See also:


Usage

CODE
<source_entity_name_2>

Notes

Supported in all loads.

Works with multiple entity mappings, source_entity_schema_{N} and source_entity_name_{N}, where N refer to the entity mapping position. Also see entity mapping types.


Examples

Variable used in an OVERRIDE load step

OVERRIDE load step in a load with an entity mapping with source entity staging.STG_ADVENTUREWORKS_DEPARTMENT and
reference.DATA_LOOKUP:

SQL
select
  ...
from <source_entity_schema>.<source_entity_name> a
join <source_entity_schema_2>.<source_entity_name_2> b on (a.id = b.id)

Load executed in the target database:

SQL
select
  ...
from staging.STG_ADVENTUREWORKS_DEPARTMENT a
join reference.DATA_LOOKUP b on (a.id = b.id)

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.