Search found 42189 matches

by chulett
Wed May 23, 2012 9:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 value differs from iSeries to DB2 Wire Protocol driver
Replies: 5
Views: 4678

I always explicitly format all fields for CRC32 consumption so there's no issues like this. You could reformat this one field to match the old format if need be, I would imagine. Wouldn't help with the characterset issue just posted, however.
by chulett
Wed May 23, 2012 7:58 am
Forum: General
Topic: DSJE_BADSTATE error even after recompiling and restting
Replies: 6
Views: 2991

The 8.5 Documentation wrote:-mode specifies the type of job run. NORMAL starts a job run, RESET resets the job, VALIDATE validates the job, and RESTART resumes a restartable job sequence from the last checkpoint using the original job parameter values. If -mode is not specified, a normal job run is started.
by chulett
Wed May 23, 2012 7:29 am
Forum: General
Topic: DSJE_BADSTATE error even after recompiling and restting
Replies: 6
Views: 2991

It means RESET and that's all it does so I'm surprised you're saying it also ran the job. You should only use it when it is needed, my launch scripts always check first and reset if needed and only then run the job. Three calls to dsjob are possible in that case: one to check the status, one to rese...
by chulett
Wed May 23, 2012 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-08103: object no longer exists
Replies: 1
Views: 2512

I struggled with the same occassional error some time ago. The problem is many things can return a 'false' ORA-08103 as noted here and the behaviour is dependant on your version of Oracle. We never got a fix for it and a simple restart 'fixed' the problem. If you want help with this: "Also few ...
by chulett
Tue May 22, 2012 8:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal error
Replies: 2
Views: 926

Sounds like your parameters are not being resolved, are you using the exact same spelling (case included) between the SQL and the job parameter's name?
by chulett
Tue May 22, 2012 8:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 value differs from iSeries to DB2 Wire Protocol driver
Replies: 5
Views: 4678

Just for clarification, you are using the DataStage CRC32 function, yes? If so, then I would think the issue would be in the formatting of the individual data elements - date formats, leading zeroes, anything of that nature would change the generated value. However, knowing nothing about your data n...
by chulett
Tue May 22, 2012 12:13 pm
Forum: General
Topic: deletion and compiling DataStage categorioes - from Unix
Replies: 19
Views: 6841

Jobs are stored across multiple tables, not just one. You are deleting one small part of the whole and (essentially) corrupting the repository in the process. The GUI (Designer) deletes it completely.
by chulett
Tue May 22, 2012 11:13 am
Forum: General
Topic: deletion and compiling DataStage categorioes - from Unix
Replies: 19
Views: 6841

You do NOT want to be deleting jobs like that.
by chulett
Tue May 22, 2012 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restart the job where it aborts
Replies: 11
Views: 4480

Why does every question you post look like you are fishing for interview answers? :?
by chulett
Mon May 21, 2012 10:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Split a record into multiple records
Replies: 8
Views: 5701

What above point, exactly? If you are unsure which 'direction' the Column Import or Column Export stages go, why not simply check the documentation? It is stated quite clearly there.
by chulett
Mon May 21, 2012 6:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to populate filename to column name in the table
Replies: 16
Views: 4656

Of course, no-one assumed it was static. Answer this: how does the job know what filename to use each time it runs? Is the current filename passed in as a job parameter or are you using some other mechanism?
by chulett
Mon May 21, 2012 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to populate filename to column name in the table
Replies: 16
Views: 4656

What about Ray's advice? Are you not passing in the filename to read as a job parameter? If so, simply leverage that in the appropriate column.
by chulett
Mon May 21, 2012 9:31 am
Forum: General
Topic: Job status information for all jobs on DataStage 7.5
Replies: 8
Views: 3495

Each job stores its own status in a separate table. If you need to check everything all the time, script something or build a BASIC routine. The API will allow you to get a list of all projects on the server, then you can iterate through the list of projects and get a list of all jobs in that projec...
by chulett
Mon May 21, 2012 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Working of Link Ordering
Replies: 16
Views: 5665

Thanks Ernie... I had made a mental note to mention that as well and then managed to forget it mid-post, it would seem. :(
by chulett
Sun May 20, 2012 9:33 pm
Forum: General
Topic: Current timestamp as global variable
Replies: 10
Views: 6196

As with most things, there are many ways of skinning cats, including this one. Glad you found a way that's working for you. :wink: