Search found 6797 matches
- Thu Oct 26, 2006 9:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: modulus operator
- Replies: 10
- Views: 2769
- Thu Oct 26, 2006 8:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: modulus operator
- Replies: 10
- Views: 2769
Actually, OOPS
, i just checked. Thats not the correct syntax,
its Mod(In.link, 3) =0, So basically now my code would look like
its Mod(In.link, 3) =0, So basically now my code would look like
Code: Select all
Var: <any value>
cond:if Mod(In.link, 3) =0 then Var +1 else Var
- Thu Oct 26, 2006 8:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: finished (see log) - will it trigger next sequence
- Replies: 6
- Views: 1654
- Thu Oct 26, 2006 8:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: modulus operator
- Replies: 10
- Views: 2769
Two stage variables, Var and cond should get this done.
Code: Select all
Var: <any value>
cond:if (lnk.in mod 3) = 0 then Var +1 else Var
- Thu Oct 26, 2006 8:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: finished (see log) - will it trigger next sequence
- Replies: 6
- Views: 1654
- Thu Oct 26, 2006 8:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: "Not Equal" Lookup
- Replies: 13
- Views: 3219
- Thu Oct 26, 2006 8:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Row out of sequence error
- Replies: 12
- Views: 2767
- Thu Oct 26, 2006 7:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: "Not Equal" Lookup
- Replies: 13
- Views: 3219
- Wed Oct 25, 2006 1:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: testing a null value in a routine
- Replies: 11
- Views: 3264
You will not get 44444444 because once Arg1 is assigned to "idexecrec.EXEC_TELEPHONE " in the $DEFINE TESTING portion, you are reassighning it after the $ENDIF statement. Here test this idexecrec.EXEC_TELEPHONE = Arg1 idexecrec.LOC_TELEPHONE = Arg2 * Change to $UNDEFINE when done testing $DEFINE TES...
- Wed Oct 25, 2006 12:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: "Not Equal" Lookup
- Replies: 13
- Views: 3219
How about doing it at the database level. Something like
Code: Select all
select * from srctable where key not in (select key from lkuptbl)
- Wed Oct 25, 2006 11:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: testing a null value in a routine
- Replies: 11
- Views: 3264
- Wed Oct 25, 2006 11:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: length of a dynamic file
- Replies: 10
- Views: 3818
If it gave 896 then thats the size of just the column names. 896 bytes of data. Keep in mind that its not just column names, but also double quotes and delimiters. Add data to the file and then test my routine. Then delete data and only keep the column names and then test my routine. It should work....
- Wed Oct 25, 2006 10:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: length of a dynamic file
- Replies: 10
- Views: 3818
NOTE: where 807 is the length of the column headings. Mroethan that number means there is data in the file and mail will be trigegred. I am afraid you are wrong. readseq will only return the first line which will be column names and no matter how large the file is, that size will remain constant, u...
- Wed Oct 25, 2006 10:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: length of a dynamic file
- Replies: 10
- Views: 3818
- Wed Oct 25, 2006 10:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: testing a null value in a routine
- Replies: 11
- Views: 3264