Search found 42189 matches

by chulett
Wed Feb 18, 2009 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading the Upper and Lower values in a same record
Replies: 7
Views: 2143

Spell your requirement out in words. Examples are good but should compliment the written requirements, otherwise people will be guessing what it looks like you may need.
by chulett
Wed Feb 18, 2009 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to purge job logs through command line.
Replies: 5
Views: 2349

Which is why I noted it was akin to a truncate.
by chulett
Wed Feb 18, 2009 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: running the job in UNIX
Replies: 15
Views: 3850

Must not... note that they must exactly match the parameter name, case and spelling.
by chulett
Wed Feb 18, 2009 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: running the job in UNIX
Replies: 15
Views: 3850

Not sure I've ever seen quotes referred to as 'inverted commas' before.
by chulett
Wed Feb 18, 2009 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: running the job in UNIX
Replies: 15
Views: 3850

:? Are you asking if you need to quote them? No, not typically, unless perhaps the parameter value has a space in it.
by chulett
Wed Feb 18, 2009 1:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: commit from delete
Replies: 4
Views: 1163

A job needs to abort in order to rollback any uncommitted changes, auto-generated or otherwise.
by chulett
Wed Feb 18, 2009 1:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to purge job logs through command line.
Replies: 5
Views: 2349

There really isn't a way. You can perhaps 'truncate' them using CLEAR.FILE in a dssh session, but you'd need to know the job number and restore the auto-purge settings afterwards as they would be removed as well.
by chulett
Wed Feb 18, 2009 1:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: commit from delete
Replies: 4
Views: 1163

No, there's no need to explictly 'commit'. And I assume you would still use the APT_ORAUPSERT_COMMIT_ROW_INTERVAL or APT_ORAUPSERT_COMMIT_TIME_INTERVAL environment variables to control the commit frequency, even for a delete.
by chulett
Wed Feb 18, 2009 1:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Location of subtring in a string
Replies: 16
Views: 3413

AFAIK, you can't count anything from the right-hand side so you'd need to check for the total number of occurances and take the next to last one. Perhaps a combination of Count() to tell you how many times the substring occurs in the string and then Index() to tell you where to start substringing fr...
by chulett
Wed Feb 18, 2009 12:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Location of subtring in a string
Replies: 16
Views: 3413

Right() performs a substring starting from the right-hand side, so really wouldn't help you. You'd need to find all occurances of the substring and then take the last / highest position one, I guess.
by chulett
Wed Feb 18, 2009 9:28 am
Forum: General
Topic: how could i append "Date" to sequential file name
Replies: 13
Views: 7885

I'm not aware of a UNIX that would care about the colons, but decided to ask. This smells like a bug... anyone report this to their support provider, gotten an official take on the issue?
by chulett
Wed Feb 18, 2009 9:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Getting while invoking OSH shell
Replies: 3
Views: 1255

It also mentions where to add them.
by chulett
Wed Feb 18, 2009 8:41 am
Forum: General
Topic: how could i append "Date" to sequential file name
Replies: 13
Views: 7885

Me no gots EE. :cry:
by chulett
Wed Feb 18, 2009 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Getting while invoking OSH shell
Replies: 3
Views: 1255

Did you try searching? This exact same question was asked and answered just yesterday.

viewtopic.php?t=125407
by chulett
Wed Feb 18, 2009 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: regarding spliting the records
Replies: 14
Views: 2935

:? Your question has already been answered and Convert() can do what you need. As noted, this FAQ discusses the same technique.