Ab Initio ETL and Data Processing
Covers Ab Initio Graphical Development Environment components, DML, utilities, and data processing concepts including parallelism, transformations, and ETL operations.
Questions
Input File(Serial)-Reformat-Output File(Serial) Which form of Parallelism is present in this design?
- Component Parallelism
- Pipeline Parallelism
- Data Parallelism
- Multifile Parallelism
Which command is used to display the contents of multi file?
- m_ls
- m_expand
- m_dump
- m_mkfs
How to view last 5 records from a dataset having total 20 records in unix?
- m_dump xyz.dml xyz.dat -start 1 -end 20
- m_dump xyz.dml xyz.dat -start 15
- m_dump xyz.dml xyz.dat
- m_dump xyz.dat -end 20
Which utility converts cobol copybook to dml record format?
- ab_expression_info
- Cobol-to-dml
- not possible to autogenerate dml
- Dml-to-wsdl
Which of the following is a false statement about conditional dml ?
- A conditional field must not contain a reference to either a lookup function or a global variable.
- Although DML syntax allows you to include a function field as part of a conditional field, the function field is not conditional and works the same way whether or not the condition is met.
- A record type cannot declare nullable and conditional fields at the same time.
- A conditional field can share a delimiter with the record.
- For a conditional field to be nullable, it must have a default value.
Which is not a valid key specifier in SORT
- {}
- {cust_id;cust_no}
- {id; age descending; last_name }
- desc cust_id
If you want to add or drop fields which component do you prefer
- Sort
- Redefine Format
- Join
- Reformat
If you want to change the DML leaving the DATA unchanged which component do you prefer
- Sort
- Redefine Format
- Join
- Reformat
Which one is not a DML type?
- String
- Char
- Decimal
- Integer
Which data type store data in binary form?
- String
- Decimal
- Date and Datetime
- Integer
Which is not a valid join-type for the component
- Inner Join
- Outer Join
- Self Join
- Explicit
Record-required parameter is available when the joi-type is ____ .Fill the blank
- Inner Join
- Outer Join
- Self Join
- Explicit
What is the most important parameter in a Reformat?
- count
- transform
- select
- ramp
Which component does not need a key?
- Sort
- Rollup
- Join
- Reformat
In which component the number of records in output may be different from that of input
- Sort
- Rollup
- Redefine Format
- Reformat
What are the diagonistic ports?
- reject,out,log
- reject,error,log
- in,out,log
- out,error,log
With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with an "a"?
- SELECT * FROM Persons WHERE FirstName LIKE '%a'
- SELECT * FROM Persons WHERE FirstName='a'
- SELECT * FROM Persons WHERE FirstName LIKE 'a%'
- SELECT * FROM Persons WHERE FirstName='%a%'
Which components of cognos are used for Multidimensional Reporting?
- Analysis Studio
- Query Studio
- Event Studio
- Metric Studio
Which keyword will be used in SQL statement in order to return only different values?
- DIFFERENT
- DISTINCT
- UNIQUE
- ALL