Search found 464 matches

by WoMaWil
Thu Jan 04, 2007 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: calling shell script form datastage
Replies: 6
Views: 7174

Make a step by step approach to the use. Start with something like "ls >abc.txt" and continue step by step. Remember the User on Unix directly may be different to the one in DataStage (most time dsadm). Compare if it is both the same shell. Maybe you have to execute a sh before. By step-by...
by WoMaWil
Thu Jan 04, 2007 5:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture duplicate reject row in the sequential file
Replies: 8
Views: 4647

as Ray already said is, that we need more information, what you finally want to reach. Rejects and Removing Dublicates is a strength of DataStage.

Only if we knew, what you finally want, we can give you a good solution.
by WoMaWil
Thu Jan 04, 2007 1:56 am
Forum: DSXchange Testimonials
Topic: It is good not to be alone
Replies: 6
Views: 28218

Okay, than I will wait until he is once "on" again. He was off from the DS-Community (at that time Oliver was the meeting pot of the Community) between 11th September 2001 and November 2004. The old Central-European-DataStage-Soldiers will meet for a Whisky in Frankfurt next Tuesday, so I ...
by WoMaWil
Thu Jan 04, 2007 1:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Client ip or name on which DS client is opened
Replies: 15
Views: 3549

hi nick,

try without "-ai"
by WoMaWil
Tue Jan 02, 2007 10:49 am
Forum: DSXchange Testimonials
Topic: It is good not to be alone
Replies: 6
Views: 28218

It is good not to be alone

Hello, it is a good feeling to be together with such a big community. One of the values is the contribution of all top-posters which spent a lot of time to answer and discuss questions. Thank you all. Who has new about top-3 Poster ArndW? His last post was 8th Dec. Did he have an accident with his b...
by WoMaWil
Tue Jan 02, 2007 10:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: keeping two datastage environments in sync
Replies: 4
Views: 2347

(1) Set the parameters in the profile of your different user and nourish them by operationsystemparameters, so you never have to edit anywhere within DataStage.

(2) Use Version management.
by WoMaWil
Thu Dec 28, 2006 1:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading flat file problem
Replies: 17
Views: 5035

when reading a flat file with the Server Edition, best practice is reading first each field as Varchar-DataType and checking and transforming any field in the first transformer Stage.
by WoMaWil
Mon Dec 11, 2006 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oracle stage array size
Replies: 4
Views: 1546

Balaji is right. It is not easy to find the right size. As he said a good rule of thumb is to balance between both size when reading and writing. The one has to be same or factor of the other. 5-10 or 10-5 is okay, 10-12 or 12-10 is suboptimal. Same is true with commit size. If there would be an opt...
by WoMaWil
Fri Dec 08, 2006 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Deployment Strategy
Replies: 3
Views: 2435

DataStage is no Tool like MS-Excel, which you can roll out to everybody who can calculate that 1+1 is 2. Don't give the product to anybody who hasn't had at least a 3-day-introduction into the product. Better is a one week training. Don't give the product to anybody who doesn't work with product at ...
by WoMaWil
Fri Nov 10, 2006 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: excel sheet
Replies: 9
Views: 2536

Ray ment tabulator and you mean Worksheet tables. Thats what might happen with abriviation. Better you write "you" instead of "u". Here you are in a professional and international forum. If you don't write a good english you will often been misunderstood. You can use Excel with D...
by WoMaWil
Thu Nov 09, 2006 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance question with ORAOCI8 stages
Replies: 15
Views: 5884

Shane, you may profit (if the rows in tables in ORAOCI8a are few relative to Seq1 and Seq2) filling the content of ORAOCI8a into Hashfiles. I suppose that none of the tables in ORAOCI8a is filled in OORAOCI8b otherwise you should use transaction size 1 and no hash files. Maybe that the way you made ...
by WoMaWil
Thu Nov 09, 2006 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem of Misssing Jobs..
Replies: 8
Views: 2869

hi joseph,

before you do anything to the index you should perhaps invest into investigation and get more simple solutions. If it is an other reason you may do more harm to DataStage than you need to.
by WoMaWil
Thu Nov 09, 2006 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance question with ORAOCI8 stages
Replies: 15
Views: 5884

Generaly the increasing number of stream should be an advantage and not a dissadvantage. Give me more details on your streams.

Maybe that via interim sequential stage you can increase performance.
by WoMaWil
Thu Nov 09, 2006 6:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem of Misssing Jobs..
Replies: 8
Views: 2869

go to the server and use on the Command line the dsjob statement for to see if you get there job details.
by WoMaWil
Thu Nov 09, 2006 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Procedure calling problem
Replies: 4
Views: 1389

write before the line:

echo 'Procedure Started.'

the following lines:

echo "USER=${1};"
echo "PASSWD=${2};"
echo "DSN=${3};"
echo "PARAM=${4};"
echo "SCHEMA=${5};"

for to see if all parameters are correclty set.