Search found 15603 matches
- Fri Jun 02, 2006 9:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem running a routine
- Replies: 10
- Views: 1811
- Fri Jun 02, 2006 9:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem running a routine
- Replies: 10
- Views: 1811
- Fri Jun 02, 2006 8:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting Name of jobs using DSExecute command
- Replies: 5
- Views: 1876
Using your "Output" variable:
Code: Select all
FieldCount = DCOUNT(Output,@FM)
FOR x = 1 TO FieldCount
WorkValue = Output<x>
AnotherWorkValue = FIELD(Output,@FM,x) ;** same result as previous line, just different syntax
NEXT x
- Fri Jun 02, 2006 8:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting universe information about a Job
- Replies: 11
- Views: 3663
- Fri Jun 02, 2006 3:54 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ShmTest Error
- Replies: 2
- Views: 1090
- Fri Jun 02, 2006 3:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting universe information about a Job
- Replies: 11
- Views: 3663
- Thu Jun 01, 2006 7:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Datastage Error in a Sequencer
- Replies: 6
- Views: 2055
- Thu Jun 01, 2006 6:45 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting Name of jobs using DSExecute command
- Replies: 5
- Views: 1876
Add a semicolon to your select statement:
Code: Select all
Call DSExecute ("UV", "SELECT NAME FROM DS_JOBS WHERE NAME LIKE '%A%';", Output, SystemReturnCode) - Thu Jun 01, 2006 5:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to store job start date and time and job end dateandtime
- Replies: 11
- Views: 3103
- Thu Jun 01, 2006 1:59 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage 7.5 on linux OS
- Replies: 3
- Views: 933
- Thu Jun 01, 2006 1:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DSR_RECORD (Action=2); check DataStage is set up correctly i
- Replies: 9
- Views: 3763
- Thu Jun 01, 2006 1:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: UNIX sort
- Replies: 13
- Views: 3936
- Wed May 31, 2006 12:55 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error:Program "JOB.231506361.DT.140104294.TRANS1"
- Replies: 2
- Views: 972
Your error is in a transform stage, most likely you are doing a mathematical derivation and your data is not numeric. Check your derivations and you will find the source of the problem. If you still can't find it, you can look at the BASIC source in the path shown in the error message around line 28...
- Wed May 31, 2006 12:40 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: various parameters which affect the complexity of the job
- Replies: 3
- Views: 738
With PX jobs you have parallelism which might make jobs more complex (I'm not sure if you mean design-time run run-time complexity); with repartitioning and sorting. The same applies for aggregations and similar actions within the job. Job design spends a lot of time analyzing source data - that alw...
- Tue May 30, 2006 1:59 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Decimal To Hexadicimal
- Replies: 5
- Views: 1063