Search found 5168 matches

by kumar_s
Thu Mar 16, 2006 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: General question
Replies: 4
Views: 919

No way...
There is not Rollback process for DS_JOBS.
by kumar_s
Thu Mar 16, 2006 9:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting value of User Defined Environment Variable
Replies: 10
Views: 2904

Hmm.... His point is... If you change the Environmental Variable at the mid of the execution of a sequence, the chaged value wont be reflected to the main job control, and hence wont refelect to the upcomming called jobs. So you need to use some of the conventional methond of passing values among jo...
by kumar_s
Thu Mar 16, 2006 9:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datatype of compressed data.
Replies: 14
Views: 4852

Can you uncompress the same file using the mentioned command from command prompt with out any issue?
by kumar_s
Thu Mar 16, 2006 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 6741

All the parameters can be stored in a file and BASIC can be used to just read the file and pass the parameter to the job/sequence as required. And if you are requested(If need to trigger only from command prompt after scheduling), you can call this Batch Job (Which has the BASIC code which calls the...
by kumar_s
Thu Mar 16, 2006 8:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8079

Try loading the database from command prompt with the file which is been exported by datastage using Load command. And check the time difference.
by kumar_s
Thu Mar 16, 2006 8:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8079

So as suggested, what is your network traffic?
Have you tried to ping with your server, are you able to get the responses less than 10ms (which is most likely the accecptable value).
by kumar_s
Thu Mar 16, 2006 8:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 6741

What sort of parameters you like to pass? If you manage to key in the 'default' in the sequence, it should pass the value to the underlying jobs. So it should be ok to just call the job. If you need to pass some dynamic parameter which vary for each run, you need to store it ina seperate file and yo...
by kumar_s
Thu Mar 16, 2006 8:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get latest 36 months of data from the source file??
Replies: 8
Views: 2266

There is nothing more to explain. The pattern you mentioned wont be a Date formet. Hence if it is a char/varchar type you can just get the substring of the month poriton alone. There are many functions available. Or you can just use this method in Transformer. In the expression for that column, use ...
by kumar_s
Thu Mar 16, 2006 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 6741

Hi, Search for this topic. You can get some nice code and informations like this. Job ran successfully and here is the new and improve script #!/bin/ksh ################################################################################ # Description : runs DataStage job THIS_SCRIPT="DoSomething.k...
by kumar_s
Thu Mar 16, 2006 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File strange behaviour
Replies: 8
Views: 1802

DSguru2B wrote:I think if you are trimming your data in the transformer where you are matching the keys, then probably whats happening is that the composite keys are resulting to be duplicate.

If it is duplicated, the number of match should increse, but here its other case.
by kumar_s
Thu Mar 16, 2006 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datatype of compressed data.
Replies: 14
Views: 4852

How about VarBinary or LongVarBinary ?
by kumar_s
Thu Mar 16, 2006 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get latest 36 months of data from the source file??
Replies: 8
Views: 2266

I guess the field should be char/varchar/integer.
Just grep the month from the field. Link.Filed[4,2] and check whether it is greated than MonthFromDate(CurrentDate())-36
by kumar_s
Thu Mar 16, 2006 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get latest 36 months of data from the source file??
Replies: 8
Views: 2266

Welcome Aboard :D
You need to furnish more information. Do you have a date column. Or what is the format of the column based on which you like to retrive.
Besides, you can use MonthFromDate function to retrive the current month.
by kumar_s
Thu Mar 16, 2006 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File strange behaviour
Replies: 8
Views: 1802

Is the same two key marked in Sequential file.
Is that the matching between the two file is based on these composite keys?
As mentioned, are those keys which doesnt match, are without any extra leading/trailing spaces or special characters.
by kumar_s
Thu Mar 16, 2006 6:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting value of User Defined Environment Variable
Replies: 10
Views: 2904

From your post, i guess your requirment would be to set a envirnment variable to particual job or to a series of job based on a conditon.
If that is a case, you can use 'UserVariableActivity'.
Built for the same reason.