Hi friends if u don't mind i want one question What abt
READ MULTIFILE COMPONENT? PLZ GIVE BRIEFLY?

Answers were Sorted based on User's Feedback



Hi friends if u don't mind i want one question What abt READ MULTIFILE COMPONENT? PLZ GIVE B..

Answer / dhirendra

Reads an input record from the in port.
Passes the input record to the get_filename transform
function.
If the get_filename function returns a string that does not
contain a valid filename, or if the file derived from the
string is empty or missing, Read Multiple Files proceeds
according to what is specified in the filename-error, file-
empty, and file-missing parameters.
If the get_filename function returns a string containing a
valid filename, Read Multiple Files retrieves the specified
file.
NOTE: The input file specified in the string must be local
to the machine where Read Multiple Files is running. Note
also that in multifile layouts, different instances of Read
Multiple Files can be running on different computers, so
input filenames referring to directories that exist only on
particular computers must be partitioned carefully. To use
relative paths, use the DML function this_partition_path.

Opens the specified file and reads records from it:
If an input_type data type is defined in the transform
package, Read Multiple Files uses this type to read records
from the file. If you omit input_type, Read Multiple Files
uses the record type defined on the out port.
If the filter parameter was set to Range, and the skip-
count parameter is non-0, Read Multiple Files skips the
specified number of records before reading subsequent
records from the file.
If the filter parameter was set to Range, and the read-
count parameter is non-0, Read Multiple Files reads up to
this maximum number of records from the file. If read_count
is less than or equal to zero, Read Multiple Files reads
the remainder of the file.
Read Multiple Files writes records to the out port.
If a reformat function is defined in the transform package,
the component passes each record read from the input file
to the reformat function, along with the filename. The
output of the reformat function is written to the out port.
If you omit a reformat function, but provide an input_type
data type in the package, the component behaves like a
Reformat component with no transform package, reading
records from the file using the input_type, and performing
any conversion necessary to match the record format on the
out port.
If the reject and error ports are connected to flows and
the reformat transform function returns NULL, Read Multiple
Files writes an error message to the error port and the
current record to the reject port.
Read Multiple Files stops execution of the graph when the
number of reject events exceeds the value given by the
following formula:

limit + (ramp * number_of_records_processed_so_far)

For details, see "Setting limit and ramp for reject events"

If you do not connect flows to either the reject or error
port, Read Multiple Files does not write an error message
and discards the rejected record.

Is This Answer Correct ?    1 Yes 0 No

Hi friends if u don't mind i want one question What abt READ MULTIFILE COMPONENT? PLZ GIVE B..

Answer / raju_mortale

Read Multiple Files is useful for reading records from a number of different target files. It extracts the filenames of these files from the component’s input flow. Then it reads the records from each target file and writes the records to the output port. (You can set optional parameters to control how many records Read Multiple Files skips before starting to read records, and the maximum number of records it reads.) An optional transform function allows you to manipulate the records or change their formats before they are written as output.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More Ab Initio Interview Questions

What are the Types of parallelism in detail?

0 Answers  


Do you think effective communication is necessary for data processing?

0 Answers  


What is the significance of record required indicator of Join component ? How to use in abinitio graph?

2 Answers   IBM, TCL,


what is different daily and monthly develop the abinitio graphs?

1 Answers   TCS,


what is difference between chk point n phase.Say im loading a file (containig 1 lakh records) and my graph fails after loading 50,000th record.What is the advantage of using check point in this case. Will i be able to start from 51000th record.

1 Answers   IBM,






What is sandbox?

0 Answers  


How to add default rules in transformer?

0 Answers  


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

0 Answers  


What is the syntax for m_dump in abinitio?

0 Answers  


How can you export a component’s internal parameters ?

0 Answers   TCL,


what is skew and skew measurement?

2 Answers   TCS,


Can someone tell me the behaviour of next_in_sequence() and innovation_number() in a multifile. Suppose I have records 1,1,1,2,2,3,4,4 in a 4ways mfs file. Data in each partition is: 0th : 1,1,1 1st : 2,2 3rd : 3 4th : 4,4 What will be the sequence of these records if I pass next_in_sequence() and innovation_number() ? Also how can I extract 3rd record from each of the 4 partitions of a 4way multifile through AbInitio? In unix we can use m_dump

1 Answers  


Categories