Search found 5168 matches

by kumar_s
Mon Aug 28, 2006 10:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing parameters in between stages of a sequence
Replies: 7
Views: 1920

The simple solution as been shared. If you are not comfortable, you can aslo have another DS stage with user defined query as "SELECT #PARAMETER# from DUAL"; and pass this value to the consecutive DB stage.
by kumar_s
Mon Aug 28, 2006 2:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing parameters in between stages of a sequence
Replies: 7
Views: 1920

That variable will be passed as an Parameter to the next job. You can make you of the parameter in transformer stage or even in you DB stage to write in to table.
by kumar_s
Mon Aug 28, 2006 2:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting UNIX Signal KILL....
Replies: 7
Views: 2112

Check in your DS Adminstrator setting for environmental varialbe TEMP_DIR, if it is pointing to this directry, it is used as scratch space.
Else check your Config file, you can find if it is been used as one of the resource pool.
by kumar_s
Sun Aug 27, 2006 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting UNIX Signal KILL....
Replies: 7
Views: 2112

Lookup will be always efficient when the lookup data can be made to fit into memory. Try to increase the scratch space else try out some other strategy like converting lookup into join.
by kumar_s
Sat Aug 26, 2006 11:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement this logic in pivot stage
Replies: 6
Views: 1458

dslearner wrote:
kumar_s wrote:I dont get the logic how you mapped "x y z" and "ddd eee ttt" to "ColA ColB ColC" .
Shouldnt it be "A B C" and "AAA BBB CCC" ?


These values are different.


How do you select "AA BB CC" and "x y z" (By what logic)?
by kumar_s
Sat Aug 26, 2006 11:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting UNIX Signal KILL....
Replies: 7
Views: 2112

That might be your temp directory. The Scratch will get used during run time. Are you using lookup fileset or sparse lookup?
You may need to increase the disk space for the directory.
by kumar_s
Fri Aug 25, 2006 2:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage server Maintainence
Replies: 24
Views: 11163

Yup. Got it. :D
by kumar_s
Fri Aug 25, 2006 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage server Maintainence
Replies: 24
Views: 11163

Shouldnt be the CLEAR.FILE for RT_LOG** working?
Any how RT_STATUS wont contribue much in space.
by kumar_s
Fri Aug 25, 2006 1:57 am
Forum: General
Topic: copying job names
Replies: 4
Views: 3087

Or go to DS Director, to that category, print the "Current Category" to a File. Tweak the output with an text edition.
by kumar_s
Fri Aug 25, 2006 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage server Maintainence
Replies: 24
Views: 11163

... without damaging the control records.

Ray - Are you refering to RT_LOG*** file?
by kumar_s
Fri Aug 25, 2006 1:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash Partitioning on columns with same values
Replies: 4
Views: 1182

You need to decide the partiton based on your requirement. If you need to a grouping function like, aggregation(count of records)... you have to follow the grouping partition (hash) else you can proceed with what has been suggested.
For grouping in your case you can even go for sequential mode :wink:
by kumar_s
Thu Aug 24, 2006 9:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage server Maintainence
Replies: 24
Views: 11163

Do you have dataset in the temp directory? Check with "orchadmin describe {dataset}" command to know the details about the dataset. If it has single data file and that too lies in the same directory, you can delete it. Else check the extension first, and later use "rm" or "orchadmin rm" accordingly.
by kumar_s
Thu Aug 24, 2006 9:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BASCI Transformer in PX Jobs, not recommended or what ?
Replies: 7
Views: 1690

The BASIC Transformer stage in parallel jobs uses the BASIC run machine that used in Server jobs. Hence it need to be loaded when the parallel job is executed.
But it gives you richness of the function set in BASIC.
Do a search on "Basic Transformer",you ll find numerous post.
by kumar_s
Thu Aug 24, 2006 5:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatstage Manager: Export/Import problem
Replies: 13
Views: 9228

yakiku - Amazing!!
I guess we need to check any other VB application, with the presence of the file 'Program' under the C:\, whether it works normally. Might be a problem with MicroSoft.
by kumar_s
Thu Aug 24, 2006 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement this logic in pivot stage
Replies: 6
Views: 1458

I dont get the logic how you mapped "x y z" and "ddd eee ttt" to "ColA ColB ColC" .
Shouldnt it be "A B C" and "AAA BBB CCC" ?