What is conditional DML and Structured DML?
Answer Posted / keerthika
Structure DML is usually used to read data file that contains records in each with same data format.
Conditional DML using data file will contain cluster of records in each row with different data format, each record can be read using different conditional DML based on the record identifier at the start of each record row
Structure DML Sample :
record
string(5) name;
decimal(10) contact_number;
end;
Conditional DML Sample :
if(record_identifier=='H') then
record
string(5) file_name;
end;
else if(record_identifier=='D') then
record
string(5) name;
decimal(10) contact_number;
end;
else if(record_identifier=='T') then
record
decimal(10) record_count_in_file;
end;
| Is This Answer Correct ? | 12 Yes | 0 No |
Post New Answer View All Answers
What is the difference between partitioning with key / hash and round robin?
Have you ever encountered an error called “depth not equal”?
Why is data processing considered beneficial?
Explain how you can run a graph infinitely in ab initio?
What is the architecture of abinitio?
Explain the ab initio etl tool in high level?
explain the environment varaibles with example?
What information is provided by .dbc file extension for connecting to the database?
How can a graph be run infinitely?
Explain how abinitio eme is segregated?
How to compare two dmls in abinitio
Describe what the SQL Server tempdb and tlog files are used for?
Can some tell me at which level pdl gets resolved when parameters are resolved in abinitio? Also what happens in dml evaluation during parameter evaluation ?
What do you understand by local lookup?
Have you worked with packages?