S) How to merge two different column into a single column

input        Output

1 A             1A

2 B              2B

3 C              3C

4 D              4D

 

 

 

 

 

Reformat 

Out ::reformat(in)= 

begin 

Out.alfa ::string_concat(in.id,in.alfa); 

end 

 

Input DML 

 

record 

decimal("|")id; 

string("\n")alfa; 

end 

 

Output DML 

record 

String(“\n”)alfa; 

end 

 

Comments

Popular posts from this blog

T) For data parallelism, we can use partition components. For component parallelism, we can use replicate component. Like this which component(s) can we use for pipeline parallelism?

T) When to use sort within groups ?

T) Explain about on .abi-unc files in abinitio ?