Search found 53125 matches

by ray.wurlod
Sun Apr 10, 2005 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Job Information? Pls Help asap!
Replies: 9
Views: 3302

All of the information Vignesh seeks can be found in the DataStage Repository - and therefore can be reported on using the Reporting Tool (Documentation Assistant) or MetaStage. In current versions, indeed, all the information is in a single table, but this is one of those tables for which complete ...
by ray.wurlod
Sat Apr 09, 2005 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple values into 1 target column
Replies: 11
Views: 2497

It's interesting to note how very different the final (?) specification was from the original specification! :o
by ray.wurlod
Sat Apr 09, 2005 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: invalid quotes problem ( " )
Replies: 11
Views: 3188

An interesting cross check is to see whether you can load the file (or a subset of it containing the problematic row) into a spreadsheet. If the spreadsheet also can't handle it, then there's most likely a data problem rather than a DataStage problem.
by ray.wurlod
Sat Apr 09, 2005 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 50 Warnings Limit
Replies: 11
Views: 5043

Default limits can be set in Director, under Tools > Options.
by ray.wurlod
Sat Apr 09, 2005 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validating E-mail
Replies: 5
Views: 1403

Is that really a valid email address?? Upcase(Email.Address) MATCHES "0X'@'0X'.'3A" : @VM : "0X'@'0X'.'2A'" : @VM : "0X'@'0X'.'4A'" : @VM : "0X'@YAHOO.'" would handle just the yahoo case in a non-case-sensitive manner. I suspect you don't want to handl...
by ray.wurlod
Sat Apr 09, 2005 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "String data, right truncation" error msg
Replies: 3
Views: 5219

You need to establish which column is causing the offence. Then check your source data (perhaps within DataStage - an extra output containing both the column and its length) looking for things like trailing space characters that cause the column to be longer than the maximum length specified by its ...
by ray.wurlod
Sat Apr 09, 2005 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Notification Activity
Replies: 6
Views: 1448

You can always send to an email address that is a list. That is, the address is processed by your mail client to send to a number of actual addresses.
by ray.wurlod
Sat Apr 09, 2005 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not getting the proper format
Replies: 5
Views: 1822

As Arnd said, you have looked at the log for the controller. You now need to look at the log for the controlled job, CopyOfFXRate_Extraction. There will likely be a number of warnings; the first of these is the most important one. Also check the Fatal message (the one with the red icon); but don't p...
by ray.wurlod
Sat Apr 09, 2005 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check for Blank and NULL
Replies: 4
Views: 1176

Empty strings are only read from text files as null because the "representation of null" field on the Format tab contains "".

That's what causes the conversion, the default representation. There's nothing to stop you changing that, after which "" will be read as "".
by ray.wurlod
Sat Apr 09, 2005 4:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help documents on writing Routines
Replies: 3
Views: 1349

Just to clarify one point - you DO need a compatible C++ compiler. 8)
by ray.wurlod
Sat Apr 09, 2005 4:05 pm
Forum: IBM QualityStage
Topic: Can we get Fields used in Matching from the deployes Script
Replies: 7
Views: 4293

This isn't Orchestrate, it's QualityStage (the software formerly known as INTEGRITY from Vality). I think, if you inspect the execution scripts, you would be able to recover the field names manually, but as to the column widths I think that would be trickier. Unfortunately most of the metadata is co...
by ray.wurlod
Sat Apr 09, 2005 4:00 pm
Forum: Site/Forum
Topic: Forum time GMT +1
Replies: 10
Views: 5926

I thought my earlier post was witty. I was half right.
by ray.wurlod
Thu Apr 07, 2005 5:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Options
Replies: 7
Views: 2553

The write cache is good. What you get is writing to random locations in memory rather than writing to random locations on disk (within the file structure, of course). Once all rows have been written, the cache is flushed to disk in group order, which is maximally efficient I/O. You can preallocate d...
by ray.wurlod
Thu Apr 07, 2005 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script to delete files based on timestamp
Replies: 8
Views: 3015

Investigate the UNIX find command. For example:

Code: Select all

find . -atime +30 -exec rm {} \;

Read the man pages for find to garner more information.
by ray.wurlod
Thu Apr 07, 2005 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine Error
Replies: 4
Views: 1123

The problem is almost certainly in your OpenSeq statement. You have assumed that nothing will go wrong but, this time, it has. You have not coded for anything going wrong; indeed you have explicity specified a no-operation (NULL statement). The OpenSeq statement actually has up to four clauses (ON E...