Search found 653 matches

by ogmios
Fri Mar 25, 2005 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: WARNING: DataStage has found more CPU's on your system (12)
Replies: 14
Views: 5441

Version 7.5 complains on the number of CPU's but happily seems to continue working (must be a bug in the software :wink:).

We also had problems with dual-core cpu's which Ascential counts as 2 separate cpu's.

Ogmios
by ogmios
Mon Mar 21, 2005 10:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Upate else Insert to ORA
Replies: 9
Views: 14630

Re: Upate else Insert to ORA

A hunch: the definition of your primary key in Oracle and in the DataStage job are not the same. Put them to the same and your error will disappear.

Ogmios
by ogmios
Sat Mar 19, 2005 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: recovery option..
Replies: 2
Views: 773

Re: recovery option..

It's not built in into DataStage as such, you have to implement the functionality yourself. E.g. if the records you move contain a (rising) surrogate id, you can do a query on the target for the maximum already loaded surrogate id and integrate this in the original job. Before executing the real job...
by ogmios
Thu Mar 17, 2005 12:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: version control moved different job
Replies: 8
Views: 3372

Re: version control moved different job

DataStage Version control works in mysterious ways... we got rid of it in every place.

Ogmios
by ogmios
Thu Mar 17, 2005 12:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commmit in ORA
Replies: 3
Views: 934

Go back to the person who gave you the assignment. A transaction size of 0 means you only commit once after everything is complete, which is in the case of Oracle very good if you transaction fits in the undo tablespace.

Ogmios
by ogmios
Tue Feb 22, 2005 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport command
Replies: 14
Views: 3935

Re: dscmdexport command

There's no skip for the jobs in use... we've been "harassing" Ascential for this since v4.

Ogmios
by ogmios
Tue Feb 22, 2005 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 API
Replies: 3
Views: 1298

Your DB2 administrators can also make the warning go away by changing a setting on the db2 side, never bothered so far to find out just what setting it is.

Ogmios
by ogmios
Wed Feb 16, 2005 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Errors during jobs import
Replies: 4
Views: 1748

Re: Errors during jobs import

First check your diskspace (whether you're not in a disk full condition).

Secondly try to cut your imports in smaller pieces, v5 had some problems with very big import files.

Ogmios
by ogmios
Mon Feb 14, 2005 10:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with "import from nul..." -- fast delete
Replies: 3
Views: 1719

you have to shell-out from datastage to do the import... import is not 'SQL', you need a db2 shell to be able to do it.

Ogmios
by ogmios
Wed Feb 09, 2005 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Random abnormal termination of jobs
Replies: 11
Views: 5899

chinek wrote:hi
....

Thanks for the help ogmios.

Nick
Forgot about the not being required to bounce :oops: . By the way the solution is from Ascential, it only took them about half a year to figure that out :wink:

Ogmios
by ogmios
Wed Feb 09, 2005 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Random abnormal termination of jobs
Replies: 11
Views: 5899

For a leap of faith. Change your dsenv in the following way: Add "/usr/lib/lpw" in front of the LD_LIBRARY_PATH, restart DS and your problem will magically disappear :wink: So it should be something as LD_LIBRARY_PATH=/usr/lib/lwp:... This is a work around for a known thread problem in Sol...
by ogmios
Tue Feb 08, 2005 1:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML line-ends in DataStage export
Replies: 7
Views: 2926

Phil, according the W3C XML standard the carriage return as well as the line feed character is considered whitespace... I appologise sincerely for disparaging DataStage in this way. I am evidently mistaken. Nonetheless, the question stands, is it important that these files be kept this way, or can ...
by ogmios
Tue Feb 08, 2005 12:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job accessed by another user
Replies: 6
Views: 2667

Re: Job accessed by another user

Search this site for "unlock"... what's also important is to release the locks (the bottom half of the screen instead of the top half you're using now).

Ogmios
by ogmios
Tue Feb 08, 2005 11:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with FTP component
Replies: 2
Views: 1211

Re: Problem with FTP component

STORE is the internal ftp command for "put" when SUNIQUE is off, with SUNIQUE on it would be "STOU". Essentially it means that the ftp server at the other side signalled an error. Maybe you can have a look in the log files of the ftp server of the machine where you ftp to. Probab...
by ogmios
Mon Feb 07, 2005 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage log
Replies: 3
Views: 869

Maybe it's time to make a FAQ item for this question :wink: You cannot just read the "DataStage Log files" with vi e.g. you need something to get the log entries in readable format, either with dsjob or writing something in uv/BASIC to extract the entries. Also some third party add-on tool...