Search found 5168 matches

by kumar_s
Fri Jul 14, 2006 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date comparision
Replies: 6
Views: 1174

Isnt the year part of you Iconv should have 4 digit to convert :roll:
by kumar_s
Fri Jul 14, 2006 8:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: node_node3:partition 0 of 1 on node 3 terminated unexpectdly
Replies: 3
Views: 1590

But you can always speak to your support. They can give you a secrete patch :wink:. (Based on the pressure you create to them :wink: )
by kumar_s
Fri Jul 14, 2006 8:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: run time fatal error : Player 12 terminated unexpectedly
Replies: 23
Views: 9040

You cannot straight away goahead and clean up all the resource displayed in the DS director. If your are sure about nothing is been used or no job is running, it is better to restart the server once. There is a bug in the (Java code) Job monitor. As you might have aware, by canging the time based mo...
by kumar_s
Fri Jul 14, 2006 8:02 pm
Forum: Enhancement Wish List
Topic: Postgres Support ?
Replies: 6
Views: 3060

May I know what is Postgres?
by kumar_s
Fri Jul 14, 2006 7:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence question
Replies: 12
Views: 4062

Or have a routine to send mail regarding the status of each job in AferJobSubroutine.
Anyway by having the unconditional trigger of each job, you dont have to abort the sequence untill all finishes. So the same routine in after the sequence gets over.
by kumar_s
Fri Jul 14, 2006 7:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job sequence - Unable to bring up the property window
Replies: 3
Views: 896

Search for dsclient_xpsp2 or look for ecase60128.
by kumar_s
Fri Jul 14, 2006 6:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic File
Replies: 4
Views: 1184

You can check the other post "Runnig a script in datastage" with the same sort of issue for naming the file.
by kumar_s
Fri Jul 14, 2006 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: General Server Error
Replies: 3
Views: 1068

Perhaps I guess, this was an issue with logging(Status). Since it has a common hashed file to log all the log of the multiple instance job instantiated at same time, locking issue might have occured.
Stilln not sure about it.
by kumar_s
Fri Jul 14, 2006 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Runnig a script in datastage
Replies: 17
Views: 4144

Though the point b given in Ray post doesnt give any big impact, the point a, is important.
by kumar_s
Fri Jul 14, 2006 6:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check Points in DataStage jobs
Replies: 7
Views: 4882

Perhaps another temp table with row commit.
by kumar_s
Fri Jul 14, 2006 6:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transforming a delimited file into a non delimited file
Replies: 10
Views: 1563

Give the output delimiter as none (000).
by kumar_s
Fri Jul 14, 2006 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check Points in DataStage jobs
Replies: 7
Views: 4882

If your table is of Load and clear type, you can simply count the number of rows in the table before the job start and start processing the rest from the input. Else keep a track of number of records. It can be simply as, @OUTROWNUM to a sequential file. And read this file for each time and pass the...
by kumar_s
Fri Jul 14, 2006 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invocation ID
Replies: 21
Views: 3718

Alright, By passing different invocation Id to the JobSequence the sequencer can be made to rerun. But if you have the same invocation Id (hard coded) for the job in the job activity, it will refer to the same job which is already been made to run. For testing purpose you can pass the same invocatio...
by kumar_s
Fri Jul 14, 2006 3:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC Info
Replies: 14
Views: 4751

You will get a unique number (checksum) for each input.
This is used for several purpose, for example, duplicate check, dedupliacation, Surrogate key generation, lookup....
You can easily get more information by doing a search on the same keyword.
by kumar_s
Fri Jul 14, 2006 3:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Lookup
Replies: 5
Views: 1318

Range lookup in PX What is the volume of record you are dealing with. If it is considerablly small, you can try to extapolate the records in an order. Say New File B: BB1 B2 B3 0 U 1 U 2 V 3 V 4 W .. .. And do a direct lookup. Else you can build you own custom routine to acheive this.