Search found 53125 matches
- Fri Mar 24, 2006 4:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parrellel jobs and C++ compiler
- Replies: 6
- Views: 1375
- Fri Mar 24, 2006 4:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: report generation
- Replies: 9
- Views: 2811
- Fri Mar 24, 2006 3:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Migration using Datastage
- Replies: 2
- Views: 1111
Involve business analysts. The first step, irrespective of the tool ultimately chosen, is to plan the migration. Deliverable from this phase is a set of target-from-source mapping documents. Combined with entity-relationship diagrams of the target database you can then plan the load order. Other fac...
- Fri Mar 24, 2006 3:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TimeStamp with milliseconds in PX job
- Replies: 5
- Views: 1270
- Fri Mar 24, 2006 3:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage MVS
- Replies: 3
- Views: 818
- Fri Mar 24, 2006 3:40 pm
- Forum: Site/Forum
- Topic: Site slow?
- Replies: 3
- Views: 2000
- Thu Mar 23, 2006 11:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: BASIC routine -> Parallel routine
- Replies: 2
- Views: 945
A parallel routine would need to be written in C++, and you would need to figure out some way to mimic a key-based write to some kind of structure (hashed files not being directly available). But, theoretically, it's do-able. You might consider investigating the Surrogate Key Generator stage in para...
- Thu Mar 23, 2006 7:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: JOB report on Category/Folder
- Replies: 18
- Views: 4521
- Thu Mar 23, 2006 6:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: switch and filter
- Replies: 3
- Views: 1159
- Thu Mar 23, 2006 6:49 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Decimal problem
- Replies: 6
- Views: 1532
Is Scale 0 or is Scale empty? (If the latter there's a problem with the import process - try importing Orchestrate schema definition using dbutil to access the table.) The two values you've cited are, of course, the minimum and maximum possible int32 values; DataStage treats Decimal without a scale ...
- Thu Mar 23, 2006 5:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: @INROWNUM Problem
- Replies: 3
- Views: 1397
Unless your stage is operating in sequential mode (which rather defeats the purpose of having parallel jobs), you are generating multiple streams of values. If you need a strategy for generating unique numbers across all streams, try a cycle beginning with the partition number and incrementing by th...
- Thu Mar 23, 2006 12:10 am
- Forum: Site/Forum
- Topic: GMT and Time Zone
- Replies: 0
- Views: 1452
GMT and Time Zone
Private Message Hi, Can u pls let me know as to how to convert the time to GMT or other time zones from the given timestamp. Thanks, kalyan Response I can, but an approach via private message or private email is regarded as a request to engage professional services. If that's what you'd like - for ...
- Thu Mar 23, 2006 12:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: OCONV function
- Replies: 1
- Views: 2126
- Thu Mar 23, 2006 12:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Plugin stages
- Replies: 1
- Views: 735
- Thu Mar 23, 2006 12:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Where to start to write parallel routine
- Replies: 1
- Views: 726
Start with "The Elements of Programming Style" so that you can learn about designing functions. Then a good primer on the C++ programming language. Design, code, compile and test your C++ function (adapt an existing or create a new make file). Build it into a shared library, if you haven't already d...