Search found 15603 matches

by ArndW
Thu Apr 08, 2010 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DTX fuction in Enterprise Edition
Replies: 1
Views: 1366

There is no equivalent single function. Mathematically you could use integer division and modulo in a transform stage to convert (good only for smaller values, since it would need to be iterative for larger value conversions), but it might make more sense to call a cpp function to do this.
by ArndW
Thu Apr 08, 2010 5:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Resize VOC
Replies: 13
Views: 4638

That would be the Terminal Command Language or the ">" prompt and environment from DataStage/UniVerse. This is what you see when you enter the dssh or execute commands from the Admin tool.
by ArndW
Thu Apr 08, 2010 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema
Replies: 6
Views: 3271

Please give an example of what you consider a "special character", with both the symbol and the numeric character value. Strings can contain any character and have no inherent restrictions, you just need to declare the correct character set in order for the string contents to be correctly ...
by ArndW
Thu Apr 08, 2010 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Compare 2 dates
Replies: 17
Views: 7894

The DaysSinceFromDate() function gives you the difference in days between your two dates. The WeekdayFromDate() function returns the weekday number. Then use the days difference and day-of-week to compute valid dates.
by ArndW
Wed Apr 07, 2010 7:50 am
Forum: General
Topic: Upgrading DataStage Server Edition to a Parallel Extender
Replies: 5
Views: 1685

Craig - I knew what you meant, but thought I'd expand on your terse answer this time :wink:
by ArndW
Wed Apr 07, 2010 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I do a vertical pivot on columns?
Replies: 5
Views: 1989

Please post what you have tried, then someone might be able to make suggestions.
by ArndW
Wed Apr 07, 2010 7:10 am
Forum: General
Topic: Upgrading DataStage Server Edition to a Parallel Extender
Replies: 5
Views: 1685

The PX version is a set of extensions to Server; i.e. it contains the server version. Thus, if you are installing 7.5 PX on a 7.5 Server machine you don't need to run separate instances or de-install PX; you would just stop using the PX portion of the product.
by ArndW
Tue Apr 06, 2010 8:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple instance job finished, but don't do anything
Replies: 11
Views: 3372

How sporadic is the error? Can you identify any scenario on the system which, even if unrelated, might be triggering this problem?
by ArndW
Tue Apr 06, 2010 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem Running SSH2 on Windows Datastage server
Replies: 7
Views: 3991

Try using

Code: Select all

EXECUTE 'DOS -c "':BuildCmd:'"' CAPTURING CmdOutput RETURNING CmdRetCode
Call DSLogInfo(" *** CmdOutput (":Len(CmdOutput):" chars) contains :" : CmdOutput , "") 
Does the output look different? Is the length of CmdOutput greater than 0?
by ArndW
Tue Apr 06, 2010 8:13 am
Forum: Site/Forum
Topic: substring functionality in parallel edition
Replies: 2
Views: 3170

The left() and right() functions, as well as the In.String[startpos,length] syntax work identically in server and parallel transform stages.
by ArndW
Tue Apr 06, 2010 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple instance job finished, but don't do anything
Replies: 11
Views: 3372

Do you have autopurge set for this job? If yes, try turning it off and and seeing if the error is reproducible. I recall that there have been some odd errors involving multiinstance jobs and the autopurge partially deleting entries and causing some mayhem. I don't know if this applies in your case, ...
by ArndW
Tue Apr 06, 2010 4:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Left join user defined sql in Oracle EE stage
Replies: 6
Views: 8705

Could you could post your SQL join?
by ArndW
Tue Apr 06, 2010 4:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to allocate memory
Replies: 4
Views: 1818

it is an undocumented internal function which add data to the memory structure.
by ArndW
Tue Apr 06, 2010 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I do a vertical pivot on columns?
Replies: 5
Views: 1989

Use a transform stage and 2 stage variables to store eid and ename, then a constraint for row type 3 to output all 3 values together. This assumes the row order is always 1,2,3,1,2,3,1...
by ArndW
Thu Apr 01, 2010 9:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Projects are not visible through dsjob -lprojects
Replies: 20
Views: 6912

That is strange indeed, as everything looks OK. What output do you get with "dsjob -lprojects"? Just the "dssqa" project?