Search found 57 matches

by rohithmuthyala
Fri Mar 12, 2010 2:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregating Data
Replies: 3
Views: 2183

Yes... i've tried similar kind of aggregation and it did work.
by rohithmuthyala
Tue Mar 02, 2010 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get end of Month based on year and Month
Replies: 19
Views: 10827

Extract the month part alone.
Check if month is 04,06,09,11 then append 30 to the existing string.
Else if month is 02 and (Year%4)=0 then append 29
Else append 31 to the existing string.

The above can be handled using Stage variables in the Transformer stage.
by rohithmuthyala
Tue Mar 02, 2010 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: when to use RCP
Replies: 10
Views: 10483

Are there any disadvantages, if we choose RCP in Datastage?
by rohithmuthyala
Tue Feb 23, 2010 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Capture Stage
Replies: 2
Views: 2460

I'm assuming if you say "not working" , the delete records are not coming out of the Change Capture Stage.
If this is the case, inside the Change Capture Stage in the Stage Properties Tab please select the option as "FALSE" for Drop Output For Delete.
by rohithmuthyala
Mon Feb 22, 2010 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with link count in Modify stage
Replies: 8
Views: 2746

I think this is a common problem while using modify stage....Similar kind of problem i've faced while using modify stage...the counts won't be shown but the records do flow and i got the desired output.
by rohithmuthyala
Mon Feb 22, 2010 1:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC Warning
Replies: 7
Views: 5474

I think the work around for this will be to keep only the columns whcih are used as Change Keys (or) Change Values and drop others , and then the output of CDC can again be joined with the after dataset to retrieve all the columns which are required for the second CDC.
by rohithmuthyala
Tue Feb 16, 2010 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in Lookup stage with too many number of references
Replies: 2
Views: 2802

Hi,

In the lookup stage, if you select constraints then you can find an option for Lookup failure if that is selected as "FAIL" then if there is no match then the job will fail change it to drop or continue or reject depending on ur need.
by rohithmuthyala
Tue Feb 16, 2010 6:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: update Parameter set for every run
Replies: 2
Views: 1721

Hi,

You can maintain a separate flat file, which will calculate the maximum value and stores in it before running your job, your sequencer can read the corresponding value from the above file created.
by rohithmuthyala
Fri Jan 29, 2010 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running a Job in CMD prompt using dsjob -run
Replies: 8
Views: 4319

Yes i've even tried this out for each parameter value i've repeated -param....... Actually it was working for jobs with just 4 or 5 parameters.......but it ditn waork out with the job having about 17 parameters...!!
by rohithmuthyala
Thu Jan 28, 2010 3:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running a Job in CMD prompt using dsjob -run
Replies: 8
Views: 4319

One more thing to add is that the number of parameters are more..... Is it due to the length of the command...!!
by rohithmuthyala
Thu Jan 28, 2010 3:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running a Job in CMD prompt using dsjob -run
Replies: 8
Views: 4319

It says Invalid arguments.... Invalid arguments: dsjob -run [-mode <NORMAL | RESET | VALIDATE>] [-param <name>=<value>] [-warn <n>] [-rows <n>] [-wait] [-opmetadata <TRUE | FALSE>] [-disableprjhandler] [-disablejobhandler] [-jobstatus] [-userstatus] [-useid] <project> <job|jobid> Status code = -9999...
by rohithmuthyala
Thu Jan 28, 2010 1:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running a Job in CMD prompt using dsjob -run
Replies: 8
Views: 4319

Running a Job in CMD prompt using dsjob -run

Hi, Im trying to run a job using the option dsjob -run, The syntax followed by me is, dsjob -server <server> -user <UserID> -password <XXXXXX> -run -param param1=value param2=value param3=value param4=value <Project> <Jobname> The error which Im getting is like Invalid Arguments..... When Im trying ...