Search found 42189 matches

by chulett
Mon May 04, 2009 12:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to login datastage 8.x
Replies: 3
Views: 1105

I don't. While my first answer was somewhat facetious, the second was serious. A loopback is something that plugs into the port to just send the same signal back in that came out, a way to trick a process that thinks it needs to have that port connected. Sorry, not aware of what the setting changes ...
by chulett
Mon May 04, 2009 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job design-question
Replies: 31
Views: 4631

That's to sign up for the webinar, click on the download links instead. I believe they are free now but will probably at some point become Premium only, from what I understand.
by chulett
Mon May 04, 2009 12:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the last business day of the given month.
Replies: 8
Views: 2583

What is a "working" date? Do you need to handle holidays as well?

Either leverage an existing Time dimension or convert the date to the first of the next month and then subtract one day from it and see if that is a "working" day. If not, keep going backwards until you hit one.
by chulett
Mon May 04, 2009 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp data loading
Replies: 2
Views: 1057

Is the Oracle target a DATE or a true TIMESTAMP? Is your target DML using a TO_DATE() or TO_TIMESTAMP() function?
by chulett
Mon May 04, 2009 6:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Formatting valus
Replies: 5
Views: 1651

How can your target column have a variable length? You 'zero pad' and right-align something to a fixed length. Either hard-code the length in the FMT function or explain why you can't.
by chulett
Mon May 04, 2009 6:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Repetition element in xml input and output stage
Replies: 5
Views: 4425

That is not how you quote someone. Did you Preview this before you submitted it? :?
by chulett
Mon May 04, 2009 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job design-question
Replies: 31
Views: 4631

What happened when you clicked on the link?
by chulett
Mon May 04, 2009 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trunc(Date)
Replies: 1
Views: 1042

Use the second TO_CHAR() without the TRUNC() as it is unneeded and declare the output field as a varchar(10).
by chulett
Mon May 04, 2009 6:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changing Scratch Disc Space to another Drive
Replies: 7
Views: 2328

And? :?

Talk to the System Administrator responsible for the box. That can't be you.
by chulett
Mon May 04, 2009 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to login datastage 8.x
Replies: 3
Views: 1105

Plug the cable back in? Get a loopback connector?
by chulett
Mon May 04, 2009 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to use a record for update.
Replies: 11
Views: 6850

What do the jobs that do not run have in common? What is different between them and the ones that do work without error?
by chulett
Mon May 04, 2009 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML Parsing- How to clear this Warning Message...
Replies: 6
Views: 4126

The External Source stage should just be passing in just the filename and the XML Input stage therefore is the one doing the reading. Yes?
by chulett
Mon May 04, 2009 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle delimiter value at field level?
Replies: 2
Views: 1384

In order to do that, your string value would need to be quoted otherwise your file is invalid.

10|"MUM|BAI"|MH

Would read correctly. Otherwise you'd need to read it as a single string and then (attempt to) intelligently parse out the fields in a transformer.
by chulett
Sun May 03, 2009 10:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV_SCHEMA corruption
Replies: 1
Views: 978

Don't run out of disk space where anything DataStage is installed. That's the number one cause.
by chulett
Sun May 03, 2009 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conditionally (not) executing a stage in a job?
Replies: 1
Views: 757

No, not really. The only 'conditional execution' of this kind that you have control over is at the link level via constraints. However, when a constraint equates to false such that nothing is passed out the link, the derivations in the link columns do not 'fire' as well, so perhaps you could leverag...