Search found 887 matches

by Sreenivasulu
Mon Jun 14, 2004 10:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any Ascential Certification ??
Replies: 14
Views: 5609

Certification is always a good idea. It helps in creating more awareness about Datastage. I have no idea if any ETL tools conducting certification exams. But i know of Reporting tools like Cognos having certification exams.

Regards
by Sreenivasulu
Mon Jun 14, 2004 10:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation of Datastage 7.1
Replies: 21
Views: 7916

A workaround:

We had a similar problem. OCI9i stage was not working. Hence we
reverted to OCI8 box pointing to Oracle 9i database

Regards
by Sreenivasulu
Fri Jun 11, 2004 12:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sum of column in Aggregator stage
Replies: 4
Views: 3366

Problem of incorrect Aggregation is very critical functional issue.
We found a solution after a trying a lot of combinations.
Mark as key only the "Group" columns. Rest of the columns
should neither be key nor be marked as "Group
by Sreenivasulu
Fri Jun 11, 2004 12:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get Project's Environment variable.
Replies: 10
Views: 4965

You can add/View the enviormental variables from inside the lookup stages (doing a right click on the mapping box->Job Parameter-> Add envirornment variabl) inside the transformer.

Regards
by Sreenivasulu
Thu Jun 10, 2004 3:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can a batch return a value?
Replies: 4
Views: 2087

Write the output of batch"A" to a flat file. In Batch B read the contents
of the flat file to which batch "A" has written.

Regards
by Sreenivasulu
Wed Jun 09, 2004 11:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server Jobs to Parallel Jobs Conversion
Replies: 4
Views: 4164

First You need to check which all server jobs need to be converted to parallel jobs. Those jobs should be converted to parallel which are really slow and those in which there are large number of updates/inserts

Regards
by Sreenivasulu
Wed Jun 09, 2004 11:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer Not getting the FINISH status from the job
Replies: 4
Views: 3850

Surely there could be a locking problem either with at Table level or Row level in the target Database. Please Check whether there is this type of locking when the sequencer is waiting.

Regards
by Sreenivasulu
Wed Jun 09, 2004 11:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate records in Source
Replies: 10
Views: 3619

Sure Ray!!!

I would post the solution as soon i as solve this.

Regards
by Sreenivasulu
Wed Jun 09, 2004 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate records in Source
Replies: 10
Views: 3619

Its fine. I got a hunch of how to solve this problem
Thanks a lot for the help

Regards
by Sreenivasulu
Wed Jun 09, 2004 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV stage slow
Replies: 6
Views: 2617

Ray, I am using the Hash file for lookup (not for writing into it). Hence if there are multiple matching records it would take the first matching record. If i use a UV stage for lookup then i am able to transfer more than one matching record to the target. But the issue is that the UV stage is slow....
by Sreenivasulu
Wed Jun 09, 2004 1:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate records in Source
Replies: 10
Views: 3619

Its a server job.
We have to remove duplicates from the source query. Is there a way in which the source stage does not process duplicate records(by using keys in the source stage) instead of using a hashed file with stage variables.

Regards
by Sreenivasulu
Wed Jun 09, 2004 1:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing Nodes
Replies: 4
Views: 3881

The General rule of the thumb is - Two processing nodes per cpu

Regards
by Sreenivasulu
Wed Jun 09, 2004 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiling is too slow ..
Replies: 5
Views: 3863

The parallel jobs are slow in compilation but fast on execution.
I am also facing this issue.

Regards
by Sreenivasulu
Wed Jun 09, 2004 12:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can I Create a Sequential File on fly
Replies: 8
Views: 4334

Modify this Sample Rountine $INCLUDE DSINCLUDE JOBCONTROL.H $INCLUDE DSINCLUDE DSJ_XFUNCS.H ErrCode = 0 ;* set this to non-zero to stop the stage/job hJob1 = '' hJob1 = DSAttachJob(Arg1, DSJ.ERRFATAL) If NOT(hJob1) Then Call DSLogFatal("Job Attach Failed:" : Arg1, "JobControl") A...
by Sreenivasulu
Wed Jun 09, 2004 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Locking of Table
Replies: 13
Views: 4942

Thanks Sanjay.
Creating a seperate job for these works but i wonder why it does not
work in a single job since datastage processes records one after another
(In server jobs)

Regards