Search found 452 matches

by kaps
Wed Jul 25, 2012 12:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not In clause in Filter stage...
Replies: 8
Views: 15185

Not In clause in Filter stage...

How do we implement SQL "NOT IN" logic in Filter stage. I have following condition in a filter stage which does not output the expected number of records. (Field1 <> Val1 Or Field1 <> Val2 Or Field1 <> Val3) and Field2 <= Val4 But If I use the following in the transformer it gives the corr...
by kaps
Wed Jul 18, 2012 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need opinion about this scenario...
Replies: 3
Views: 1743

Ray
Thanks for the reply. "someone" is a consultant and he is not here anymore and I am going to ignore that advise.
by kaps
Fri Jul 13, 2012 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need opinion about this scenario...
Replies: 3
Views: 1743

Need opinion about this scenario...

I am designing a job where I need to get all my date keys from the date dimension table. Input data is considerably small so using lookup stage rather than join stage and db2 connector stage to read the table and passing it through a copy stage to multiple links to get all date keys say 14 links. 1....
by kaps
Wed Jul 11, 2012 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue in CFF stage in 8.7 ?
Replies: 0
Views: 791

Issue in CFF stage in 8.7 ?

We just upgraded to 8.7 from 7.5.3 Parallel and we are seeing issue with CFF stage. In 7.5.3 CFF stage we have the DATA FORMAT option in OUTPUT tab with the values of EBCDIC and ASCII where as in 8.7 we only see NLS as the value which is messing up the data. We installed NLS during the installation ...
by kaps
Wed Jun 20, 2012 12:25 pm
Forum: General
Topic: Missing Job Names in DSODB...
Replies: 6
Views: 2804

Found the issue...'Job Name' column is defined as vargraphic data type so the query tool I was using was not able to display it. I converted to char and it works now...

Thanks...
by kaps
Wed Jun 20, 2012 8:58 am
Forum: General
Topic: Missing Job Names in DSODB...
Replies: 6
Views: 2804

I am not asking for fast response here but just wondering if I explained my question properly...Does anyone else have the issue or is it just on my side ?

Thanks for your time...
by kaps
Mon Jun 18, 2012 11:37 am
Forum: General
Topic: Missing Job Names in DSODB...
Replies: 6
Views: 2804

Missing Job Names in DSODB...

SELECT R.JOBID, J.JOBNAME, RUNSTARTTIMESTAMP, RUNENDTIMESTAMP, ELAPSEDRUNSECS, RUNMAJORSTATUS, TOTALROWSCONSUMED, TOTALROWSPRODUCED FROM "DSODB"."JOBEXEC" J, "DSODB"."JOBRUN" R WHERE R.JOBID = J.JOBID AND J.JOBNAME = 'MyJob' When I execute the above SQL, I ge...
by kaps
Thu Jun 14, 2012 8:41 am
Forum: General
Topic: dsjob -report in xmeta database ?
Replies: 3
Views: 2974

We do have Operations console but we would like to have them in a table. Are you familiar with the tables behind the Ooperations console ?
by kaps
Thu Jun 14, 2012 8:31 am
Forum: General
Topic: Need to run a Seq withinn another
Replies: 9
Views: 4574

shobhit - That's what I am doing and storing the result in a table.
by kaps
Thu Jun 14, 2012 8:29 am
Forum: General
Topic: Need to run a Seq withinn another
Replies: 9
Views: 4574

Ray - We are on 8.7 but we would like to store this data in a table and in addition to that we are also storing cycle date and the table name on this table so that users can query this table to find out how current is the data in a table. I believe operations console gives more detail level job info...
by kaps
Wed Jun 13, 2012 4:04 pm
Forum: General
Topic: Need to run a Seq withinn another
Replies: 9
Views: 4574

Need to run a Seq withinn another

I am trying to collect the Job Status of (say) Job1 like Job start time, end time, run status etc and I built a reusable job (say) Job2 for this purpose. Question is that I want to run the Job2 when Job1 finishes successfully as well as when it fails. What I can do is that, Create another sequence j...
by kaps
Mon Jun 11, 2012 12:22 pm
Forum: General
Topic: dsjob -report in xmeta database ?
Replies: 3
Views: 2974

dsjob -report in xmeta database ?

I am wondering if anyone know the table name in xmeta database ? I am aware that there are lot of tables in there and vendor does not want to make is easier wantedly but am wondering if anyone found that information. I am trying to get information such as Job Name, Job start time, Job end time and j...
by kaps
Thu Jun 07, 2012 5:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController,1: Fatal Error: Null value on
Replies: 1
Views: 1810

APT_CombinedOperatorController,1: Fatal Error: Null value on

Hi, I am getting following error trying to check for null in staging variable in transformer in a timestamp field. APT_CombinedOperatorController,1: Fatal Error: Null value on the accessor interfacing to field Code is: If Len(Trim(Output.ROLE_START_DATE_lkp))=0 Or Len(Output.ROLE_START_DATE_lkp)=0 O...
by kaps
Mon Jun 04, 2012 5:00 pm
Forum: General
Topic: DataStage Basic Routine behaves different in 8.7...
Replies: 4
Views: 5472

I have an input file which I have passed to the same routine in older version and newer version and both generate different sets of output files with different file sizes. I don't think it will be useful to paste the content of the files as it is still in EBCDIC format not ascii. There is another pr...
by kaps
Fri Jun 01, 2012 11:58 am
Forum: General
Topic: DataStage Basic Routine behaves different in 8.7...
Replies: 4
Views: 5472

DataStage Basic Routine behaves different in 8.7...

We have a routine (wrote in Basic) which works correct in 7.5 but not in 8.7. Are there any changes to the DataStage Basic in the newer version ? This rouutine reads a Master Mainframe EBCDIC file and breaks it into multiple files with base and riders. We are in the process of upgrading from 7.5 Par...