Search found 5168 matches

by kumar_s
Thu Jun 29, 2006 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Sequential File handling
Replies: 3
Views: 1285

Or you can use explicit null handling with using modify stage as explained in the video Tech Tip. :wink:
by kumar_s
Thu Jun 29, 2006 10:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Certification Pass Score
Replies: 18
Views: 5581

trobinson wrote:To be precise, it is not 75% of 79 or you can miss 19 out of 79. The questions are weighted by category, I believe.

So it is 75.949367088607594936708860759494% :wink:
by kumar_s
Thu Jun 29, 2006 10:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 10 Table Move
Replies: 7
Views: 1698

Ray,Ken - Is there any strong reason why, to keep seperate job for each table? Otherthan better understandability and maintanance.
by kumar_s
Thu Jun 29, 2006 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage: Partitioing type
Replies: 5
Views: 1249

Bit tricky, I need to work out and check to answer. But I guess should be the partiton on the two key. BTW may I know what is the type of join you perform?
by kumar_s
Thu Jun 29, 2006 10:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort a Job Manually
Replies: 5
Views: 1222

Exception handler will get the control only when the job gets aborted. There wont be any use of UtilityAbortToLog () then.
If you need to abort within in the same job, you have another ugly approach to marking 'bortAfter n rows' in transformer.
by kumar_s
Thu Jun 29, 2006 10:33 am
Forum: Site/Forum
Topic: Video Tech Tip Series - FEEDBACK
Replies: 49
Views: 73519

This is wonderful step taken to make use of updated technologies. Great work!! Keeping in mind the load to the pc, I could see clarity was compromised. As mentioned by all, due to the varied size of the video, the letters looks blured.
by kumar_s
Wed Jun 28, 2006 11:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash Partitioning
Replies: 8
Views: 2667

Hash partition on Zip and Age. Mark the both as key in sort stage. Mark AllowDuplicates = False. Reverse the order of sort for your desired result. You can accomplish within single stage.
by kumar_s
Wed Jun 28, 2006 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatination Problem for Tab delimited file
Replies: 9
Views: 3598

loveojha2 wrote:Other options could be Len(col2)=0
or Col2=""
or isNull(Col2)
or Col2=@NULL.STR

Checked all the possible condition :wink:
But needless to check for empty string on a Float column.
by kumar_s
Wed Jun 28, 2006 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Links are missing in the DataStage Job
Replies: 5
Views: 1687

It is worth to try REINDEXing once you get full access.
by kumar_s
Wed Jun 28, 2006 8:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatination Problem for Tab delimited file
Replies: 9
Views: 3598

Work on the other way, Check for null and give an empty character '' instead.
by kumar_s
Wed Jun 28, 2006 7:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update SQL Query
Replies: 18
Views: 4048

With the given FI-Then-Else condition you can directly replace the target table with the whole set of input table.
by kumar_s
Wed Jun 28, 2006 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding ERROR
Replies: 2
Views: 729

uvconvig file under the DSHOME will have the entry of the max number of Type 30 file which can be used at time.
Stop the datastage server, regen the uvconfig file, and restart the server.
by kumar_s
Wed Jun 28, 2006 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update SQL Query
Replies: 18
Views: 4048

Not much clear with your requirement.
What is that you expect to change in

Code: Select all

If DEPT=30  And ENAME = 'Diana' Then 10 Else DEPT.
on DETP derivation.
by kumar_s
Wed Jun 28, 2006 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batch file for ftp not working ..
Replies: 13
Views: 3416

It's secure ftp, folks. You cannot supply passwords to it like this, period. You need an RSA Key on the target system to allow 'passwordless' access. Or fall back on 'regular' ftp, if allowed. If s ftp works from command prompt, shouldnt it work the same from batch file from windows? Joseph - Hope ...
by kumar_s
Wed Jun 28, 2006 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to pass values without human intention
Replies: 2
Views: 705

Hi Xpert, Do a search. This has been handled and explained several times. The available options dsjobs has a option to pass paramter by -param . All your parameters can be declared in a sequential file, and during runtime the file can be read and the values can be passed without human intervention. ...