Search found 15603 matches

by ArndW
Sun Nov 23, 2008 4:47 am
Forum: General
Topic: Testing
Replies: 6
Views: 1309

"Unit Testing" is common to most software and not specific to DataStage. Recent years have seen great leaps in the methods used to ensure software quality and it is sometimes hard to keep up with trends. I use "extreme programming" as an example - for me it sounds like a TV show pitting computer pro...
by ArndW
Sat Nov 22, 2008 4:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence Aborted
Replies: 6
Views: 2379

One possibility is that your system is overloaded and the last one takes so long to initiate thatis causes a timeout. If you monitor your system load using your favorite monitoring tool (such as vmstat) while this sequence runs does the system begin to page or swap and what is the CPU load?
by ArndW
Mon Nov 10, 2008 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Designer and Secure ID passcode authentication
Replies: 2
Views: 777

You cannot do this. The DataStage clients don't go through "sessions" as such, but use a number of ports to communicate with listeners on the other side. Perhaps if you use tunneling and open up a telnet session you can open up these ports and use DataStage.
by ArndW
Mon Nov 10, 2008 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence
Replies: 15
Views: 2819

Have you looked into "restartability" in Job Sequences yet, that would seem to be what you are looking for.
by ArndW
Sun Nov 09, 2008 9:03 am
Forum: General
Topic: create hash file
Replies: 6
Views: 1609

Craig - Ack, I was wrong, missed that!
by ArndW
Sun Nov 09, 2008 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX:Transformer error
Replies: 8
Views: 3000

The "sed" and "cxx" commands cannot be found. Have you changed your environment settings on your windows server? What do you mean with All of sudden it is not showing compiler options in Admin ? If you create a new project and look into the administrator settings do you see the appropriate compiler ...
by ArndW
Sun Nov 09, 2008 7:43 am
Forum: General
Topic: Field 'V' did not consume entire input.
Replies: 6
Views: 2585

Do you have fixed-length CHAR fields? Check to see that your metadata definitions in the job match the actual data exactly, otherwise you will get warnings or errors such as what you have already seen.
by ArndW
Sun Nov 09, 2008 7:39 am
Forum: General
Topic: create hash file
Replies: 6
Views: 1609

If you click this item then the greyed out "Options" button becomes active and will let you change the hashed file attributes from the default. If this option is not specified and the file doesn't exist, then you will get an error.
by ArndW
Sun Nov 09, 2008 7:37 am
Forum: General
Topic: Reg ORA_NLS33 env variable
Replies: 5
Views: 2365

Are you certain that the "dsenv" file doesn't call a script? If you source this file using ". ./dsenv" from a login session what setting do you get for the ORA_NLS33 environment variable?
by ArndW
Sun Nov 09, 2008 7:34 am
Forum: General
Topic: Job Resest
Replies: 1
Views: 669

Jobs are not reset automatically after an abort. In Job Seuqences, when you call a job using the Job Activity you can specify that the job is "reset if required, then run".
by ArndW
Wed Nov 05, 2008 4:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 upsert
Replies: 3
Views: 1194

Perhaps someone else might help; I believe that the price of membership is low copmared to the value received.
by ArndW
Wed Nov 05, 2008 3:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting a return code in a PX job and accessing it in a seq.
Replies: 2
Views: 1707

You can work with DSSetUserStatus() and DSGetUserStatus(). In PX jobs they can be set as part of the before/after job routines.
by ArndW
Wed Nov 05, 2008 3:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unbale to view data from oracle stage
Replies: 3
Views: 1568

Oracle DATEs are actually timestamps, so keep the timestamp definition.
by ArndW
Wed Nov 05, 2008 2:59 am
Forum: General
Topic: Can we use regular expression in DataStage job??
Replies: 5
Views: 11843

No in the job, but you can always shell out to the OS and use regular expressions and functions there.
by ArndW
Wed Nov 05, 2008 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tuning a Ds job involving Oracle stages
Replies: 5
Views: 1541

While the approach might be correct, I am not certain that your measurements are. Did you separate these stages into their own jobs with no other links and check the timing? If not, then your results are likely skewed since timings in jobs usually depend on other stages and often you just end up mea...