Monday, November 12, 2012

Expression Transformation

• Passive and connected transformation.
Use the Expression transformation to calculate values in a single row before we write to the target.
For example, we might need to adjust employee salaries, concatenate first and last names, or convert strings to numbers.
Use the Expression transformation to perform any non-aggregate calculations.
Example: Addition, Subtraction, Multiplication, Division, Concat, Uppercase conversion, lowercase conversion etc. We can also use the Expression transformation to test conditional statements before we output the results to target tables or other transformations.

Example: IF, Then, Decode There are 3 types of ports in Expression Transformation:
• Input
• Output
• Variable: Used to store any temporary calculation.

Calculating Values : To use the Expression transformation to calculate values for a single row, we must include the following ports:
• Input or input/output ports for each value used in the calculation: For example: To calculate Total Salary, we need salary and commission.
• Output port for the expression: We enter one expression for each output port. The return value for the output port needs to match the return value of the expression. We can enter multiple expressions in a single Expression transformation. We can create any number of output ports in the transformation.
Example: Calculating Total Salary of an Employee
• Import the source table EMP in Shared folder. If it is already there, then don’t import.
• In shared folder, create the target table Emp_Total_SAL. Keep all ports as in EMP table except Sal and Comm in target table. Add Total_SAL port to store the calculation.
• Create the necessary shortcuts in the folder.
Creating Mapping:
1. Open folder where we want to create the mapping.
2. Click Tools -> Mapping Designer.
3. Click Mapping -> Create -> Give mapping name. Ex: m_totalsal
4. Drag EMP from source in mapping.
5. Click Transformation -> Create -> Select Expression from list. Give name and click Create. Now click done.
6. Link ports from SQ_EMP to Expression Transformation.
7. Edit Expression Transformation. As we do not want Sal and Comm in target, remove check from output port for both columns.
8. Now create a new port out_Total_SAL. Make it as output port only.
9. Click the small button that appears in the Expression section of the dialog box and enter the expression in the Expression Editor.
10. Enter expression SAL + COMM. You can select SAL and COMM from Ports tab in expression editor.
11. Check the expression syntax by clicking Validate.
12. Click OK -> Click Apply -> Click Ok.
13. Now connect the ports from Expression to target table.
14. Click Mapping -> Validate
15. Repository -> Save Create Session and Workflow as described earlier. Run the workflow and see the data in target table.
As COMM is null, Total_SAL will be null in most cases. Now open your mapping and expression transformation. Select COMM port, In Default Value give 0. Now apply changes. Validate Mapping and Save. Refresh the session and validate workflow again. Run the workflow and see the result again. Now use ERROR in Default value of COMM to skip rows where COMM is null.
Syntax: ERROR(‘Any message here’) Similarly, we can use ABORT function to abort the session if COMM is null.
Syntax: ABORT(‘Any message here’) Make sure to double click the session after doing any changes in mapping. It will prompt that mapping has changed. Click OK to refresh the mapping. Run workflow after validating and saving the workflow. Performance tuning : Expression transformation is used to perform simple calculations and also to do Source lookups. 1. Use operators instead of functions. 2. Minimize the usage of string functions. 3. If we use a complex expression multiple times in the expression transformer, then Make that expression as a variable. Then we need to use only this variable for all computations.

2 comments:

  1. We are Urgently looking for Tutors for Teaching USA , UK and Indian Students.

    Salary:
    Payments from USA Students: Rs1200 to Rs2500 Per Hour
    Payments from UK Students: Rs1200 to Rs2500 Per Hour
    Payments from INDIAN Students: Rs500 to Rs1500 Per Hour

    Job Type: Home Tuition, Online Tuition, Home work help, Part time tuition, Teaching.

    Please register your profile to Tutors99.com and get the classes for free. Student will call you immediately after registration.

    please complete registration as soon as possible. http://tutors99.com/en/auth/create_user/Tutor

    Regards
    Jasmine Wilson
    Tutors99.com

    ReplyDelete
  2. Can you please explain why to use Operators instead of functions ,minimize the usage of string functions(Performance tuning)

    ReplyDelete

Thank you :
- kareem