Search found 6797 matches

by DSguru2B
Fri Dec 22, 2006 7:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ds Transform and Production
Replies: 7
Views: 2156

Has this job been running in the past. A quick read of the query results indicates that such problems arise if something goes wrong with the executables, which can be fixed after a re-compile. The production support is right, they will not compile it, you need to recompile the job and export it again.
by DSguru2B
Fri Dec 22, 2006 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: truncate command in ODBC
Replies: 27
Views: 8259

Makes sense. Thanks for the clarification Ray.
by DSguru2B
Fri Dec 22, 2006 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to run the next job in the sequence?
Replies: 3
Views: 1159

Check point restartablility will fire from the point where it failed last. If you want to skip that and go to the next one then you will have to code that part yourself. If there are no dependencies between the jobs, then run them in parallel, this way if job three fails, atleast job 5 and job 6 wil...
by DSguru2B
Fri Dec 22, 2006 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combine data on the basis of key columns.
Replies: 1
Views: 1000

You can do this using stage variables. Sort your incoming data and then do the comparison between present key and first. Refer to this post.
by DSguru2B
Fri Dec 22, 2006 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ds Transform and Production
Replies: 7
Views: 2156

Do an exact search on 'Unable to open the operating system file'. One thing is strange, the routine 'DataTypePicS9' is a datastage routine. It should be catalogued by DSX prefix rather than DSU.

thurmy34 wrote:Program "JOB.1118171632.DT.1414830161.TRANS1": Line 152, Unable to load file "DSU.DataTypePicS9".
by DSguru2B
Fri Dec 22, 2006 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Stored Procedure in Oracle Enterprise Stage
Replies: 10
Views: 3775

Open command is equivalent to 'Before Sql' in Server and Close command is equivalent to 'After Sql'.
by DSguru2B
Fri Dec 22, 2006 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: run dsjob.exe and return error code 81015
Replies: 4
Views: 3350

Did you see any error message/warning message in the logs. Did the job even fire ? If you do a search on error code '81015', you will see that it usually means there is a time out from the server. Need more details.
by DSguru2B
Fri Dec 22, 2006 6:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to join the extra look up condition in the lookup
Replies: 3
Views: 1140

If you could do this in the database stage itself then you dont need to worry about lookup stage and the extra date condition. If you have to implement it in datastage then do a lookup on the second table, get all the results and constraint it in the transformer using the date range. Something like ...
by DSguru2B
Fri Dec 22, 2006 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Parallel job
Replies: 24
Views: 7040

If you could re-do the Basic Routine in C that would be great. This way you can call that routine in a 'normal' transformer. This is offcourse if the data volume is expected to be large.
by DSguru2B
Thu Dec 21, 2006 10:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compare two dates including timestamps
Replies: 6
Views: 1351

Yes, but as Craig said
chulett wrote:Right, something very much like that - but without the hard-coded timestamps. :wink:


:wink:
by DSguru2B
Thu Dec 21, 2006 9:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: truncate command in ODBC
Replies: 27
Views: 8259

So how come the DELETE command was working without a semi-colon :roll:
by DSguru2B
Thu Dec 21, 2006 9:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort and Aggregation Options
Replies: 3
Views: 1135

Sort it at once, in the begining on all the grouping keys, in that order. Then you can use that dataset and pass it through different aggregations for different groupings.
by DSguru2B
Thu Dec 21, 2006 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformation
Replies: 20
Views: 4458

Only specify the sort as asc for the first column and sort it by the first column. That row is out of sequence, needs proper sorting.