Search found 42189 matches

by chulett
Thu Mar 07, 2013 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot rows
Replies: 12
Views: 4255

You'd have to explain what your pivoting rules are in plain English. Right now, the output example is confusing. Did you leave out a row that should show "3,4,5"? :?
by chulett
Thu Mar 07, 2013 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use ORCHESTRATE in presql
Replies: 4
Views: 3423

You can't leverage any "row data" in the pre or post areas, which is basically what you are trying to do. You'd either need to hard-code any values there or perhaps use job parameters to control what values get deleted.

So what kind of "few records" do you need to delete?
by chulett
Tue Mar 05, 2013 9:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Russian to English Conversion
Replies: 1
Views: 1051

DataStage is not a Universal Translator. While it can convert from one characterset to another, it cannot translate from one language to another, which is in no way the same thing.
by chulett
Tue Mar 05, 2013 8:59 am
Forum: General
Topic: Passing read rows from one job activity to other in seq
Replies: 17
Views: 5252

Some random thoughts...

I have no idea what the maximum size of the "list of things" can be for the Start Loop stage to iterate through.

Do you really want to be running up to 100 PX jobs at the same time?

That methodology won't allow you to monitor the outcome of the job runs.
by chulett
Mon Mar 04, 2013 11:49 pm
Forum: General
Topic: Passing read rows from one job activity to other in seq
Replies: 17
Views: 5252

"Parse them to run in a loop" means what? Are we talking about a Sequence job with the Start and End Loop stages? Or are we talking about a fully scripted command line solution? Since you mentioned the Execute Command stage I'm assuming the former but not sure what you mean by "dsrunj...
by chulett
Mon Mar 04, 2013 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Leading Space and Trailing Dot from Numeric Fields
Replies: 15
Views: 12654

Jayanto wrote:Thanks.. But what function to use??
DecimalToString. And if you still need to, Convert after that.
by chulett
Mon Mar 04, 2013 10:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing Leading Space and Trailing Dot from Numeric Fields
Replies: 15
Views: 12654

Output it as a string so you have full control over the formatting.
by chulett
Mon Mar 04, 2013 7:43 am
Forum: General
Topic: Convert to day
Replies: 11
Views: 2431

@DATE returns the internal value for the current date.
by chulett
Mon Mar 04, 2013 7:40 am
Forum: General
Topic: Extracting Daily run times of all Jobs Run
Replies: 5
Views: 1514

Right, you have to use DSAttachJob first to establish a handle, then pass that handle to the other functions. And lastly detach it when you are done.
by chulett
Sun Mar 03, 2013 5:02 pm
Forum: General
Topic: Extracting Daily run times of all Jobs Run
Replies: 5
Views: 1514

A Universe table? No, there's one per job. If you are on 8.7+ there is the Operations Console or you could script something using dsjob from the command line.
by chulett
Sun Mar 03, 2013 7:59 am
Forum: General
Topic: Workload Management
Replies: 4
Views: 2139

"Before job" actually runs after the job starts but before anything on the canvas runs, so you should be able to find the pids there.
by chulett
Sat Mar 02, 2013 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI stage
Replies: 6
Views: 1817

Database? No. I'm not sure if the "instant" client works or not, perhaps others do. Full client works just fine, of course.
by chulett
Sat Mar 02, 2013 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI stage
Replies: 6
Views: 1817

You'll need the client installed on the ETL server for any native connectivity. Otherwise you'll need to go ODBC, say with the Oracle thin/wire drivers which don't require a client.
by chulett
Sat Mar 02, 2013 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conceptual difference between partition and repartition
Replies: 2
Views: 1291

Download the IBM Redbook pdf on InfoSphere DataStage Parallel Framework Standard Practices, lots of great info there and a whole chapter on partitioning.