Search found 53125 matches

by ray.wurlod
Thu Jul 27, 2006 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing data from Excel file
Replies: 2
Views: 1045

Searching the forum will yield at least three solutions.

An Excel worksheet is a table, as presented by the Excel ODBC driver.
by ray.wurlod
Thu Jul 27, 2006 12:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Review checklist & Estimation document/guidelines
Replies: 8
Views: 2583

Welcome aboard. :D What precisely do you want to review? One of the services my business offers is a DataStage health check - reading this may help you on your way. Estimation is first and foremost a function of the skills and competence of the DataStage developer. I'm quick, a tyro is not so quick....
by ray.wurlod
Thu Jul 27, 2006 12:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorporating Parallelism
Replies: 19
Views: 4556

Earlier in this thread I warned "Beware that ten instances of a parallel job is quite likely to swamp your server with demand for resources." After that it's simple economics. You have a finite supply of resources and an excessive demand for resources. Provide more resources (all of extra CPU, extra...
by ray.wurlod
Thu Jul 27, 2006 12:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job parameter string length
Replies: 3
Views: 1397

Yes, but AMZN_PREP_DESC_T has only 16 characters (making it legal), whereas ACTIVITY_BOX_REQUIRED contains 21 characters (illegal).
by ray.wurlod
Wed Jul 26, 2006 11:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Parameter Limit
Replies: 4
Views: 1013

I have seen master job sequences with this many and more. There is no theoretical limit to the number of job parameters than may exist in a job or job sequence. If there is a practical limit, it is running out of memory to store the lists of names, default values, prompt texts and so on. Thousands, ...
by ray.wurlod
Wed Jul 26, 2006 11:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wcs in datawarehouse
Replies: 7
Views: 1569

Plural of WC ?

On second thoughts, don't go there.
by ray.wurlod
Wed Jul 26, 2006 11:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retreving Multiple Records using Universe Stage
Replies: 13
Views: 4002

You can create a self-generating artifical key as follows. It's the DEFAULT NEXT AVAILABLE clause that does the trick.

Code: Select all

CREATE TABLE MyUvTable (
   SKEY INTEGER NOT NULL PRIMARY KEY DEFAULT NEXT AVAILABLE,
   other columns... );
by ray.wurlod
Wed Jul 26, 2006 11:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mainframe file issue
Replies: 3
Views: 618

Sounds like the REDEFINES for a type "H" record is inexact in the metadata. Get that fixed and all should be well.
by ray.wurlod
Wed Jul 26, 2006 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job parameter string length
Replies: 3
Views: 1397

I am surprised by your assertion that this works in DataStage. It returns different number of columns for different cases, which can not match your metadata. You must have been lucky and only had case values that caused all rows to correspond to your metadata, or you have not checked for rejected ro...
by ray.wurlod
Wed Jul 26, 2006 11:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Conversion in EE
Replies: 3
Views: 1076

Why not StringToDate(DateToString()) with appropriate format strings for each function? But, of course, once it's a date again, the internal representation is the same as when it started. So what you claim to want to do will be a complete waste of time. The format string only relates to when the dat...
by ray.wurlod
Wed Jul 26, 2006 11:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loosing The Microseconds in Stage variable
Replies: 4
Views: 1775

What is the source of these times? Does your operating system even support beyond milliseconds in system calls for time? The behaviour you are seeing suggests not.
by ray.wurlod
Wed Jul 26, 2006 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Report on jobs currently running in DS server
Replies: 18
Views: 8030

Actually, it is what you were asking for. Specifically, the automation part he mentions. ... sorry, guys, i am not convinced. and i am not willing to buy into something that has no proven its value to me. thanks for trying. That's OK, it's a free country, or so they tell us. DSD.RUN is only for ser...
by ray.wurlod
Wed Jul 26, 2006 11:08 pm
Forum: Site/Forum
Topic: Video Tech Tip Series - FEEDBACK
Replies: 49
Views: 73519

Welcome aboard. :D

It's not the right forum; this forum is for feedback about the site itself. Would you mind re-posting on the Parallel Extender forum? You can copy and paste the actual text. May I suggest "Arithmetic with Modify Stage?" as a suitable topic?
by ray.wurlod
Wed Jul 26, 2006 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Report on jobs currently running in DS server
Replies: 18
Views: 8030

For less than $1/week you can be a premium member. My earlier answer shows a manual approach using Director, then a suggestion for how to automate that process. Even that ought to be work this week's $1.
by ray.wurlod
Wed Jul 26, 2006 5:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pad char in Sequantial File stage. Where is it?
Replies: 6
Views: 1829

Click on the Server tab in the Edit Column Meta Data dialog, and fill in the Padding character there.