Search found 53125 matches

by ray.wurlod
Thu Sep 29, 2011 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delimiter for Sequential file with pipe & comma in data
Replies: 14
Views: 8760

Why do you believe that the Sequential File stage does not allow using Ctrl-Y as the field delimiter? How have you tried to enter that value into the Field Delimiter property?
by ray.wurlod
Thu Sep 29, 2011 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: help needed in generating logic
Replies: 5
Views: 1424

Assuming all the source files have identical structure, use a Sequential File stage to read them using File Pattern, and have that stage generate the file name into an additional output column.
by ray.wurlod
Thu Sep 29, 2011 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NUL Values
Replies: 7
Views: 3619

Once you know what it really is, a simple Convert() function to remove it - to convert it to "" - will do the trick. Imagine that it happens to be the ASCII NUL character (0x00). Declare a stage variable svNUL of type Char(1) and initialize it to Char(0). When tidying up your string in the...
by ray.wurlod
Thu Sep 29, 2011 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Char datatype without length
Replies: 6
Views: 2493

I can't get my head around CHAR with no length. CHAR is defined as fixed width - that just doesn't work with unbounded. VARCHAR, yes...
by ray.wurlod
Thu Sep 29, 2011 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: gender wise
Replies: 5
Views: 2460

So, interview questions aren't part of the "real world", Craig?
:lol:
by ray.wurlod
Thu Sep 29, 2011 4:15 pm
Forum: General
Topic: DataStage Administrator Duties
Replies: 9
Views: 15917

I would also add: communicating with IBM support (or your official support provider if that's not IBM) and maintaining local records of support requests (and responses), APARs, quick fixes, patches, etc., that apply to your site periodically reviewing Fix Central to determine whether there are any p...
by ray.wurlod
Thu Sep 29, 2011 4:12 pm
Forum: General
Topic: After SQL statement in Oracle Connector stage
Replies: 6
Views: 2115

Barely enough!
:lol:
by ray.wurlod
Thu Sep 29, 2011 4:11 pm
Forum: General
Topic: Reading VOC file content
Replies: 6
Views: 2329

dsjob is not in VOC. Period. dsjob is executed from the operating system shell. Don't worry about VOC. It's just there. It's part of the engine. There's one in every project, and a couple of others besides. Don't try to open it with any operating system command; damaged VOC files are pretty much ir...
by ray.wurlod
Thu Sep 29, 2011 4:06 pm
Forum: General
Topic: Updating config to not use /tmp
Replies: 3
Views: 1164

It is recommended practice to have UVTEMP pointing to somewhere other than /tmp (leave /tmp for the operating system). UVSPOOL is not used by DataStage; it is a hangover from the days when DataStage used UniVerse as its engine. But there would be no harm pointing it elsewhere, provided that that &qu...
by ray.wurlod
Thu Sep 29, 2011 4:05 pm
Forum: General
Topic: Project´s Daily Backup - Windows Server
Replies: 3
Views: 2707

You always truncate your messages... kkkk You can get yourself a premium membership of DSXchange that will allow you to read the entirety of posts from five posters designated as "premium posters". Premium membership is the main way that the hosting and bandwidth costs of DSXchange are me...
by ray.wurlod
Thu Sep 29, 2011 4:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORCHESTRATE in select clause
Replies: 1
Views: 878

Welcome aboard. You don't use the ORCHESTRATE object in SELECT operations at all. This object is only used in target stages.
by ray.wurlod
Thu Sep 29, 2011 4:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequence restartability
Replies: 2
Views: 874

It doesn't. If you want that, you have to code for it. Create a "recovery" job. Incidentally, it's a sequence, not a sequencer.
by ray.wurlod
Thu Sep 29, 2011 3:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: funnel stage
Replies: 2
Views: 1840

Funnel puts all rows from all inputs onto its single output. That's a UNION ALL. There is no capacity within the Funnel stage to remove duplicates. Remember, one task, one stage type.
by ray.wurlod
Thu Sep 29, 2011 3:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MDM , log file name and extension
Replies: 10
Views: 2395

The DSN is localuv (which should be preconfigured in the uvodbc.config file). The UniVerse and UniData stages primarily exist to access those databases, both of which are sold by Rocket Software. The local DataStage repository remains reasonably compatible with UniVerse, but the UniVerse stage is no...
by ray.wurlod
Thu Sep 29, 2011 3:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting a DFLOAT to INT32
Replies: 4
Views: 2167

Instead of counting you could sum the constant 1. That would give you the options I mentioned.