target_schema
Resolved as the schema of the target entity in load execution.
See also:
Usage
VARIABLE
<target_schema>
Notes
Supported in all loads.
Examples
Variable used in an OVERRIDE load step
OVERRIDE load step in D_RATECODE entity:
SQL
insert into <target_schema>.<target_entity_name>
select ...;
Load executed in the target database:
SQL
insert into publish.D_RATECODE
select ...;