Search found 15 matches

by 123gopal
Mon Mar 25, 2013 11:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage8.1,
Replies: 3
Views: 2184

you can be use the pivot stage for that target
by 123gopal
Fri Feb 15, 2013 11:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date comparision (greater than or less than)
Replies: 6
Views: 3577

Re: Date comparision (greater than or less than)

use the functions ICONV() and OCONV() instead of using timestamp to date in parallel job
by 123gopal
Thu Feb 14, 2013 12:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date comparision (greater than or less than)
Replies: 6
Views: 3577

Re: Date comparision (greater than or less than)

could be Use Oconv() and ICONV() fuctions after compare that
by 123gopal
Thu Feb 14, 2013 3:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare two records in DataStage
Replies: 4
Views: 5144

Re: compare two records in DataStage

can be use Aggregator stage for that or compare the two records using join or merge stage after that use aggregater stage
by 123gopal
Thu Feb 14, 2013 2:58 am
Forum: General
Topic: $ENV Clarification
Replies: 7
Views: 3627

Re: $ENV Clarification

That information is confidential.........
sometimes pass the value in that particular variable.............
so no need to get that information........
by 123gopal
Thu Feb 14, 2013 2:52 am
Forum: General
Topic: $ENV Clarification
Replies: 7
Views: 3627

Re: $ENV Clarification

In Windows mode we can set Environment variable using Datastage Administrator
In Unix mode we can set Environment variable using $DSAdmin command
by 123gopal
Wed Feb 13, 2013 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updating RowNo with Corresponding Columnvalue
Replies: 4
Views: 2732

Re: Updating RowNo with Corresponding Columnvalue

Analyze the values of input and output and can be use SCD stage or lookup stage
by 123gopal
Wed Feb 13, 2013 8:43 am
Forum: General
Topic: Reg the usage of parameter in parallel job
Replies: 4
Views: 2648

Re: Reg the usage of parameter in parallel job

check RCP at job level and admin level
by 123gopal
Tue Feb 12, 2013 11:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: max how many stages we can use in single parallel job
Replies: 4
Views: 3282

Re: max how many stages we can use in single parallel job

1.Minimize the usage of Transformer(instead of use copy,modify,filter,row generator) 2.Reduce the number of lookups in job design use not more than 20 stages in a job 3.There is no limit for no of stages like 20 or 30 but we can break the job into small jobs then we use dataset stages to store data ...
by 123gopal
Sun Feb 10, 2013 1:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Flat File stage with Variable Length rows
Replies: 14
Views: 10961

Re: Complex Flat File stage with Variable Length rows

can be use Trim(),Ltrim() and Rtrim() fuctions within the transformer for example first count the total length of character is 18 source -> transformer -> target SunilBassi03101234 Ltrim(18,13) Sunil Here total length is 18 but we need first 5 character only use that function and if else statement a...
by 123gopal
Sun Feb 10, 2013 12:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading special characters in Teradata - Bulk mode
Replies: 3
Views: 4209

Re: Loading special characters in Teradata - Bulk mode

could be use the limitations given below
1.set datatype as EDCDIC
2.target table should be empty
3.insert only allowed
4.loads only one table in one job task
by 123gopal
Sun Feb 10, 2013 11:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change current date + different second for each row
Replies: 19
Views: 7370

in ds7.5 transformer can be use seconds from time(time) functions and date and time funtions are available
by 123gopal
Sun Feb 10, 2013 11:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Insert,update,insert/update on same table in same job
Replies: 5
Views: 3910

Re: Insert,update,insert/update on same table in same job

1.in ds8.5 separately SCD Stage is there otherwise can be use Slowly changing dimension(SCD) Concept types SCD1-Insert new records and replace the orginal records SCD2-insert new records and update the existing records and we can maintain the old records also SCD3-insert new records and no trace of ...
by 123gopal
Sun Feb 10, 2013 10:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence number generation issue in target database
Replies: 18
Views: 11037

Sequence numbers can be generated in Datastage server job transformer using certain fuctions like select ... ->funtions tab->dstransform->sdk->keymgt->select given below functions - KeyMgtGetNextVal(seq name) - KeyMgtGetNextValConn(seq name) Sequence numbers can be generated in Datastage parallel jo...
by 123gopal
Sun Feb 10, 2013 8:55 am
Forum: General
Topic: What is the major difference between datastage 7.5 and 8.5 ?
Replies: 6
Views: 13298

Re: What is the major difference between datastage 7.5 and 8

1. in 8.5 transformer options llike (do- while) available in looping structure but not available in 7.5 2.in 7.5 can set the single parameter using environment variable but parameter set options are available in ds8.5 and patameter set means collection of variables 3.in 7.5 quality stage has seperat...