Can you use scan to generate sequence number ? How to use in abinitio graph?
Answer Posted / saba
In the scan component,you can declare a variable for the sequence number generation.Initialize this variable with 0 and store it in another variable. Then increase the new variable by 1,suppose count is the new variable do it like count = count+1 and finally u can use this count variable or else you can store it in another field..it depends upon ur dml.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What are the functions of the replicate and dedup component?
How to convert a single column values 1 2 3 4 to single row of 4 columns ? And vice-versa
What is the difference between dml expression and xfr expression?
List out the file extensions used in abinitio?
What are the different types of partition components in abinitio?
How to create repository in abinitio for stand alone system(local nt)?
What is the max core of a component?
What are the operations that support avoiding duplicate record?
What do you mean by a transaction file?
What is flow buffering ? How it reduces the chances of having deadlock ? How to use in abinitio graph?
What is local and formal parameter?
What do you understand by overflow errors?
What does it mean by the term 'sort component'?
Suppose we assign you a new project. What would be your initial point and the key steps that you follow?
Given input file with single column having 1 2 2 4 3 .. Required output 1 2 2 4 4 4 4 3 3 3.. How?