Search found 53125 matches

by ray.wurlod
Fri Aug 24, 2007 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not enough disk space? Yes there is.
Replies: 6
Views: 1525

Adam Savage might (does) say "I reject your reality and substitute my own."
by ray.wurlod
Fri Aug 24, 2007 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Triggering a Mainframe Job!
Replies: 1
Views: 547

No.

You can certainly trigger a mainframe job using some kind of enterprise scheduler, and the parallel job can notify that (for example by creating a specific file) that the mainframe job needs to be started, but it is not possible to do so directly from a parallel or server job.
by ray.wurlod
Fri Aug 24, 2007 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Processing mainframe files with Signed and Comp fields
Replies: 3
Views: 967

None of which I'm aware. However, if you study the SDK routines, you may get some clues as to the algorithms required in your own parallel routines.
by ray.wurlod
Fri Aug 24, 2007 3:29 pm
Forum: General
Topic: datastage routines
Replies: 4
Views: 1473

I use the appropriate routine(s) for the task at hand.

This has meant that I spend some time studying what's available in the Repository of each new project on which I work, so that I can leverage anything they've already produced (as well, hopefully, as conforming with in-house standards).
by ray.wurlod
Fri Aug 24, 2007 3:25 pm
Forum: General
Topic: Regarding Executing jobs in Unix
Replies: 16
Views: 4573

It's dsjob (lower case, no trailing "s").
by ray.wurlod
Fri Aug 24, 2007 3:23 pm
Forum: IBM<sup>®</sup> DataStage TX
Topic: Reading Mainframe file as binary for COMP fields
Replies: 2
Views: 3178

Show us what you did, where fix_zero is used. Did you really use fix_zero somewhere in DataStage TX, or have you posted in the wrong forum?
by ray.wurlod
Fri Aug 24, 2007 3:20 pm
Forum: IBM QualityStage
Topic: QualityStage 7.5 repository
Replies: 2
Views: 1308

There is a "repository" on the server. However it is not a database; it is the "project", and contains (primarily) text files. This stems from the fact that INTEGRITY (the forerunner of QualityStage) began life as a mainframe application. That said, it is one way traffic. One develops on the client ...
by ray.wurlod
Fri Aug 24, 2007 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Processing mainframe files with Signed and Comp fields
Replies: 3
Views: 967

There are some examples in IBM's class DataStage Essentials (Server Edition) about how to use the SDK routines to "translate" such data into character numeric (= human readable) form.
by ray.wurlod
Fri Aug 24, 2007 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Appending date to Archive file in Routine
Replies: 5
Views: 1547

[quote="ajay by private email]I am not a premium member hence unable to see your complete message..I just want to append todays date to the file that i am moving to archival folder..i am able to move the file to that folder using the routine ...But i am unable to rename that file by appending the da...
by ray.wurlod
Fri Aug 24, 2007 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Scheduling
Replies: 5
Views: 2145

First step is you telling us how you propose to detect - from UNIX - the change of state of the table in the holding area. Once you have advised that, then maybe we can proceed with further analysis.
by ray.wurlod
Fri Aug 24, 2007 3:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can I automate saving column definitions in saved folder
Replies: 8
Views: 2153

Correct. It is not documented anywhere. That should tell you something.

The answer to your second question is "only if you have managed to discern the complete record structure used in DS_METADATA".
by ray.wurlod
Fri Aug 24, 2007 3:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Batch Job Failed
Replies: 6
Views: 1168

From the Administrator client's Command window:

Code: Select all

COUNT RT_CONFIG164
UVFIXFILE RT_CONFIG164
COUNT RT_LOG164
UVFIXFILE RT_CONFIG164
by ray.wurlod
Fri Aug 24, 2007 3:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Appending date to Archive file in Routine
Replies: 5
Views: 1547

ExecDOS is already written. I guess you mean that you want help with the DOS command for renaming a file. Set up job parameters with the required components, then use these in a RENAME command. For example:

Code: Select all

REN basefile basefile_#dateportion#_#timeportion#
by ray.wurlod
Fri Aug 24, 2007 3:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequence Versus Batch Scripts
Replies: 3
Views: 1327

A Batch, a job sequence or a user-written job control routine are all the same thing - the code can be viewed through the job properties. Therefore, all else being equal, there are no differences. Job sequences can indeed be invoked by third party schedulers, via the same interface (dsjob) that you ...
by ray.wurlod
Fri Aug 24, 2007 3:25 am
Forum: General
Topic: Regarding Executing jobs in Unix
Replies: 16
Views: 4573

So do lots of folks. The first thing you need is a DataStage server installed on that UNIX platform. Do you have that? Once you have that, investigate the dsjob command.