Search found 42189 matches

by chulett
Wed Feb 27, 2013 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic file compare using RCP
Replies: 5
Views: 1463

:idea: Split from this 7 year old semi-related post. Please just start your own topic next time for things like this.
by chulett
Wed Feb 27, 2013 3:31 pm
Forum: General
Topic: Writing SQL Query as Source in DataStage
Replies: 12
Views: 12296

I would suggest that, if at all possible, you let the stage generate the SQL whenever possible. Only supply "user defined" SQL for those situations when you have no other choice, for something that is not... generatable.
by chulett
Wed Feb 27, 2013 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Empty in AIX
Replies: 5
Views: 2634

Can you clarify what exactly it is you mean when you say "remote deployment"?
by chulett
Wed Feb 27, 2013 7:47 am
Forum: General
Topic: Import DataStage Job to a Specific Category
Replies: 3
Views: 1993

Still gonna get the same answers that you got over on ITToolbox. :wink:
by chulett
Wed Feb 27, 2013 7:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changing from Single node to Multi node Configuration
Replies: 15
Views: 11532

Today I create a job that uses the merge stage to join 3 different sources of data (datasets) and then loads into a target table. Because of the requirements of the merge stage I explicitly hash partition my source data, pre-sort, and remove dups. I run this using a single-node config file and proc...
by chulett
Wed Feb 27, 2013 7:33 am
Forum: General
Topic: datastage8.7 installation without c++ compiler
Replies: 7
Views: 3171

Ray has already listed what you couldn't compile without a C++ compiler also installed.
by chulett
Wed Feb 27, 2013 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple SQL in "Load SQL from file at run time"
Replies: 7
Views: 2222

These must be source SQLs, as in ones that provide data to the job so I'm assuming they are not appropriate for using before/after. If you don't want to go the 'union' route then perhaps the job can be 'looped' via a Sequence job that replaces the sql file each iteration.
by chulett
Wed Feb 27, 2013 12:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Co Sort functionality using Datastage Generic Job
Replies: 2
Views: 1725

Note quite sure how you got that from a reading of their post, Ray, they mention nothing about still planning on invoking the CoSort scripts. They are looking for advice on exactly what you mentioned - converting the work that CoSort does into DataStage. Off the top of my head, however, I have no id...
by chulett
Tue Feb 26, 2013 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple SQL in "Load SQL from file at run time"
Replies: 7
Views: 2222

Then it's not supported it would seem. Why not just add a UNION ALL between them so they become a single Sql statement?
by chulett
Tue Feb 26, 2013 12:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture no of rows processed on link in parallel job
Replies: 18
Views: 5050

You'll find that basically every DS API function has an equivalent from the command line via dsjob.
by chulett
Tue Feb 26, 2013 12:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple SQL in "Load SQL from file at run time"
Replies: 7
Views: 2222

I don't recall if that is an option when using a SQL file (always used it for a single statement) and I don't have any way to check right now. Only thing I can think of right now is to try two semi-colons as a separator: ";;".
by chulett
Tue Feb 26, 2013 8:30 am
Forum: IBM QualityStage
Topic: Phonetic Code Generation
Replies: 9
Views: 5113

I would say there is always a possibility. That possibility goes up with any tool if you are new to it and there's no-one onsite to mentor you. However, I wouldn't let that stop you... why solve only half the problem? :wink:
by chulett
Tue Feb 26, 2013 12:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture no of rows processed on link in parallel job
Replies: 18
Views: 5050

I guess they are wasting their time if in fact they are on the releases you mention. So... Prem?
by chulett
Mon Feb 25, 2013 5:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture no of rows processed on link in parallel job
Replies: 18
Views: 5050

Be aware that coding it with DSJ.ME as the job handle means it can only check the links in the job that called it. And that means you'd need to call this routine 'after job' in every job that you wanted to monitor. I prefer a 'post' process, something that you can run after your loads are complete t...