Search found 15603 matches

by ArndW
Fri Oct 14, 2005 2:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Embedded quotes in Sequential stages
Replies: 10
Views: 2810

Embedded quotes in Sequential stages

I can't seem to find the answer either in the documentation or by using the search facility here, but I think I've done it before... Strings with embedded quotes are usually "doubled" when written to sequential files. This applies to server jobs and such .csv as generated from Excel: Actual string c...
by ArndW
Thu Oct 13, 2005 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read Lookup Fileset twice?
Replies: 1
Views: 797

Yes, you can use the stage concurrently. Basically any object that is only being read can be re-used, difficulties only occur when simultaneous reads and writes are attempted.
by ArndW
Thu Oct 13, 2005 6:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: upgradation
Replies: 2
Views: 782

Hello Rafidwh,

the first task that will help you do this is to use the search facility and use the keyword(s) "upgrade" and "7" and then to read those threads which contain problems & solutions that people have had in doing such an upgrade.
by ArndW
Thu Oct 13, 2005 5:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time conversion using StringToTime
Replies: 3
Views: 1118

Thanks for the answers - even though they weren't the ones I wanted to hear.

I think that there is a big market for porting ICONV/OCONV to PX. Might even be worth 'productizing'!
by ArndW
Thu Oct 13, 2005 5:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To Reset the DS Job if the status is Abort using Routine
Replies: 4
Views: 1282

ray.wurlod wrote:... and a DSDetachJob to indicate that you're finished with it and another process doesn't get a "locked" message.


You caught me out; I noticed the omission when I posted yesterday and was too lazy to go back and edit the post; even though I knew that you would notice and correct my error.
by ArndW
Thu Oct 13, 2005 4:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: QAS Error
Replies: 1
Views: 862

One of the processes in this job has failed. What does stage QAS_ADDR.QASClean do?
by ArndW
Wed Oct 12, 2005 1:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC/Binary to Ascii
Replies: 2
Views: 805

This type of conversion is very common, so common that you can specify it in the sequential read stage of PX.

The Parallel Job Developer Guide that you can read as a .PDF in the Ascential folder of your Client PC has the information you need.
by ArndW
Wed Oct 12, 2005 12:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concurrent reads from sequential file
Replies: 4
Views: 1058

Yes, you can have multiple readers of the same sequential file. Protection is usually N-readers OR 1-Writer.
by ArndW
Wed Oct 12, 2005 12:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error when executing command
Replies: 2
Views: 2116

deepesh, The best way for you to overcome this problem would be to actually read PDF documentation on before and after stage subroutines. The shell script (ksh on Windows?) command invoked did not complete successfully and returned a '1' - the before/after expects a successful call to return '0'. Tr...
by ArndW
Wed Oct 12, 2005 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: metadata store
Replies: 7
Views: 2151

You understood incorrectly, DataStage at 7.5 still uses the UniVerse tables to store metadata.
by ArndW
Wed Oct 12, 2005 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Running Slow - Need Guidance to improve performance
Replies: 9
Views: 2572

The first issue is not your absolute speed, but that it changes over the run of the program; this points to some issue - once you get that cleared up you can approach your array sizes and commit frequencies.

What was the result of writing to /dev/null instead of the table?
by ArndW
Wed Oct 12, 2005 5:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Running Slow - Need Guidance to improve performance
Replies: 9
Views: 2572

Nagesh, change your job to make the output go to a sequential file with the path "/dev/null" and see what your performance numbers are and if they remain constant. If the speed slows down over time as it did before then you can eliminate that part of your job. If the speed remains constant then you ...
by ArndW
Wed Oct 12, 2005 5:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Excel functions for Normsdist and Normsinv
Replies: 1
Views: 634

You will have to write some DataStage Basic code to replicate these two functions manually. I took a look at some definitions on the web for this and they can easily be programmed - except the actual formulas that I have seen are somewhat different, so you would have to choose the "best" ones for yo...
by ArndW
Wed Oct 12, 2005 4:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To Reset the DS Job if the status is Abort using Routine
Replies: 4
Views: 1282

The routine would contain:

- a call to DSAttachJob that you wish to reset
- a call to DSGetJobInfo to get the current status
- a call to DSPrepareJob to make the job runnable
by ArndW
Wed Oct 12, 2005 4:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion of date from (Mon dd yyyy hh:mmAM) to (dd-mon-yyy
Replies: 18
Views: 5773

Doesn't Oracle expect a '/' instead of a space in the default date format?