Search found 15603 matches

by ArndW
Tue Oct 06, 2009 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling Unix commands from ExecCommand stage in Windows
Replies: 13
Views: 3340

I you cannot get the command to work at DOS, then it certainly won't work in DataStage. Do you have the MKS Toolkit or something similar installed? What kind of a program object is "xyz" and does it have an ending?
by ArndW
Tue Oct 06, 2009 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Euro Symbol not populating in Oracle
Replies: 6
Views: 4449

Since the UNIX level NLS_LANG setting is correct, I would look into your ORACLE setting. From SqlPlus or the tool of your choice, execute "SELECT * FROM NLS_SESSION_PARAMETERS;" to see what your database is set up as.
by ArndW
Tue Oct 06, 2009 1:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: base64 to binary conversion
Replies: 4
Views: 2629

Exactly what conversion does this function do? Base64 (in a MIME context) is a known encoding scheme. "Binary", on the other hand, is not a specific encoding, it usually just means that the data is not in the standard displayable latin format. Do you want to convert Base64 encoded text bac...
by ArndW
Tue Oct 06, 2009 1:13 am
Forum: General
Topic: Conflicts with mutliple DS install in one server
Replies: 1
Views: 623

Were they able to log back in to the other instance while the 31538 instance was down?
by ArndW
Tue Oct 06, 2009 1:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling Unix commands from ExecCommand stage in Windows
Replies: 13
Views: 3340

This talk of UNIX commands on a window server is confusing me a bit. First of all, from a DOS session, can you execute your ""/fld1/fld2/fld3/fld4/xyz *.txt" command? From TCL you would need to execute the "DOS" command, as the "SH" command calls up the /bin/sh com...
by ArndW
Mon Oct 05, 2009 9:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: And/Or with () doesn't work in Transformer Constraints
Replies: 9
Views: 4132

I would recommend making a VarChar stage variable "svCAT" derived by "Link_Inv_Retraite_VCN.CATEGORIES[1,2]:','" then the constraint: NOT(IsNull(Link_Inv_Retraite_VCN.ACT_INITIAL) OR IsNull(Link_Inv_Retraite_VCN.LISS_FINAL)) AND INDEX('07,15,01,16,02,',svCAT,1) This uses the INDE...
by ArndW
Mon Oct 05, 2009 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborted without error
Replies: 4
Views: 1722

reset the job and post the contents of the "...from previous run" entry. something is going wrong in your transform stage - is that where you are calling your routine?
by ArndW
Mon Oct 05, 2009 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column generator to generate timestamp
Replies: 2
Views: 2110

I'm too far away from the docs, just add a transform stage, create the column and fill it using the builtin values for the current timestamp (CurrentTimestamp and CurrentTimestampMS).
by ArndW
Mon Oct 05, 2009 7:03 am
Forum: General
Topic: Syntax for calling execsqlproc from before sub routine
Replies: 5
Views: 1577

How about giving us just a little bit of a hint as to what is going wrong. Doing a cut-and-paste of your error message would be a good start.
by ArndW
Mon Oct 05, 2009 6:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow Compile
Replies: 11
Views: 3962

did IBM state why the compile might be particularly slow?
by ArndW
Mon Oct 05, 2009 6:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: And/Or with () doesn't work in Transformer Constraints
Replies: 9
Views: 4132

Don't use the Substrings() function. What datatype is "CATEGORIES"? Use either Substr() or the Link.Column[x,y] functionality. You don't need to convert back and forth fro integer.
by ArndW
Mon Oct 05, 2009 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Function
Replies: 3
Views: 24441

The Convert() and Char() functions are documented in the BASIC Programmer's Guide. This code removes all the LF (0x10) characters from a string and replaces them with nothing. In the case of fixed length fields the character is removed and a space padded to the end of the string.
by ArndW
Mon Oct 05, 2009 5:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Operator terminated abnormally: received signal SIGSEGV
Replies: 3
Views: 6537

Does the error happen on row 1? Where does the Dynamic stage point to?
by ArndW
Mon Oct 05, 2009 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performance issue after upgrading to oracle 11g from 10g
Replies: 1
Views: 1550

So, Oracle was upgraded from 10g to 11g and Datastage was not changed; yet you think that the reason for this slowdown in performance is due to DataStage? Have you had a DBA check Oracle and perhaps compare Oracle speeds (without involving DataStage) in queries before/after the upgrade. If that has ...
by ArndW
Mon Oct 05, 2009 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: And/Or with () doesn't work in Transformer Constraints
Replies: 9
Views: 4132

The "substrings" function is not the correct one to use, and in DataStage strings start at position 1. the "Matches" function is also not correct or required here. Try: Not(IsNull(Link_Inv_Retraite_VCN.ACT_INITIAL)) And Not(IsNull(Link_Inv_Retraite_VCN.LISS_FINAL)) And( (Link_Inv...