Search found 15603 matches

by ArndW
Fri Feb 10, 2006 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Supporting Production DS EE environments
Replies: 4
Views: 1315

What sort of thoughts are you interested in? You've explained the customer's setup in detail and it sounds like they have reasons for all of their configuration settings; so whether someone thinks the configuration makes sense or not won't make a difference. What kind of thoughts are you interested ...
by ArndW
Fri Feb 10, 2006 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write to dataset failed: File too large
Replies: 14
Views: 5322

Check the dsenv script in your project directory and also the DataStage startup script in /bin for ulimit settings.
by ArndW
Fri Feb 10, 2006 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write to dataset failed: File too large
Replies: 14
Views: 5322

In the job properties you can specify a before-job subroutine and I believe one of the options is ExecSh or something similar to execute a UNIX shell command.
by ArndW
Fri Feb 10, 2006 11:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write to dataset failed: File too large
Replies: 14
Views: 5322

OK, put a "ulimit -a" external command into your job to make sure that the background process is getting the same limitations; perhaps one of your initialization scripts resets the limit.
by ArndW
Fri Feb 10, 2006 10:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the date of job creation
Replies: 18
Views: 3777

wahil, good guess, and it might work most of the but it isn't correct. The DATA.30 and OVER.30 are components of a type 30 hashed file, and if entries are made to the table that cause an overflow the OVER.30 file will be modified as well so your method doesn't guarantee a good answer. Also, the prob...
by ArndW
Fri Feb 10, 2006 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write to dataset failed: File too large
Replies: 14
Views: 5322

You also need to remove the dataset as well and re-create it.
by ArndW
Fri Feb 10, 2006 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Write to dataset failed: File too large
Replies: 14
Views: 5322

I think you need to stop and & restart the DataStage server after making the ulimit change, have you done that?
by ArndW
Fri Feb 10, 2006 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Disk Space.
Replies: 5
Views: 1326

There are far too many variables to make any meaningful estimate. You could be doing great on space and one sngle SORT or AGGREGATION can blow estimates away. One of the basic laws of computing is that disk space will always be used to capacity when allocated But you could ensure that you use a spec...
by ArndW
Fri Feb 10, 2006 10:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing and Scheduling dsexport or dscmd on server
Replies: 11
Views: 2890

What gets listed when you just type "at" without options? How does your job look in the schedule?
by ArndW
Fri Feb 10, 2006 7:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to trim leading zeroes using trim()
Replies: 26
Views: 8042

I just wrote a 60-second PX job. Starts with a row generator that generates 100 rows with just one column called "Test" of type VarChar(32). The "edit row" sets the values to cycle between "00001" and "00000002". The transform does a simple "TRIM(DSLink2.Test,'0','L')" and the output goes to a PEEK ...
by ArndW
Fri Feb 10, 2006 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem openning job- No design time information
Replies: 7
Views: 3052

Benouche - that is why I asked if something had broken. If the answer is that it is OK in development and showing an error in production then what you've described is the actual cause, if it is in the development environment or somewhere where it "used to" work then they have a problem.
by ArndW
Fri Feb 10, 2006 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBS Query
Replies: 9
Views: 4356

They are separated by a space in your output. Change your query order to "SELECT CATEGORY, JOB FROM DS_JOBS WHERE CATEGORY LIKE ='AAB%" and you'll see the difference.
by ArndW
Fri Feb 10, 2006 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while working with SAS datasets
Replies: 2
Views: 1408

Your configuration contains a bad path.

...The current PATH is: {text removed}/local/app/oracle/product/9.2.0.6/bin:/binAPT_SAS_Driver in SAS_13


The last part of the string is a malformed expression, ":/binAPT_SAS_Driver" looks like you forgot a "/".
by ArndW
Fri Feb 10, 2006 6:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Sequence
Replies: 5
Views: 1083

How do you differentiate a first and a second run in your sequence? It seems that the first run you start the job #2 and don't wait for it to complete, so when you call it a second time it is still running and causes the error you posted.
by ArndW
Fri Feb 10, 2006 5:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in Sequence
Replies: 5
Views: 1083

I am not clear on exactlywhat you are intending to do; but the error messages means that when you are trying to reset iyour job it is most likely still running.