You are on page 1of 1

In Attribute view:

Generate concat Attributes:


SELECT *
FROM M_CS_ALL_COLUMNS
WHERE TABLE_NAME = MATPLANT
AND SCHEMA_NAME = QBEX
Select *, $trexexernalkey$ from QBEX.Matplant
1. This option is used when we join tables on 2 or more columns.
2. It creates an extra column in the base database table which stores the
concatenated values of both the columns to speed up the join.
3. We have to be careful on this option as enabling this option will occupy extra
space in the database.
4. Use an database view (M_CS_ALL_COLUMNS) in SYS schema to view the new
columns added in database table.
5. The value of this property determines whether modeler must generate
additional concat
attribute to improve the performance of multiple column joins. If set to True,
then modeler generates additional concat attributes for those columns
involved in the multiple
column joins of physical tables.

You might also like