Search found 53125 matches

by ray.wurlod
Tue Dec 11, 2007 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row/Column File Transpose
Replies: 5
Views: 1798

Generate a column containing the column names (as constants) upstream of the Pivot stage.
by ray.wurlod
Tue Dec 11, 2007 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: copy dataset from one server to another
Replies: 7
Views: 4224

That understanding is basically correct.
by ray.wurlod
Tue Dec 11, 2007 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage
Replies: 5
Views: 3228

I think that mcs_murali wanted the exact function to use, not the syntax of a Specification property. Further, I am fairly sure it was wanted a month ago.
by ray.wurlod
Tue Dec 11, 2007 2:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Suppress "Status Code=0" output of dsjob command
Replies: 13
Views: 10288

That throws too much away! Try

Code: Select all

dsjob ... | grep -v 'Status code = 0'
by ray.wurlod
Tue Dec 11, 2007 2:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation requirement for DataStage 8
Replies: 3
Views: 1225

HORRIBLY slow, in fact. Even 2GB physical memory is a lower limit - much better results can be had with 3GB or more. (And, yes, that's just for the client.)
by ray.wurlod
Tue Dec 11, 2007 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer function
Replies: 3
Views: 1475

There isn't one. You have to write your own. Get the logic from MONTH.LAST Transform from the server job side of the fence.
by ray.wurlod
Tue Dec 11, 2007 1:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integer to Char conversion
Replies: 6
Views: 7688

Explicit functions do not exist for conversions that can be done implicitly. Integer to Decimal is one conversion that can be done implicitly. Therefore DecimalToString() will handle an integer argument quite happily (provided the precision is sufficiently large).
by ray.wurlod
Tue Dec 11, 2007 1:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pass values to parameter
Replies: 2
Views: 845

Tip: Using UtilityRunJob() in a parallel job presupposes the use of a BASIC Transformer stage.
by ray.wurlod
Tue Dec 11, 2007 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue:Pass the record value to job parameter
Replies: 7
Views: 2920

You can return anything you want, perhaps by making use of the invoked job's user status area. Research the DSSetUserStatus() and DSGetJobInfo() functions. Or you could write your own version of UtilityRunJob.
by ray.wurlod
Tue Dec 11, 2007 1:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSHOME on Windows
Replies: 5
Views: 2585

I'm not aware of any more direct method, which is why I documented the scriptbeginning from DSPackagePath. Gee, that was so long ago! I'd forgotten it! Must get around to changing the accreditation notice.
by ray.wurlod
Tue Dec 11, 2007 1:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI has fetched truncated data
Replies: 10
Views: 3554

Ultimately in a file called msg.text in the DataStage engine directory. However, different databases have different default formats.
by ray.wurlod
Tue Dec 11, 2007 1:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Could not get current wave number
Replies: 3
Views: 2337

Code 99 means "unknown error" or "other error". It follows that neither I nor anyone else can tell you "exactly what created the problem". Have you asked your official support provider? Limits (various) are usually more exactly reported.
by ray.wurlod
Tue Dec 11, 2007 1:31 am
Forum: General
Topic: Datastage TX
Replies: 1
Views: 1417

Off you go, then.

Incidentally, this site has a separate forum for DataStage TX (now once again renamed to WebSphere Transfomation Extender, with no mention of DataStage at all).
by ray.wurlod
Mon Dec 10, 2007 1:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error:"main_program: Fatal Error: Field not found: Col1
Replies: 7
Views: 1744

Copy stage does allow re-naming. RCP will ALSO propagate the original name. Probably not what you want.
by ray.wurlod
Mon Dec 10, 2007 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Selective reading Metadata versus using a copy stage/Modify
Replies: 3
Views: 1587

Depends on your source. If it's a sequential file (in which you must read past every byte to get to the next) then you have to read them all. In this case you can use the column property Drop On Input. Otherwise, select only those columns that you actually need from the source table.