Search found 15603 matches

by ArndW
Fri Mar 17, 2006 1:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date format MMDD
Replies: 3
Views: 755

In this case you are only changing one character to another, so the CONVERT('/','',In.Column) is quite efficient and sufficient
by ArndW
Fri Mar 17, 2006 1:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: My Job is running very slow
Replies: 12
Views: 2954

Either replace your DB/2 write stage with a sequential file stage and measure your speed to determine if the DB/2 is the bottleneck. Also, what %age CPU do your 3 transform stage show? If they are at less than 30% on a long run with a moderately busy system then perhaps you don't need splitting into...
by ArndW
Thu Mar 16, 2006 12:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Documenting a job by hand
Replies: 16
Views: 3122

The Doc Tool in the Manager existed at Version 4, as far as my remembery tells me.
by ArndW
Thu Mar 16, 2006 12:54 pm
Forum: Site/Forum
Topic: Customer Feedback
Replies: 10
Views: 5649

Everyone is free to form an opinion - they are neither good nor bad and are always right (which is why they aren't called anything but opinions ). I'm lucky that I wasn't the brunt of the comment since I tend to be much less forthcoming sometimes and have a shorter on-line fuse that Ray. Fortunately...
by ArndW
Thu Mar 16, 2006 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: General query - PX/EE
Replies: 1
Views: 535

Hello Vic, I look at Server and PX/EE as two separate languages, like Cobol and C++. Knowing how syntax and semantics works will help you learn a second language when you already know one, but you will still need to do a bit of studying, training and practising. The common front-end makes it easy to...
by ArndW
Thu Mar 16, 2006 10:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8079

If network traffic/collisions is the source, you should see bad performance when you FTP a file (manually) between the machines. Take a 10Mb file and see how long that takes to transfer; a .13 turnaround time is very fast and doesn't point to a network problem.
by ArndW
Thu Mar 16, 2006 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datatype of compressed data.
Replies: 14
Views: 4852

compressed data is binary. The first bytes of the file determine what the type is, so in your case the first packet (and most likely all subsequent ones) are being mangled. Can you output the mqseries compressed data straight to a unix file without using datastage? I am willing to bet that it isn't ...
by ArndW
Thu Mar 16, 2006 10:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Documenting a job by hand
Replies: 16
Views: 3122

I would have shot myself at about job number 5. If you list DS_JOBOBJECTS and look at the majik keywords in field 2 you should be able to come up with an automated means of getting your information. If these jobs are in a project you can use the built-in tools, i.e. get the ACCESS tables from from t...
by ArndW
Thu Mar 16, 2006 6:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting value of User Defined Environment Variable
Replies: 10
Views: 2904

Parag, you can set the UNIX or WINDOWS environment variables in a transform stage but the changes are only going to be visible inside that transform and in no other places. This is because actions are performed by different processes that run independantly of each other. The only common environment ...
by ArndW
Thu Mar 16, 2006 4:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script to abort the job
Replies: 5
Views: 1135

The before-job routine will automatically fail the job if the return code from the shell is non-zero. So make your shell script return an error.
by ArndW
Thu Mar 16, 2006 3:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8079

Make a copy of your load job and write to a sequential file (/dev/null) to see what speed you job is capable of without writing to Oracle. That way you will be 100% certain that the loading to Oracle is the culprit in your case. I am assuming that the Oracle database is on a remote system from your ...
by ArndW
Thu Mar 16, 2006 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP error
Replies: 11
Views: 2983

Can you print out the values of the password in both instances? Change it from "encrypted" type to string if necessary. The first entry of the director log will show that parameter's runtime value.
by ArndW
Thu Mar 16, 2006 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to run DS job
Replies: 10
Views: 3241

xli - there are not too many objects in your projects. The reason for doing a COUNT DS_JOBOBJECTS was to make DS traverse the whole set of file keys to make sure that each link was working, otherwise you would have gotten a fatal error message. Can you try to create a very simple server job with no ...
by ArndW
Wed Mar 15, 2006 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP error
Replies: 11
Views: 2983

The DS_USERNO is something different. If you look at your initial error message regarding the FTP stage and failure of the password to work - how are you setting the password in the FTP stage? Is it hardcoded?
by ArndW
Wed Mar 15, 2006 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: scripting
Replies: 5
Views: 1244

There is no direct scripting language in DataStage - there is a DataStage BASIC programming language and perhaps Sequences might be considered and advanced scripting language.

Why a scripting language? Hmmm... why not?