Constraint in transformer

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
monaz
Participant
Posts: 98
Joined: Sat Aug 23, 2008 3:14 am

Constraint in transformer

Post by monaz »

hi,

Can any one guide me what does below logic means it was present in one of the job ,

The logic is in transformer constriant specially what does =1 means here

(DayssinceFromDate(EndDatetime, CurrentTime())<765 and Description<>' ')=1

Please let me know your comments on this.

Thanks
nitkuar
Participant
Posts: 46
Joined: Mon Jun 23, 2008 3:09 am

Post by nitkuar »

equals to 1 here means that conditions(both) specified with the braces should be true.
Even if you remove '= 1' here, it should give same result.
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Conditions get evaluated to "True" and "False", these are equivalent to "1" and "0" in DataStage, respectively.
Post Reply