Search found 45 matches

by mujeebur
Wed Nov 21, 2007 9:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML files without loading structures
Replies: 6
Views: 2309

Ernie , Excellent description and I appreciate it.

Do we have any enhanced features or RCP support in XML pack/plug-ins , if you buy seperately from IBM ?
by mujeebur
Tue Nov 20, 2007 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML files without loading structures
Replies: 6
Views: 2309

Just wondering to know Expert's help, Why XML stage does not have 'Runtime Column Propagatin' property ? I have done many jobs in Parallel without loading the metadata of a job (sequential file , parallel job ) by passing the schema file dynamically while running job. Just wondered to know why can't...
by mujeebur
Fri Aug 24, 2007 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Last 8 Digits
Replies: 6
Views: 2386

Re: Last 8 Digits

gateleys means is below:


MyString = "ABCDEF"
MySubStr = Right(MyString, 3) ;* answer is "DEF"
by mujeebur
Fri Aug 24, 2007 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complitaion Error while using Transformer stage
Replies: 2
Views: 1535

Re: Complitaion Error while using Transformer stage

APT_COMPILEOPT--->-W/TP -W/EHa -DAPT_USE_ANSI_IOSTREAMS -c

Its looks like the above is incorrect.

Remove -W/EHa and try.
by mujeebur
Fri Aug 24, 2007 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Weired Join Stage problem.
Replies: 15
Views: 6144

I agree with "JoshGeorge". I too tested the job with above example, but unable to produce the wrong result. There is no weirdness in my results.

I guess, something due setup or OSH libraries.
by mujeebur
Tue Aug 21, 2007 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple instances in parllel jobs
Replies: 11
Views: 4659

Re: Multiple instances in parllel jobs

Try this :

dsjob -run -param period='june-05' projectname jobname.period
by mujeebur
Sat Jun 09, 2007 8:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Details
Replies: 3
Views: 1939

You can also query by using ds command 'dssearch'
by mujeebur
Fri Jun 08, 2007 1:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split record to multiple based on the counter
Replies: 4
Views: 1938

I belive( what I understood from docs ) , Pivit only write Rows to Coumns.
by mujeebur
Fri Jun 08, 2007 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split record to multiple based on the counter
Replies: 4
Views: 1938

split record to multiple based on the counter

[code] Appreciated your help to achieve below: I have data coming in the format : Input ----------- rec_no ctr code 1 3 ABCD DEFG HIJK 2 2 ABCD DEFG Output --------- rec_no ctr code 1 3 ABCD 1 3 DEFG 1 3 HIJK 2 2 ABCD 2 2 DEFG I have to split the record based on the Counter. [/code]
by mujeebur
Thu Dec 21, 2006 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Logs in Universe table ?
Replies: 11
Views: 6450

Yes, I know. DSGetStageInfo() does not take a list of stage names as its second argument. I dont think that I am doing so. When look into the code, I have a for loop which gets the stage name from the StageList ,comma seperated output in JobStageList variable by Field satement. * Loop thru all the S...
by mujeebur
Thu Dec 21, 2006 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Logs in Universe table ?
Replies: 11
Views: 6450

Thanks Ray, But the subroutine works for PX Job, fails only for Server Job.

The design of both jobs are same:


Server
----------
SeqStage----> Xfm------------------>ORAOCI9


Parallel
----------
SeqStage----> Xfm------------------>PxOracle
by mujeebur
Wed Dec 20, 2006 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Logs in Universe table ?
Replies: 11
Views: 6450

$IFNDEF JOBCONTROL.H $INCLUDE DSINCLUDE JOBCONTROL.H $ENDIF * ------------------- * Open a Sequentila File and write the Info Ans=0 TempDir=TEMPDIR TempFile=LOAD_COUNTS_FILE HdrString='JobStages|JobStageLinkNames|RecCounts' ValidOpen = @FALSE FileName = TempDir:'/':TempFile If FileName Then OPENSEQ...
by mujeebur
Wed Dec 20, 2006 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Logs in Universe table ?
Replies: 11
Views: 6450

The reason I am asking for this, I already wrote a routine which scans thru the job to get the OCI or PxOracle Stages ( given a ServerJob, Px Job) and find out all the links for that OCI/PxStage. And find the Link Counts for Input and Reject/OutPut links (i.e LinkTypes of 1 , 3 ). writes in to Seq F...
by mujeebur
Wed Dec 20, 2006 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Logs in Universe table ?
Replies: 11
Views: 6450

Job Logs in Universe table ?

Hi,

In which Universe table the Job log will be stored ? I want to write a routine to get the seq file with the job logs.

Yes, I can get the job logs via DSGetJobInfo and LinkRowCounts..etc. But I want to get it from Universe Tables.

Appreciated your help.