Search found 53125 matches

by ray.wurlod
Fri Mar 02, 2007 7:11 pm
Forum: General
Topic: DataStage and the DST change
Replies: 11
Views: 9575

Possibly a bad (corrupted) libmawt.sl file?
by ray.wurlod
Fri Mar 02, 2007 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel padding nulls for empty space !!
Replies: 11
Views: 2272

Data Set with VarChar DOES work. I have lots of them.

VarChars are not padded. Only Chars are padded.

VarChars can be trimmed prior to comparison. You can use Modify stages for trimming if speed is important.
by ray.wurlod
Fri Mar 02, 2007 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error reading sequential file
Replies: 5
Views: 1374

Set the quote character to 000 in the Format tab of the Sequential File stage that creates the file in the server job. And/or write Decimal data types (which will not be quoted) rather than VarChar in that stage.
by ray.wurlod
Fri Mar 02, 2007 4:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying alphabets in a numeric field
Replies: 5
Views: 2463

Transformer functions are intolerant of nulls. You must handle them separately. NULL is valid for any data type (provided the receiving field is nullable). Therefore you require something like If IsNull(InLink.TheColumn) Then 1 Else IsValid("Integer", InLink.TheColumn)
by ray.wurlod
Fri Mar 02, 2007 4:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Omit Username and Password in DSJob -run command
Replies: 5
Views: 2747

Set them up as environment variables and obtain them from those.
by ray.wurlod
Fri Mar 02, 2007 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identifying alphabets in a numeric field
Replies: 5
Views: 2463

Welcome aboard. :D

There is an IsValid() function that allows you to check, in a Transformer stage, whether an input string is valid as some other data type.
by ray.wurlod
Fri Mar 02, 2007 3:44 pm
Forum: General
Topic: Connecting to DB2 on AS400 from DataStage
Replies: 5
Views: 6151

From the DB2 API stage?!!

It's my understanding that you need DB2 Connect to be installed on the DataStage server machine.
by ray.wurlod
Fri Mar 02, 2007 3:43 pm
Forum: General
Topic: diff between enterprise and server edition
Replies: 2
Views: 1430

In particular, you are unlikely to get different answers, just grumpy responses about multiple posting and/or time wasting.
by ray.wurlod
Fri Mar 02, 2007 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: diff between server and enterprise edition
Replies: 5
Views: 1918

If you are fluent as a server job developer, you could enrol on the Server to Parallel Transition Lab offered by the owners of this site. They run sporadically and are announced here.
by ray.wurlod
Fri Mar 02, 2007 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capturing Job's Version Number for audit meta-data
Replies: 9
Views: 2521

Version Control also increments the version number, and it's possible that developers do also. You can query the Repository using a "UV" command in DSExecute. SELECT NAME, EVAL "@RECORD<8>" AS VERSION FROM DS_JOBOBJECTS WHERE OBJTYPE = 'J' AND OBJNAME = 'ROOT' AND OBJIDNO = (SELECT JOB...
by ray.wurlod
Fri Mar 02, 2007 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation Error RT_CONFIG89
Replies: 9
Views: 2307

Re: Compilation Error RT_CONFIG89

DSguru2B wrote:I am getting this error for compilation RT_CONFIG89. Cannot figure out the reason to this.

There is NO WAY that

Code: Select all

RT_CONFIG89 
is the complete error message. Therefore your statement that "I posted the exact error message" can not be true.
by ray.wurlod
Fri Mar 02, 2007 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation Error RT_CONFIG89
Replies: 9
Views: 2307

Edit dsdlockd.config file to set Start=1, then the deadlock daemon (dsdlockd) will start next time DataStage is started.
by ray.wurlod
Fri Mar 02, 2007 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Error in job
Replies: 14
Views: 7106

The job design in the first post on this thread had you writing to a hashed file. Was that problem solved? If so, please close this thread as Resolved, and open a new thread for a new problem. We will not enter into wandering discourses about various, changing problems. It makes life too difficult f...
by ray.wurlod
Fri Mar 02, 2007 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting data from a File in the Mainframe system
Replies: 8
Views: 2506

You're working for someone who expects you to process mainframe volumes on a Windows server?!! Have they purchased the mainframe edition of DataStage, so at least you have have DataStage generate code that can run on the mainframe? (Didn't think so.) There is no mechanism whatsoever that means serve...
by ray.wurlod
Fri Mar 02, 2007 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs getting stuck
Replies: 18
Views: 4371

Page faults are indicative of insufficient memory. When a memory page is required for processing but memory is full, one or more of the least recently used pages are moved out to disk ("paged") to make room. This operation is called a "page fault". In an ideal world, there would be no page faults. I...