Page 1 of 1

what is the exact difference between routine and transfroms?

Posted: Mon Mar 12, 2007 10:20 pm
by mallikharjuna
what is the exact difference between routine and transfroms?

Posted: Mon Mar 12, 2007 11:25 pm
by kumar_s
Diff between Routine and Transform is, transform code will be included during the time of job compilation. Where as Routine will be called each time. Hence the startup time for the job using Routine may be more when compared to Transform.

Posted: Tue Mar 13, 2007 6:26 am
by ray.wurlod
Also, if the definition of a Transform changes, every job that uses it has to be re-compiled, whereas if the logic of a Routine changes, only the routine itself has to be re-compiled (unless the number of arguments changes).

Posted: Tue Mar 13, 2007 6:30 am
by kumar_s
Since the code of the Transform is included during compilation, any change to Transform after that will not affect the current job settings. Unless job is recompiled, which will again look for the latest available code of Transform.

Posted: Tue Mar 13, 2007 7:37 am
by DSguru2B
A simple search would have turned out the answers.
Post 1
Post 2