Search found 15603 matches
- Fri Jul 13, 2012 12:35 am
- Forum: General
- Topic: What is up with 8.7 documentation install?
- Replies: 4
- Views: 904
Vincent - I've done 3 8.7 installations so far and have found the same thing. While the documentation is available online, I only have a 4800 Baud connection at my flat so that isn't any help at all, by the time I've downloaded a single help page I could have taken a bus, then a train, then walked t...
- Thu Jul 12, 2012 9:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: datastage error
- Replies: 4
- Views: 1372
- Thu Jul 12, 2012 4:19 am
- Forum: General
- Topic: Usage analysis in Datastage
- Replies: 4
- Views: 2765
- Thu Jul 12, 2012 2:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Standardization Truncation warning messages limit
- Replies: 3
- Views: 1352
The programming on how many warnings to display at runtime is in each stage and I don't know of an environment setting that is read, I believe it is hard coded in each stage. This would be worth asking your support provider and I'd be interested in learning if there is a central setting somewhere. I...
- Thu Jul 12, 2012 1:54 am
- Forum: General
- Topic: Usage analysis in Datastage
- Replies: 4
- Views: 2765
Since table names can be parameters there isn't an easy generic way to do this. If you always use the same table column definitions then you can see where that has been used (but it won't tell you whether as source or target). I would think about doing an export of the project into either .dsx or .x...
- Thu Jul 12, 2012 1:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need help on rounding a decimal to nearest integer multiple
- Replies: 14
- Views: 2830
Let's start the ball rolling with: StageVariable SvInteger INT(In.Col) StageVariable SvModulo MOD(SvInteger,5) Derivation: IF SvModulo < 3 THEN SvInteger-SvModulo ELSE SvInteger+(5-SvModulo) Addendum - oddly, I didn't see any of the other posts when I posted this and didn't realize that there had be...
- Wed Jul 11, 2012 11:11 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup not producing expected results
- Replies: 4
- Views: 1483
- Wed Jul 11, 2012 9:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to delete datasets created?
- Replies: 6
- Views: 2521
- Wed Jul 11, 2012 9:23 am
- Forum: General
- Topic: Deadlock management test case
- Replies: 6
- Views: 2075
- Wed Jul 11, 2012 9:14 am
- Forum: General
- Topic: Deadlock management test case
- Replies: 6
- Views: 2075
- Wed Jul 11, 2012 7:13 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to get the date in the required format
- Replies: 9
- Views: 1937
- Wed Jul 11, 2012 6:15 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Design question for Dynamic DataSet used in join
- Replies: 3
- Views: 906
- Wed Jul 11, 2012 5:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Design question for Dynamic DataSet used in join
- Replies: 3
- Views: 906
- Wed Jul 11, 2012 5:40 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to get the date in the required format
- Replies: 9
- Views: 1937
- Wed Jul 11, 2012 1:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unable to get the date in the required format
- Replies: 9
- Views: 1937
Dates and timestamps are stored in binary form during processing and have no format. It is only when importing or exporting that a conversion is made. Thus the question is at which point in processing are you converting from date to string? It is at that point that the system uses a conversion. Is t...