Search found 4605 matches

by kduke
Wed Jun 15, 2005 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: generating jobs reports
Replies: 60
Views: 24753

I posted a batch file that will do a job report for every job on ADN. I prefer JobReport written by Tony Curcio. I think it creates a nicer document. So created a wrapper for his routine which will do all jobs and all routines. I wrote the routine part to look the same as his html. It creates and in...
by kduke
Wed Jun 15, 2005 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reporting Asistant in Manager problem
Replies: 5
Views: 1194

Means use MetaStage. No, really the Reporting Assistant gives errors like this because the columns get truncated and create duplicates or is unable to load a record. Most of the time it gives an error and keeps going. I have not seen thjis error before. You could ignore it or not export the whole pr...
by kduke
Wed Jun 15, 2005 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need help to success in interview
Replies: 19
Views: 5758

Some of my comments I regret. I think several thoughts were poorly worded. I do think my heart was in the right place. I agree knowledge, skill and wisdom are universal and should be respected from anyone. I actually like these types of discussions that go beyond the skillset and talk about the mind...
by kduke
Wed Jun 15, 2005 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: trying to access the DataStage Repository
Replies: 5
Views: 1454

I told you.
by kduke
Tue Jun 14, 2005 5:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: trying to access the DataStage Repository
Replies: 5
Views: 1454

We have posted SQL to pull data out of these files so if you need something specific then ask. Ray will tell you that it will not work in the next release but until then it will work fine.
by kduke
Tue Jun 14, 2005 5:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it necessary to RESET the job after Run
Replies: 6
Views: 5174

I found the spelling error. most of these statuses I figured out by hacking. Some are in DSINCLUDE JOBCONTROL.H. I do not know what status 7 is. It is hard not to overwrite something in ftp. You would almost need to do 2 calls. One to do a ls and another to put it if it is not there. This script mak...
by kduke
Mon Jun 13, 2005 5:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job names in the folder??
Replies: 5
Views: 2573

You would have do it in SQL.

SELECT NAME FROM DS_JOBS WHERE CATEGORY = 'MyCat';
by kduke
Sat Jun 11, 2005 9:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some help in Migration of Jobs
Replies: 13
Views: 4545

We will hack hawk too. Say it with me. Hacking is fun.
by kduke
Fri Jun 10, 2005 7:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it necessary to RESET the job after Run
Replies: 6
Views: 5174

Here is a shell script to run a job. It checks to see if you need to reset and then does a reset before running. #!/bin/ksh ################################################################################ # File Name : RunJob.ksh # Description : runs DataStage job # : then ftp's file for them to dow...
by kduke
Fri Jun 10, 2005 6:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cmd Job Export and Import in EPM
Replies: 1
Views: 734

Not unless it is a Windows server.
by kduke
Fri Jun 10, 2005 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some help in Migration of Jobs
Replies: 13
Views: 4545

CCustomStage, CCustomInput or CCustomOutput is probably what you want. select DS_JOBS.NAME AS JOB_NAME FMT '35L', DS_JOBOBJECTS.NAME AS LINK_NAME FMT '35L' from DS_JOBOBJECTS, DS_JOBS where DS_JOBOBJECTS.OLETYPE = 'CCustomInput' and DS_JOBOBJECTS.OBJIDNO = DS_JOBS.JOBNO group by JOB_NAME, LINK_NAME ...
by kduke
Fri Jun 10, 2005 6:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need answer
Replies: 7
Views: 1917

Tell them Ray man.
by kduke
Fri Jun 10, 2005 6:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sorting data using 'filter' command in Sequential file stage
Replies: 10
Views: 3937

Numeric sorts are tough. If I do this then I always put the sort fields first and pad the sort fields like they are fixed length.
by kduke
Fri Jun 10, 2005 6:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Row count for all hash files in a category
Replies: 16
Views: 4309

select EVAL DS_JOBOBJECTS."@RECORD<6>" AS FILE_NAME FMT '35L', DS_JOBS.NAME AS JOB_NAME FMT '35L', DS_JOBOBJECTS.NAME AS LINK_NAME FMT '35L' from DS_JOBOBJECTS, DS_JOBS where DS_JOBOBJECTS.OLETYPE in ('CHashedOutput','CHashedInput') and DS_JOBOBJECTS.OBJIDNO = DS_JOBS.JOBNO group ...
by kduke
Thu Jun 09, 2005 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing DSEngine/dsdlockd.log
Replies: 15
Views: 9981

This is just a log file. he 2GB limit is on hash files. Most UNIX machines can go beyond this limit on sequential files like this type of log file. The job log files by the way are hash files and do need to be converted to 64bit to go beyond 2GB. If you have a job log file or really any log file the...