Posts

Showing posts with the label Graph Dependencies

T) I have one xfr. I would like to identify how many graphs are using that xfr?

  air object uses /Projects/sample/xfr/abc.xfr -top-level air object uses has been changed to air object referencing-files For grep u can also use grep -lR xfrname * Here, L for list file name and R for to check in each sub directory

T) Without opening a graph how should we know how many input files are using in that graph?

    Suppose you have graph with name ABC.mp. So to find the number of input datasets(IP files/IP tables..etc) using by the ABC.mp you can do the following:  air project get-required-file /Projectname/mp/ABC.mp > ListofInputfiles.dat     /* This wil save list of input files in file ListofInputfiles.dat */   cat ListofInputfiles.dat | wc -l       /* It will give the count of input datasets required by the graph */