Search found 72 matches

by udayk_2007
Fri Oct 29, 2010 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to implement Reject logic
Replies: 13
Views: 8337

you can design your job this way Seq_File------->Transformer------> Seq_File In the source sequential file..take the complete record in only one field only..declare its length as the maximum possible length of a record according to your input specifications Then use Dcount function in transformer wh...
by udayk_2007
Mon Sep 27, 2010 2:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there any relation b/w dataset, configuration file
Replies: 7
Views: 4259

The disk location mentioned in pxresource section of configuration file , defines the location where datasets will be stored on the server
by udayk_2007
Mon Sep 27, 2010 2:40 am
Forum: General
Topic: Job search in unix
Replies: 8
Views: 5802

you can fire a query on database from unix box.

select category from ds_jobs where job_name='your job name'
by udayk_2007
Wed Sep 08, 2010 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: improving the performance in transformer stage
Replies: 4
Views: 3374

What kind of calculations/processing are you doing in transformer stage ?
by udayk_2007
Mon Jul 26, 2010 10:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: where not exists implementation
Replies: 9
Views: 5007

As the table you are using is huge in size,one way could be to create a look fileset first from the table, with including only the required columns and then using this lookup fileset in the lookup operation.

Regards
Ulhas
by udayk_2007
Wed Jul 21, 2010 9:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partition Table Error
Replies: 10
Views: 5787

Can you put the sql query here, which you are giving in Oracle Source Stage.

Regards
Ulhas
by udayk_2007
Sun Jul 18, 2010 11:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partition Table Error
Replies: 10
Views: 5787

Is your sql query working successfully on database prompt ?

Regards
Ulhas
by udayk_2007
Tue Jun 29, 2010 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how do we know when a job was compiled
Replies: 5
Views: 2312

you can usually see this information in DataStage Director

Regards
Ulhas
by udayk_2007
Mon Jun 28, 2010 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: even records one target,odd number records one target
Replies: 9
Views: 7591

using MOD (divide by 2) Function on dept column in modify stage,and followed by a filter stage should solve the problem.
by udayk_2007
Mon Jun 28, 2010 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to populate duplicate records in target
Replies: 5
Views: 3827

hi you can also get the duplicates using the 'Create Cluster Key Column' Option in Sort Stage. This option set the Cluster Key column value as 1 for first record of each group and remaining records of that group will have Cluster Key Column value as 0. Depending upon your requirement of which record...
by udayk_2007
Thu Jun 24, 2010 11:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extracting ranges of data
Replies: 7
Views: 4274

you can achieve the desired result by using range partitioning on database table.This will ensure that data belonging to a month goes in a single partition.we have implemented in oracle,not sure if range partitioning is available in other databases create table tablename ( ID INTEGER, CREATED_DATE D...
by udayk_2007
Wed Jun 23, 2010 12:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is there any trial version of DS PX for windows
Replies: 4
Views: 1862

As the last post here looks almost 1 yr old..is there any trial version of DataStage available now??

Thanks in advance

Regards
Ulhas
by udayk_2007
Wed Jun 16, 2010 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Parallel loads with logical nodes
Replies: 8
Views: 3163

Remove the copy stage if it is not required and try running the job. Check if you get the same result
by udayk_2007
Tue Jun 15, 2010 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File
Replies: 6
Views: 2454

scratch disk is used as a temporary space while performing operations like lookup,join,sort when the data volumne is big and the internal memory is not sufficient to hold the complete data during these operations

Guys,Please correct me if i am wrong.

Regards
Ulhas
by udayk_2007
Tue Jun 01, 2010 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert to Global Time Zone using the Time Zone conversion
Replies: 3
Views: 13138

If you are using oracle database,then you can do time conversion in different time zones using new_time function

new_time( date, zone1, zone2 )