Search found 4992 matches
- Wed Jun 28, 2006 1:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Passing values from excel to two jobs sequentially
- Replies: 13
- Views: 3742
If you can setup the job to run under multiple instances (unique file names, no locks, etc), then you could run several "configurations" from your csv file. The best option is to design the process so that it can run once and do everything necessary at one time for all of the values within your csv ...
- Wed Jun 28, 2006 1:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: 10 Table Move
- Replies: 7
- Views: 1698
Welcome aboard! Since DS is an ETL tool, it may seem cumbersome for such a simple task. You'll probably want a job per source table that writes to a sequential text file. Each target table will have a dedicated load job that reads the appropriate text file and loads the data. My assumption is that t...
- Wed Jun 28, 2006 1:03 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Broadcasting Adminstrator messages to client GUI.
- Replies: 2
- Views: 664
- Wed Jun 28, 2006 1:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: call another job from job control and wait if it is running
- Replies: 7
- Views: 1994
- Wed Jun 28, 2006 1:01 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Telnet Service
- Replies: 3
- Views: 705
- Wed Jun 28, 2006 11:21 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DataStage Telnet Service
- Replies: 3
- Views: 705
- Wed Jun 28, 2006 8:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Moving Persisted Hashed Files from Windows to Unix(AIX)
- Replies: 5
- Views: 1297
If you are talking about your hashed files created within the DataStage projects, you must also dump them to files and create on the unix side. If you mean things like the hashed files used in the SDK functions, you must copy those over as well. The thing to consider on those files is to build a job...
- Wed Jun 28, 2006 8:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Moving Persisted Hashed Files from Windows to Unix(AIX)
- Replies: 5
- Views: 1297
They won't be in the same state. You're going to need to dump your hashed files to sequential text files, ftp them to the unix box, then load them into the hashed files on the unix side. This will cause your hashed files to build fresh. If you have STATIC or specialty tuned (minimum modulos, etc) ha...
- Wed Jun 28, 2006 6:39 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Update SQL Query
- Replies: 18
- Views: 4048
- Wed Jun 28, 2006 6:24 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: call another job from job control and wait if it is running
- Replies: 7
- Views: 1994
- Tue Jun 27, 2006 9:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Performance: Can something be done at Datastage?
- Replies: 4
- Views: 1279
- Tue Jun 27, 2006 7:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to get Job Type (Sequence, Server or EE Job)
- Replies: 8
- Views: 1394
- Tue Jun 27, 2006 7:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Hash Partitioning
- Replies: 8
- Views: 2667
Yes. But... Why partition on all three? Or is this just an example? All partitioning is used to do is distribute data evenly across multiple independent worker processes. Hash partitioning means that like values stay together, which introduces some skewing as a 99K out of 100K rows may partition tog...
- Tue Jun 27, 2006 7:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: call another job from job control and wait if it is running
- Replies: 7
- Views: 1994
- Tue Jun 27, 2006 7:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: call another job from job control and wait if it is running
- Replies: 7
- Views: 1994
Welcome! You can get the status using the command line program dsjob without needing a job handle. Otherwise, you can try to use DSAttach and see the value returned from a DSGetJobInfo and see if the return value is DSJE.BADHANDLE. I never tried it, but the DS BASIC documentation has to be correct, ...