Search found 153 matches

by battaliou
Thu Mar 17, 2011 5:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Informix Datastage Server Tutorial source files
Replies: 0
Views: 1801

Informix Datastage Server Tutorial source files

Hello I have downloaded the datastage tutorial (ver 3.6 !) from http://www.oninit.com/manual/informix/english/docs/36dstage/6471.pdf I do not however have access to the source files and setup scripts. If anyone could provide me with these, I would be grateful. I seem to remember that these files wer...
by battaliou
Thu Mar 10, 2011 3:32 am
Forum: General
Topic: Job Control to execute a DS job
Replies: 12
Views: 8629

De nada, I just noticed Ray's got more points than me.
by battaliou
Wed Mar 09, 2011 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while connecting with oracle
Replies: 3
Views: 2063

Define your primary keys in the output columns of your filter stage.
by battaliou
Wed Mar 09, 2011 7:25 am
Forum: General
Topic: sequence to wait for 5 mins
Replies: 1
Views: 1236

Use an Execute Command stage in your sequencer. Issue the command "SLEEP 300"
by battaliou
Wed Mar 09, 2011 3:53 am
Forum: General
Topic: Job Control to execute a DS job
Replies: 12
Views: 8629

Ok, apart from the = issue in Value6, you have also assigned values in your parameters from 3 to 8 e.g. your code reads Value2=Field((File<3>),'=',2) surely you mean this to be Value2=Field((File<2>),'=',2) ... Value7=Field((File<7>),'=',2) An easy fix for Value6 would be Value6=File<6>[8,999] or Va...
by battaliou
Tue Mar 08, 2011 10:01 am
Forum: General
Topic: Job Control to execute a DS job
Replies: 12
Views: 8629

Can you paste the value of your input file ?
by battaliou
Tue Mar 08, 2011 7:10 am
Forum: General
Topic: Job Control to execute a DS job
Replies: 12
Views: 8629

I tested this code and it works fine. Your file must either be empty or not contain '=' delimiters. Do a call DSLogInfo(File,"File") and examine the contents. Of course if you require "=" to be included in your parameters you will have to use an index command to substring your pa...
by battaliou
Wed Mar 02, 2011 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improving Job performance
Replies: 16
Views: 9241

Please note a modulus of size 1 is probably not a good idea. The minimum size I'd use is 997.
by battaliou
Wed Mar 02, 2011 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance
Replies: 5
Views: 3364

Have you tried a bulk load? Your flat file could load directly into oracle without the need for datastage at all. Also, remember to check "Allow stage write cache" for your hashed file. If you know the key type of the hashed file you could get a marginal improvement in performance by makin...
by battaliou
Wed Sep 22, 2010 2:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP PX Stage - UTF conversion
Replies: 5
Views: 4428

What happens when you "view data" ?
by battaliou
Wed Sep 22, 2010 1:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP PX Stage - UTF conversion
Replies: 5
Views: 4428

Have you defined your meta data as varchar unicode?
by battaliou
Wed Sep 15, 2010 1:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF stage reading Mainframe Dataset that has S9(S) Comp -3
Replies: 13
Views: 9375

I've seen this problem on 8.1 as well. Try reading the data as a char and then do a conversion on it. You will probably be able to see the data as a string with a signed value on its end e.g. } would be a 0. I'd be interested to hear if anyone else is struggling to upgrade CFF to 8.1.
by battaliou
Wed Sep 08, 2010 6:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the conductor node, section leader and player?
Replies: 16
Views: 11223

This is actually quite an advanced topic but try to think in terms of a musical orchestra or a choir... Set up the environment variable $APT_DUMP_SCORE in your job. This will display the "score" in your log file. This score could also be considered as the conductor node which shows the ent...
by battaliou
Wed Jul 21, 2010 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Left outer join in HASH file
Replies: 22
Views: 7218

Er, you're trying to put NULL into a sequential file? Good luck.
by battaliou
Tue May 18, 2010 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Packed column from DB2/400
Replies: 37
Views: 7736

Read the entire string as a single varchar(1000) in sequntial file mode

Map your fields in a transformer:
ColE : if index(input.col,'COL E=',1) > 1 then field(input.col[index(input.col,'COL E=',1)+7,99],'&',1) else ''