Search found 36 matches

by naveenkumar.ssn
Mon Dec 21, 2015 10:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job design for two way range join
Replies: 2
Views: 3301

Re: Job design for two way range join

Hi REF(TABLE b) | | SRC(TABLE a) ----- Join Stage(Left Join) --- Transformer ----- Target In the transformer --- StageVariable1 --- if a.valid_frm_date >= b.valid_frm_date AND a.valid_frm_date < b.valid_frm_date then @True else @False ---- StageVarialbe 2 -- Similarly for the b.valid_frm_date(same c...
by naveenkumar.ssn
Mon Dec 21, 2015 10:16 pm
Forum: General
Topic: Set global variable from file
Replies: 5
Views: 3250

Re: Set global variable from file

hi

I would suggest you to write all the required columns in a temp table and then use that temp table data to get your required search

OR

use the looping mechanism , read the content of file one by one and then view the records either at one go or read all the data .
by naveenkumar.ssn
Tue Dec 15, 2015 3:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Add Value from File
Replies: 9
Views: 5313

Hi

Could not view your image.

Can you put down as the text if possible

Regards
Naveen
by naveenkumar.ssn
Fri Nov 27, 2015 3:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: bulk load date issue
Replies: 5
Views: 7180

Re: bulk load date issue

hi, Solution 1 --------------- you can change in the oracle by setting the date format as you wanted by changing the meta data tables. Solution 2 ----------- Keep the target column as a varchar, use the Iconv and Oconv functionality in the server job to read it to the format as you wanted in the src...
by naveenkumar.ssn
Fri Nov 27, 2015 3:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: counting the rows for a similar column and making a header
Replies: 4
Views: 5419

Re: counting the rows for a similar column and making a head

Hi,


SeqFile ---- Aggreator ---- TargetFile

Group by on the first column and then in the aggreator use the count function to get the number of records.

That will resolve your issue

Regards
Naveen
by naveenkumar.ssn
Fri Nov 27, 2015 3:11 am
Forum: General
Topic: oracle connector doesn't work
Replies: 5
Views: 5126

Re: oracle connector doesn't work

Hi

you need to check on the pre-requisite of the installation of DS11.3 in the IBM site.

If I remember correctly some version of DS would only work with 32 bit Oracle Installation.Check whether the installation you did was 32bit or 64bit DS.

Regards
Naveen
by naveenkumar.ssn
Fri Nov 27, 2015 3:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: about RCP
Replies: 3
Views: 2553

Re: about RCP

Hi

It all depends on the application logic that you use within the datastage jobs.

Regards
Naveeb
by naveenkumar.ssn
Wed Nov 25, 2015 7:59 pm
Forum: General
Topic: Job sequence finished with Warning
Replies: 2
Views: 2182

Re: Job sequence finished with Warning

Hi ,

Did you check after setting the sequence to "reset if required and then run" enabled.

Even after that the problem persist let me know.


Regards
Naveen
by naveenkumar.ssn
Wed Nov 18, 2015 1:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running job with multiple parameters
Replies: 8
Views: 9826

Re: Running job with multiple parameters

Hi

Create a parameter set with all the values you wanted with the respective value files to it.

Add the parameter set to the sequence.Pass those to the multiple instance jobs in a sequence. ( you dont need to create any separate sequence)

Regards
Naveen
by naveenkumar.ssn
Wed Nov 18, 2015 12:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tringger n instances of a job parallely
Replies: 6
Views: 3919

Hi, Keep as much instance as you wanted to run in between the start loop and the end loop ...use a static (harcoded) invocation id and then run the sequence Example : if you wanted 8 parallel jobs to run SL(StartLoop)------{8 instance of the same job with hardcoded invocation id} .... EndLoop When y...
by naveenkumar.ssn
Wed Nov 18, 2015 12:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: soundex on joining keys
Replies: 3
Views: 2884

Re: soundex on joining keys

Use the stage variable read it with soundex and compare it..

Not tested it though , it should work. Logically

Regards
Naveen
by naveenkumar.ssn
Tue Nov 17, 2015 10:17 pm
Forum: General
Topic: Installation of DS Client version 11.3
Replies: 6
Views: 1503

hi ray,

I have created lots of server jobs. :)

However in the DS11.3 version , it seems like they purchased license only for the data quality stage.

Regards
Naveen
by naveenkumar.ssn
Tue Nov 17, 2015 8:21 pm
Forum: General
Topic: Installation of DS Client version 11.3
Replies: 6
Views: 1503

Thanks for the reply !!!

In the left panel after clicking the jobs ..I could see only parallel and sequence, I could not see the server job . :(
by naveenkumar.ssn
Sun Nov 08, 2015 11:27 pm
Forum: General
Topic: Installation of DS Client version 11.3
Replies: 6
Views: 1503

Installation of DS Client version 11.3

Hi All,

We have installed client version of Datastage Version 11.3 in windows platform.However I could not see the server jobs in the palette.

Do we have to get a separate license for the server edition of jobs.

Many Thanks

Regards
Naveen
by naveenkumar.ssn
Tue Oct 27, 2015 2:51 am
Forum: General
Topic: Read date from text file and pass to next job
Replies: 2
Views: 3475

Re: Read date from text file and pass to next job

you can write the content to the file with some delimiter and then read the file with execute command activity and pass it on to the next job. Example: if you have appended the , (comma) delimter your run-date would be like 27-OCT-2015, Read this file in execute command activity , you can give the c...