How do you run a graph successfully with a reformat component which is failing due to data issue??
How do you pass the parameters of a graph from the backend?
Hi if want to run the graph in UNIX !What command I need to use ?Correct me if im wrong :-run
$ksh -x scriptname graph parameters
Thanks
Srinivas j
You can deploy the graph and generate the
air sandbox run
3 way join with different column names.
Hi, i have 3 files each having 2 cols e.G file1 empid deptid 1 100 2 200 3 200 4 100 5 300 file2 empid salary 1 10 2 20 3 30 4 40 5 ...
Step 1: File1 - left outer Join {Key- empid} with -File2 Step 2: The above output flow should be sort{PBKS-if multifile} based on key empid Step 3: The step 2s o/p flow to be left outer joi...
Code
SELECT C.DEPTNAME,sum(B.SALARY) FROM FILE1 A ,FILE2 B ,FILE3 C WHERE A.EMPLID=B.EMPLID AND A.DEPTID=C.DEPTID GROUP BY C.DEPTNAME
What is a framework in abinitio all about? Can anybody explain me in detail about what an abinitio developer in general does in his job?
The expected roles of abinitio developer has been below: i) Know how to work in Abinitio products GDE,EME,Co>Op & good exposure to unix scripting to create wrapper scripts & execute basic commands. ii...
What is air sandbox in ab initio?
Air sandbox commands are used to run a graph,pset from the Unix
How to write the script in abinitio by using UNIX?
You can create a script in UNIX in the general way like you are writing a shell script.
How can you set the parameters to call the graphs?
edit > parameters or F11
How to separate duplicate records with out dedup sorted from the grouped input file?
We can achieve that through the rollup ...
Rollup will help to avoid the duplicate without using dedup component.
It takes the first record and reject the rest
Removing header and trailer records
How to remove header and trailer records from a file using abinitio components?
Use Unix SED #--------------------------------------------------------------# # This line removes both the header and the trailer record #----------------------------------------------------------...
You cam redefine format, Filter by expression & Run program components.
Abinitio dml usage in Informatica source creation
Can we create an Informatica source by using the dml of the corresponding abinitio source,by importing the dml,without using the manual create source option?
What is a control file in abinitio?
In Abinitio, we have Multifile System. Multifiles are like different partitions of an original file. For example, if we take a 4 way partition file, which implies, data of an original file is stored i...
Which file should we keep it as a look up file, large file or less data records file & why?
When we say lookup, it can be in serial or it can in MFS and generally based on the application logic we decide what kind of lookup it needs to be. And again we need to think on the natire of the loo...
Lookup File should be of small size or less number records. This is because, when the graph is invoked, all the data in the lookup file file will be loaded into memory..This means..if the data in the...
How to get sort data in i/p by using single component in abinitio?
You can use sort component to get the sorted output.
--
Siva Sankar Pulivarthi
What are the two types of .Dbc files
.dbc file is database configuration file. In this file, information to connect the database is given.
Types of files:
1. Fixed length file
2. Delimited file
We don't have diff types of dbc file. We have only one dbc file which is used to connect the component in the GDE with particular database
What is "package" and "package editor" and how and why it is used.
Once you log in to transform editor click on view and go to package editor. It is used to have extra tranform abilities like intialise, finalise etc
Why wrapper scripts are used in job scheduler to run graphs in ab initio? Why cannot we use .Ksh script in job scheduler to schedule job?
wrapper Script executes multiple graphs(or) jobs,that means multiple .ksh jobs are going to execute here,
where coming to .ksh which will be execute a single component process. that means every component process having the .ksh process
What is vector field? Explain.
Hi Can u please explain it with example, i need to build the vector for comparison of the inputs records , if that records matches then i take the output
Vector field is like an array which is used in C/C++.
Its mainly used in normalize and denormalize component.
What is factless fact?
The fact which is not having any measures(like Quantity) are called factless fact