Search found 42189 matches

by chulett
Mon Nov 30, 2009 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage loading Oracle funny characters
Replies: 4
Views: 1305

It's going to come down to character sets, so to take this any further you'd need to know what that is in your Oracle database and your PX job before anyone could help.
by chulett
Mon Nov 30, 2009 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Abort
Replies: 1
Views: 1113

Yes, it may be possible if your source is static and the 'how' is the same regardless of version - you simply skip the records that you don't want to process. A common methodology would be via a job parameter and a transformer constraint.
by chulett
Mon Nov 30, 2009 7:46 am
Forum: General
Topic: Datastage - Database
Replies: 7
Views: 1362

Sure sounds like a (poorly worded) interview question to me. To what 'intermediate results' do you refer?
by chulett
Mon Nov 30, 2009 7:44 am
Forum: General
Topic: Maximum number of workflows which can be given in Parallel
Replies: 7
Views: 2379

'Workflows'? :?

Regardless, of course there's a limit but it's not a DataStage one but rather a resource one.
by chulett
Mon Nov 30, 2009 7:42 am
Forum: General
Topic: downloading latest datastage
Replies: 1
Views: 960

There's no such thing as a free version for anyone to download and play with.
by chulett
Sat Nov 28, 2009 12:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date function
Replies: 4
Views: 1719

Really shouldn't matter as you should do this in the Initial Value of a stage variable so it is only derived once. Unless you need to change the value when the job starts before but runs past midnight?
by chulett
Sat Nov 28, 2009 11:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date function
Replies: 4
Views: 1719

Two steps, actually. Date() or @DATE will get it in internal format then OConv() can convert it to any format. Or Field(TimeDate()," ",1,3) but you'll still need to 'adjust' the output.
by chulett
Sat Nov 28, 2009 10:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the months from the difference of two dates.
Replies: 3
Views: 1338

Sure... but the first question is going to be - what is your definition of a month? Were you given any business rules on how to compute this? Is this always a whole number? (etc etc etc)
by chulett
Sat Nov 28, 2009 10:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not Able to read xml file , NLS locale to US-ENGLISH
Replies: 14
Views: 7481

Well, there's always the manuals and the 'Help' button inside each stage. And this Best Practices Document which is chock full o' useful nuggets.
by chulett
Sat Nov 28, 2009 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not Able to read xml file , NLS locale to US-ENGLISH
Replies: 14
Views: 7481

In "the data" means what, exactly? The XML you are trying to read? I find it odd that you'd have extended ASCII characters in an XML file. :?
by chulett
Sat Nov 28, 2009 8:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Usage of $ENV variable
Replies: 3
Views: 1314

Please realize that I specifically said I didn't recommend it for parameters with values that need to change from run to run. They are suited for parameters that change value from environment to environment (hence the name) - typically ones that change from dev to test to prod like database credenti...
by chulett
Fri Nov 27, 2009 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not Able to read xml file , NLS locale to US-ENGLISH
Replies: 14
Views: 7481

A guess but the other thing you might try for the folder pathname is "D:", just the drive letter without the slash.
by chulett
Fri Nov 27, 2009 11:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not Able to read xml file , NLS locale to US-ENGLISH
Replies: 14
Views: 7481

Does your user have access to that drive? Does it work if you actually put the file in a directory rather than in the root of the drive like that? I've got no way to test this, you'll need to experiment a little to see what works.
by chulett
Fri Nov 27, 2009 10:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not Able to read xml file , NLS locale to US-ENGLISH
Replies: 14
Views: 7481

Those are runtime not compiler errors. You need to set the Folder Pathname to a directory and then the filename in the Wildcard property even if you don't need a wildcard. Looks like you've put both in the Folder Pathname.
by chulett
Fri Nov 27, 2009 10:19 am
Forum: General
Topic: How can I acheive a count
Replies: 5
Views: 1739

Nothing built in for that AFAIK. Perhaps an upstream Remove Duplicates stage?