Search found 53125 matches
- Mon Jan 23, 2006 10:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: no of process ids
- Replies: 28
- Views: 7584
- Mon Jan 23, 2006 8:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OraCI
- Replies: 17
- Views: 4325
- Mon Jan 23, 2006 8:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Retrieving job details using UniVerse BASIC.
- Replies: 7
- Views: 2277
DSGetStageInfo(hJob, StageName, DSJ.STAGEVARLIST) will return a list of the stage variable names. The derivation of a stage variable is not part of the retrievable information using these functions, since it's design-time information only. You would need to recover them from DS_JOBOBJECTS, in which ...
- Mon Jan 23, 2006 8:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Notifcation activity
- Replies: 7
- Views: 2442
- Mon Jan 23, 2006 8:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS Version Control and UFS filesystem limitation
- Replies: 9
- Views: 3304
RT_STATUSnn and RT_CONFIGnn are good choices because they are always small and static. To get a rough idea of how big to make the static hashed files, look at how big the DATA.30 and OVER.30 files are. For example: ls -l RT_CONFIG11 total 56 -rw-rw-r-- 1 aoprxw dsdevt 4096 Jan 24 11:48 DATA.30 -rw-r...
- Mon Jan 23, 2006 8:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Execute SQL routine
- Replies: 2
- Views: 1465
- Mon Jan 23, 2006 8:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: no of process ids
- Replies: 28
- Views: 7584
- Mon Jan 23, 2006 7:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting Row count for all hash files in a category
- Replies: 16
- Views: 4309
- Mon Jan 23, 2006 7:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: job parms and migrating jobs into different environments
- Replies: 2
- Views: 940
- Mon Jan 23, 2006 7:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Properties of job_activity & Routine Activity
- Replies: 4
- Views: 1051
- Mon Jan 23, 2006 7:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to stop a running job from administrator
- Replies: 3
- Views: 1082
Whether you do it that way, or via a Stop request issued from Director, remember that both run and stop are asynchronous requests made to the server. A signal is sent to the running job in the case of a stop request. If the job is in a hung state where it is unable to get any CPU cycles, it will not...
- Mon Jan 23, 2006 7:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DS_JOBOBJECTS query for OCI stages
- Replies: 4
- Views: 1988
You can save some work by constraining Kim's suggested query WHERE OBJNAME LIKE '%P%' so that only link ends are reported. Beyond that, however, you will need to hack as he indicated. For example: SELECT @ID, OLETYPE FROM DS_JOBOBJECTS WHERE OBJIDNO = '11' AND OBJNAME LIKE '%P%'; DS_JOBOBJECTS OLETy...
- Mon Jan 23, 2006 7:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Decimal value gets rounded up
- Replies: 9
- Views: 2695
- Mon Jan 23, 2006 7:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: sequencer
- Replies: 3
- Views: 1496
This post came in immediately ahead of yours, and explains that you don't need to recompile after an abort. There is nothing in your job log to indicate that the job sequence is checkpointed. You do need to recompile after checking this box. What happens if you just try to re-run the job sequence a...
- Mon Jan 23, 2006 7:29 pm
- Forum: Data Quality Best Practices
- Topic: Transfering sources to a single file
- Replies: 9
- Views: 13992
can you suggest some fonctions or routiens to direct the values from the source to the respective columns in the target based on the conditions. No. Because you have not documented the algorithms required. Because right now the main problem is that we can satisfy the conditions creating a file havi...