Search found 8 matches

by gnreddy
Wed Feb 06, 2008 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing rejected records
Replies: 13
Views: 5709

Re: Capturing rejected records

Hi,

The best way to capture rejected data is LookUp Stage.
U can send matched records to one table and rejected records to one table.

Regards,
by gnreddy
Tue Feb 05, 2008 11:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject load for SQLServer Enterprise Stage
Replies: 4
Views: 2522

Re: Reject load for SQLServer Enterprise Stage

Hi,

Use LookUp to catch the rejected rows.U take two Target Tables.So that u
can pass matched values to one table and rejected rows to another table.

Regards,
by gnreddy
Tue Feb 05, 2008 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: converting the null
Replies: 5
Views: 2851

Re: converting the null

Hi,

U can do this like the following.

BEG_DATE:DATE=NullToValue(BEG_DATE,'1800-01-01')

i think it works fine.

regards
narayan reddy.g
by gnreddy
Sun Feb 03, 2008 7:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Instance Job - Need help
Replies: 4
Views: 2034

Re: Multiple Instance Job - Need help

Hi,

I think u enabled "Allow multiple instance" option in Ds Designer.

and while running in Ds Director it asks name of instance u give .

for example if job name is sort then u can give sort.1,sort.2

it will work fine.
by gnreddy
Thu Jan 31, 2008 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: diff. between change capture and difference stage
Replies: 3
Views: 2035

Re: diff. between change capture and difference stage

Hi , Change Capture is used to track the old and new values in the slowly changing dimension table.If there is huge amount of data then we use Change Capture Stage. Difference is also used for the same purpose but for small amount of data. it checks Column by Column. Always try to use ChangeCapture ...
by gnreddy
Thu Jan 31, 2008 5:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate Concept
Replies: 3
Views: 2060

Re: Orchestrate Concept

Hi All,

Orchestrate itself is an ETL TOOL which supports Parallelism techniques.
it is used to execute the jobs in parallel.
IBM Purchased Orchestrate and integrated in the Datastage in order to support parallelism.
Orchestrate generates OSH Code which is Executable.
by gnreddy
Thu Jan 31, 2008 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance tunning
Replies: 15
Views: 5841

Re: Performance tunning

Hi All, Incase of loading data into target oracle table its better to use ORABULK Stage as performance increases.Also to reduce space try to use VARCHAR instead of CHAR. Also remove indexes while loading the data into the table.After Loading rebuilt all the necessary indexes. Try to use SQL Statemen...
by gnreddy
Wed Jan 30, 2008 12:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance tunning
Replies: 15
Views: 5841

hai members

Hi, first of all use varchar instead of char as it reduces the memory space. while loading bulkdata try to use orabulk stage for oracle table or BCP Loader for SQL Server or Sybase.Try to use indexes while loading the data as performance increases. Try to use SQL Statement while Extracting the data....