Search found 53125 matches

by ray.wurlod
Mon Dec 04, 2006 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: illegal variable name/number
Replies: 13
Views: 3804

Why not?!! Get back to work IMMEDIATELY!!! If they had wanted you to have a life, they would have issued you with one!
:lol:
by ray.wurlod
Mon Dec 04, 2006 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File passing "?" as values
Replies: 15
Views: 3376

A hashed file (note: it's not "hash file") will never accept NULL as its key value. It will, however, accept "" (a zero length string). Of course, since keys must be unique, there can only be one record with this key value in the hashed file; multiple writes will overwrite. "?" may mean that NLS has...
by ray.wurlod
Mon Dec 04, 2006 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Locate Statement not Searching Whole Array in a Routine
Replies: 7
Views: 1731

LOCATE will search at the field OR value OR subvalue level. The syntax required to search at each level is different - you must specify the higher-level element (for example you may wish to search through the values in field #5). Further you may not always want to search from the first element. If y...
by ray.wurlod
Mon Dec 04, 2006 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while populating date value from seq file to oracle
Replies: 8
Views: 1770

rkdatastage wrote:my output is : 1,0022-11-20 04:00:00

So where did that string come from which, you can see, contains the string 22-11-20 04?
by ray.wurlod
Mon Dec 04, 2006 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: link open processing error
Replies: 5
Views: 1435

Read the entire error message. Does it tell you which stage, which link?
by ray.wurlod
Mon Dec 04, 2006 4:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: generating jobs reports
Replies: 60
Views: 24753

REPLACE is a dynamic array function. You need CONVERT. Something like:

Code: Select all

EVAL "CONVERT('\', '_', CATEGORY) : '_index.html'"
by ray.wurlod
Mon Dec 04, 2006 3:50 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Webservices PACK and RTI differenced...
Replies: 10
Views: 5037

From memory, the PACK also allows you to use a web server log as a data source. That is, you can trace every click on the web server, see what pages folks visited, how long they spent there, and so on, as a source of data for another application, even a DW.
by ray.wurlod
Mon Dec 04, 2006 6:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ routine Vs Aggregator stage
Replies: 9
Views: 3848

You might be surprised how slick the Aggregator is for counting. You don't use the Column for Calculation method, you simply use Count. It's a very fast transit through the code.
by ray.wurlod
Mon Dec 04, 2006 6:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Set Identity_Insert On Sybase issue
Replies: 3
Views: 2816

I'd take a punt that what's in the job log (Director) is very likely to be what's sent. Otherwise, your Sybase DBA should be able to monitor the connection and the commands issued thereupon. There may also be trace utilities in Sybase OC - alas this is not an area in which I have expertise enough to...
by ray.wurlod
Mon Dec 04, 2006 6:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error while populating date value from seq file to oracle
Replies: 8
Views: 1770

You seem to have an offset issue - I can see the date in the timestamp. However, you have not provided your entire derivation - for example how does the time component get there? Try doing one piece at a time, to see where the problem is actually occurring. Just Iconv() first, which should yield a s...
by ray.wurlod
Mon Dec 04, 2006 3:32 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: problem startup service, event server monitor, mgt console
Replies: 7
Views: 3722

Do you have the relevant port numbers blocked with firewall software or similar?
by ray.wurlod
Sun Dec 03, 2006 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error compiling Job Control Subroutine
Replies: 7
Views: 4447

Almost certainly JOB_NAME is the reserved word, then. Change it to something else, maybe THISJOB.
by ray.wurlod
Sun Dec 03, 2006 11:50 pm
Forum: Enhancement Wish List
Topic: Help in finding certification materials
Replies: 4
Views: 3176

There is currently no book, whether from IBM or elsewhere.

IBM did advertise a class, DX214 (Certification Preparation) but I believe it was only to be offered in consultation with the Information on Demand conference. Nonetheless it remains advertised on their web site.
by ray.wurlod
Sun Dec 03, 2006 11:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure (code -2)
Replies: 5
Views: 3624

Does SEQ1 have unique invocation IDs as well?

Read the error message carefully - WHAT job was not in a runnable state - the job or the job sequence?

It makes no difference to this logic whether the job is a server job, a parallel job or a job sequence.
by ray.wurlod
Sun Dec 03, 2006 11:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: xml output - not writing to file
Replies: 10
Views: 2851

So were they written somewhere else, not written at all, or some other possibility? And how did you prove that?