Search found 464 matches

by WoMaWil
Tue Mar 04, 2008 3:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: newline character
Replies: 13
Views: 5958

LF (LineFeed) is Char(13)
CR (CursorReturn) is Char(10).

Lets say you want to have a new Line after "John" you code in Unix:

"

Code: Select all

John":char(13)
In windows it is:

Code: Select all

"John":char(13):char(10)
by WoMaWil
Mon Mar 03, 2008 3:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregating
Replies: 5
Views: 2307

If it is an Inner Join you have at least join the two tables in the DataBase, so why not sort and agg them there, that is more performant then doing it outside. If the task is to big for the database (and/or DataStage) there might be way to solve it in steps. Sometimes programming is also a kind of ...
by WoMaWil
Fri Feb 29, 2008 3:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Version clarification
Replies: 11
Views: 4458

IBM is (or may be is got) such a complicated construct. All the jokes we tell about the burocratic world are true like cycling responsiblity: You phone to somebody, (s)he says "I am not in charge, phone Mr(s) B", "B" say the same about "C" and finaly "Z" refer...
by WoMaWil
Thu Feb 28, 2008 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Version clarification
Replies: 11
Views: 4458

You are welcome, Arnd. I've send you a list of usefull IBM-Links for DataStage-people. Udo Neumann did a good work with this list. He presented it on our last usergroup-Meeting in Cologne.
by WoMaWil
Thu Feb 28, 2008 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Version clarification
Replies: 11
Views: 4458

Latest version may change. In the 7.x row latest version is 7.5.3

Details can be found:

https://www-01.ibm.com/software/data/su ... s/suite.do
by WoMaWil
Wed Feb 27, 2008 4:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Package installer
Replies: 2
Views: 1356

Okay packing was since version 3.1 one of two options and no more the only one of versioning Jobs. At that time the installation was only possible by root. The Release and Package Wizzard has two advantages: (1) no need to leave the (Unix)-Server (2) no need to have any DataStage-Client-Tool for the...
by WoMaWil
Tue Feb 26, 2008 1:25 am
Forum: General
Topic: How can i create a Database connection in Datastage
Replies: 4
Views: 5073

Dear Friends,

what do you want? Use ODBC to connect to the DataStage Repository, to read what is in DataStage or connect to a DataBase from DataStage?
by WoMaWil
Fri Feb 22, 2008 4:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting NULL records even after defining constraint
Replies: 19
Views: 5542

Concerning telefonnumbers some remarks: (1) you should check more than "Null" perhaps if at least one number is in it. (2) There are a lot of formats which differ from region to region in the world. (3) In some countries and among countries telephone numbers have a different length (4) Bes...
by WoMaWil
Wed Feb 20, 2008 7:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hi please help me onthis...
Replies: 4
Views: 1759

try to substitute oracle-target with sequential target and look if it is quicker and give us the answer.
by WoMaWil
Tue Feb 19, 2008 1:47 am
Forum: General
Topic: DATATAGE EXPORT's
Replies: 5
Views: 2898

What do you intent to do. That might us help more to give you a more qualified answer.
by WoMaWil
Thu Feb 14, 2008 3:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback Option in DataStage
Replies: 10
Views: 9186

If there would be an optimal "Array size" DataStage would use it. Array size is something which might make you job perform in a better time. You have to make some experiments for to find the optimal point for each Stage and Job. Concerning a caution Transaction Management it should be &quo...
by WoMaWil
Thu Feb 14, 2008 2:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exporting - Importing DS components
Replies: 8
Views: 3627

we have a client-side commandline-tool called "dsmove", which can be controlled by any script like batch or else. It can: - import any ds-element - export jobs, routines and transforms (as single *.dsx-file for each element, if needed) - delete elements - compile jobs all via command line....
by WoMaWil
Wed Feb 13, 2008 7:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback Option in DataStage
Replies: 10
Views: 9186

Dear Brah-Man, Transaction Mechanisms in DataBases was primarely made for single row operations of multiple tables. Within DataStage you can use them as described by Arnd and Asita. One Problem with large volumes is that some time the rollback segments get full and fuller. We made since many year go...
by WoMaWil
Wed Feb 13, 2008 3:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Deployment in Datastage
Replies: 4
Views: 1964

what do you mean by deploying?

Versioning

around the world

from server A to server B
by WoMaWil
Tue Feb 12, 2008 2:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Naming a file with the current timestamp?
Replies: 8
Views: 3524

It depends how fine you want to have the timestamp. If you pass while starting your job the date/time as a parameter you are able to use it for the file naming.