Corporate Training
Request Demo
Click me
Menu
Let's Talk
Request Demo

Abinitio Interview Questions and Answers

by Mohammed, on Mar 22, 2018 3:19:10 PM

Abinitio Interview Questions and Answers

Q1. What does dependency analysis mean in Ab Initio?

Ans: Dependency analysis will answer the questions regarding datalinage.That is where does the data come from,what applications prodeuce and depend on this data etc.
We can retrieve the maximum (surrogate key) from the existing data,the by using scan or next_in_sequence/reformat we can generate further sequence for new records.

Q2. What is de-partition in Abinitio?

Ans: De-partition is done in order to read data from multiple flow or operations and are used to re-join data records from different flows. There are several de-partition components available which includes Gather, Merge, Interleave, and Concatenation.

Q3. What is a local lookup?

Ans:
• Local lookup file has records which can be placed in main memory
• They use transform function for retrieving records much faster than retrieving from the disk.

Q4. What is a ramp limit?

Ans:
• A limit is an integer parameter which represents a number of reject events
• Ramp parameter contain a real number representing a rate of reject events of certain processed records
• The formula is – No. of bad records allowed = limit + no. of records x ramp
• A ramp is a percentage value from 0 to 1.
• These two provides the threshold value of bad records.

Q5.  What does dependency analysis mean in Abinitio?

Ans: In Abinitio, dependency analysis is a process through which the EME examines a project entirely and traces how data is transferred and transformed- from component-to-component, field-by-field, within and between graphs.

Q6. When using multiple DML statements to perform a single unit of work, is it preferable to use implicit or explicit transactions, and why?

Ans: Because implicit is using for internal processing and explicit is using for user open data requied.

Q7.Explain what is SANDBOX?

Ans: A SANDBOX is referred for the collection of graphs and related files that are saved in a single directory tree and behaves as a group for the purposes of navigation, version control, and migration.

Q8. How do you add default rules in transformer?

Ans: The following is the process to add default rules in transformer

  • Double click on the transform parameter in the parameter tab page in component properties
  • Click on Edit menu in Transform editor
  • Select Add Default Rules from the dropdown list box.
  • It shows Match Names and Wildcard options. Select either of them.

Q9. What is the role of Co-operating system in Abinitio?

Ans: The Abinitio co-operating system provide features like Manage and run Abinitio graph and control the ETL processes.

  • Provide Abinitio extensions to the operating system
  • ETL processes monitoring and debugging
  • Meta-data management and interaction with the EME

Q10. Describe the Grant/Revoke DDL facility and how it is implemented?

Ans: Basically,This is a part of D.B.A responsibilities GRANT means permissions for example GRANT CREATE TABLE ,CREATE VIEW AND MANY MORE .
REVOKE means cancel the grant (permissions).So,Grant or Revoke both commands depend upon D.B.A.

Q11. State the first_defined function with an example.

Ans: This function is similar to the function NVL() in Oracle database
It performs the first values which are not null among other values available in the function and assigns to the variable
Example: A set of variables, say v1,v2,v3,v4,v5,v6 are assigned with NULL.
Another variable num is assigned with value 340 (num=340)
num = first_defined(NULL, v1,v2,v3,v4,v5,v6,NUM)
The result of num is 340

Q12. Explain what is the architecture of Abinitio?

Ans: Architecture of Abinitio includes
GDE (Graphical Development Environment)
Co-operating System
Enterprise meta-environment (EME)
Conduct-IT

Q13. What is MAX CORE of a component?

Ans: MAX CORE is the space consumed by a component that is used for calculations
Each component has different MAX COREs
Component performances will be influenced by the MAX CORE’s contribution
The process may slow down / fasten if a wrong MAX CORE is set

Q14. How to run a graph infinitely?

Ans: To run a graph infinitely…The .ksh graph file should be called by the end script in the graph.If the graph name is abc.mp then the graph should call the abc.ksh file.

Q15. Explain PDL with an example?

Ans: To make a graph behave dynamically, PDL is used
Suppose there is a need to have a dynamic field that is to be added to a predefined DML while executing the graph Then a graph level parameter can be defined
Utilize this parameter while embedding the DML in output port.
For Example : define a parameter named myfield with a value “string(“ | “”) name;”
Use ${mystring} at the time of embedding the dml in out port.
Use $substitution as an interpretation option

 

Q16. Describe the elements you would review to ensure multiple scheduled batch jobs do not collide with each other?

Ans: Because every job depend upon another job for example if you first job result is successfull then another job will execute otherwise your job doesn’t work.

Q17. Explain the methods to improve performance of a graph?

Ans: The following are the ways to improve the performance of a graph :
• Make sure that a limited number of components are used in a particular phase
• Implement the usage of optimum value of max core values for the purpose of sorting and joining components.
• Utilize the minimum number of sort components
• Utilize the minimum number of sorted join components and replace them by in-memory join / hash join, if needed and possible
• Restrict only the needed fields in sort, reformat, join components
• Utilize phasing or flow buffers when merged or sorted joins
• Use sorted join, when two inputs are huge, otherwise use hash join

Q18. What is Sort Component in Abinitio?

Ans: The Sort Component in Abinitio re-orders the data. It comprises of two parameters “Key” and “Max-core”.
• Key: It is one of the parameters for sort component which determines the collation order
• Max-core: This parameter controls how often the sort component dumps data from memory to disk

Q19. Describe the process steps you would perform when defragmenting a data table. This table contains mission critical data?

Ans: There are several ways to do this:
1) We can move the table in the same or other tablespace and rebuild all the indexes on the table.
alter table <
table_name>
move <tablespace_name>
this activity reclaims the defragmented space in the table
analyze table table_name compute statistics to capture the updated statistics.
2)Reorg could be done by taking a dump of the table, truncate the table and import the dump back into the table.

Q20. We know rollup component in Abinitio is used to summarize group of data record then why do we use aggregation?

Ans:
• Aggregation and Rollup, both are used to summarize the data.
• Rollup is much better and convenient to use.
• Rollup can perform some additional functionality, like input filtering and output filtering of records.
• Aggregate does not display the intermediate results in main memory, where as Rollup can.
• Analyzing a particular summarization is much simpler compared to Aggregations.

Q21. How can you force the optimizer to use a particular index?

Ans: Use hints /*+ <hint> */, these acts as directives to the optimizer

Q22. Have you used rollup component? Describe how?

Ans: 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.

Q23. Mention what information does a .dbc file extension provides to connect to the database?

Ans: The .dbc extension provides the GDE with the information to connect with the database are
• Name and version number of the data-base to which you want to connect
• Name of the computer on which the data-base instance or server to which you want to connect runs, or on which the database remote access software is installed
• Name of the server, database instance or provider to which you want to link

Q24. Mention how can you connect EME to Abinitio Server?

Ans: To connect with Abinitio Server, there are several ways like
• Set AB_AIR_ROOT
• Login to EME web interface- http://serverhost:[serverport]/abinitio
• Through GDE, you can connect to EME data-store
• Through air-command

Q25. Describe the Evaluation of Parameters order.

Ans: Following is the order of evaluation:
• Host setup script will be executed first
• All Common parameters, that is, included , are evaluated
• All Sandbox parameters are evaluated
• The project script – project-start.ksh is executed
• All form parameters are evaluated
• Graph parameters are evaluated
• The Start Script of graph is executed

Topics:Abinitio interview questions and AnswersInformation Technologies (IT)

Comments

Subscribe

Top Courses in Python

Top Courses in Python

We help you to choose the right Python career Path at myTectra. Here are the top courses in Python one can select. Learn More →

aathirai cut mango pickle

More...