Ab Initio Data Warehousing Question:
Download Job Interview Questions and Answers PDF
Have you used rollup component? Describe how?
Answer:
If the user wants to group the records on particular field values then rollup is best way to do that. Rollup is a multi-stage transform function and it contains the following mandatory functions.
1. initialise
2. rollup
3. finalise
Also need to declare one temporary variable if you want to get counts of a particular group.
For each of the group, first it does call the initialise function once, followed by rollup function calls for each of the records in the group and finally calls the finalise function once at the end of last rollup call.
1. initialise
2. rollup
3. finalise
Also need to declare one temporary variable if you want to get counts of a particular group.
For each of the group, first it does call the initialise function once, followed by rollup function calls for each of the records in the group and finally calls the finalise function once at the end of last rollup call.
Download Ab Initio Interview Questions And Answers
PDF
Previous Question | Next Question |
What are primary keys and foreign keys? | How do you convert 4-way MFS to 8-way mfs? |