Search found 53125 matches

by ray.wurlod
Fri Apr 30, 2004 2:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a C shared Library function in a server routine
Replies: 14
Views: 4176

Some useful date routines

Some useful date routines for solving the Australian daylight saving question. FUNCTION LastSundayInOctober(Year) $COPYRIGHT "Copyright (c) 2004, Ray Wurlod. All rights reserved." $* Calculates the date of 01-November in the year in question, then steps backward until a Sun...
by ray.wurlod
Fri Apr 30, 2004 1:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashfile in shared container
Replies: 5
Views: 1715

Your shared container must have a means of sending its results out. You need something like this: ++++++++++++++++++++++++++++++++++++++++++++++ + OCIStage ----> HFStage -----> COutput + + lk1 lk2 + ++++++++++++++++++++++++++++++++++++++++++++++ where COutput is a "Container Output" stage. In your j...
by ray.wurlod
Fri Apr 30, 2004 1:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script to change the dsx file
Replies: 1
Views: 852

Yes, you can. You can also create a DataStage BASIC routine to do it. You, however, (or the author of the script/routine) need to figure out the placement and indenting rules. There's one major gotcha; if the job uses Container stages or shared containers, the parameter handling is different; only t...
by ray.wurlod
Fri Apr 30, 2004 1:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance comparison b/n DataSet and Sequential File
Replies: 1
Views: 1766

Do you want to put any constraints on responses? For example, if you have an eight CPU configuration, then a response from a 32 CPU configuration would not be particularly useful to you; scalability is nearly linear, but not exactly. Are you talking about a single SMP system, or an MPP cluster?
by ray.wurlod
Thu Apr 29, 2004 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job & Transformation List
Replies: 4
Views: 1835

It's a known issue that job sequences don't get exported to the Documentation Tool. :cry:
by ray.wurlod
Thu Apr 29, 2004 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-01438: value larger than specified precision
Replies: 1
Views: 906

Not enough information.

What is the data type of the column in question?
What (from Debugger perhaps, check "break on warnings") is the value that you are trying to load?
by ray.wurlod
Thu Apr 29, 2004 4:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird :( - 'Run Stopped' in Transformer Stage
Replies: 5
Views: 2047

The only things of which I am aware that will generate a Run Stopped message is a Stop request - either issued manually from Director, or by a call to DSStopJob or the -stop option for dsjob. When a run stops because of a row limit, there's an event in the log to indicate that this was the cause. Re...
by ray.wurlod
Thu Apr 29, 2004 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_CONFIG error
Replies: 3
Views: 1161

You've got a problem. The VOC file should not be more than a few tens of KB in size. In a newly created project on UNIX (I just happen to have one of these today, without NLS enabled) the VOC file is 102,400 bytes. In a five year old development project, the VOC file is still only 796,672 bytes. Thi...
by ray.wurlod
Thu Apr 29, 2004 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Logon problem with DataStage 7.x and Windows 2000
Replies: 9
Views: 2962

DataStage (Administrator client especially) does not like empty password.
by ray.wurlod
Thu Apr 29, 2004 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Send SMS thro Datastage...
Replies: 10
Views: 4123

I think Siva's seeking examples and/or names of the "third party software". FWIW he is running on AIX.
by ray.wurlod
Thu Apr 29, 2004 4:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a C shared Library function in a server routine
Replies: 14
Views: 4176

Thinks... Daylight saving can be handled most easily using the Julian date (that is, the ordinal number of the day in the year). OCONV(date, "DJ") gets this. In Australia, if this is less than the finish date (Julian form) or greater than the start date for daylight saving, then no adjustment need b...
by ray.wurlod
Thu Apr 29, 2004 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: connecting to a different server
Replies: 1
Views: 1994

You should be able to specify the development server as a resource in the configuration file and do it that way. Please note, however, that I have not tried this.
by ray.wurlod
Thu Apr 29, 2004 3:54 pm
Forum:
Topic: Unix Metastage?
Replies: 1
Views: 1567

Currently, no.
by ray.wurlod
Thu Apr 29, 2004 3:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing a C shared Library function in a server routine
Replies: 14
Views: 4176

I guess that raises the question whether you have to be able to do this only for current dates, or possibly also for historical dates (and, if so, how far back). Hmm... It's also the case that the TZ environment variable has a different value/format depending on your UNIX. Here are two examples, the...
by ray.wurlod
Wed Apr 28, 2004 5:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Value of Job Parameter in Sequencer
Replies: 2
Views: 926

The sequencer's own parameters' default values are viewable at design time using the Job Properties dialog. Parameter values with which the sequencer ran are in the "started" event in the sequencer's job log. Run time default values can be viewed in the Director client's Job menu by choosing the Set...