Search found 53125 matches

by ray.wurlod
Mon Oct 02, 2006 8:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Import DS Macro ?
Replies: 9
Views: 5576

You can also - more easily in my opinion - create a server routine and invoke it from a Routine activity in the parent job sequence once the job has completed.
by ray.wurlod
Mon Oct 02, 2006 6:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA OCI stage appends ".FF19" to date format on ti
Replies: 12
Views: 7669

That will suffice. The number is the primary key to the table in which support cases are recorded (the "*AUA" suffix indicates that it was first accepted by the Australian support group).
by ray.wurlod
Mon Oct 02, 2006 6:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Bulk Loader
Replies: 8
Views: 2128

You have moved on from the original problem, and now getting a different problem. Again, it is likely that a required stage property (the temp directory pathname) has not been provided.
by ray.wurlod
Mon Oct 02, 2006 6:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unzip in unix
Replies: 12
Views: 5169

Is there another option for unzip to specify the target location?

If not, change the command to

Code: Select all

cd pathname && unzip -o /TESTZIP/xyz.zip 
by ray.wurlod
Mon Oct 02, 2006 6:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Import DS Macro ?
Replies: 9
Views: 5576

You don't. DS Macros are written in DataStage BASIC, and defined in DSINCLUDE/JOBCONTROL.H Because of the language in which they are written, you can only use DS Macros in BASIC Transformer stage, or in server shared containers, within parallel jobs. Neither is recommended. You might also ask yourse...
by ray.wurlod
Mon Oct 02, 2006 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Bulk Loader
Replies: 8
Views: 2128

It's doing precisely what you're asking it to do.

Code: Select all

Load immediate: No 

Look at the property help for the "Load immediate" property.
by ray.wurlod
Mon Oct 02, 2006 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BULK loading DATE data type error
Replies: 4
Views: 1732

This is an Oracle error. To find out more execute the following command on the DataStage server. oerr ORA 1841 Basically, however, your data (column R263_FISCAL_DATA_END) contains at least one date with the year less than -4713, zero, or larger than +9999. This is not acceptable to Oracle when stori...
by ray.wurlod
Mon Oct 02, 2006 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in opening a job
Replies: 7
Views: 1366

Never kill DataStage processes in this way. You are unaware of the relationships between DataStage processes; there are typically at least two processes involved in running a server job. Having done so, as others have pointed out, you (or an Administrator) need to effect repairs; in particular unloc...
by ray.wurlod
Mon Oct 02, 2006 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to start a Sequencer from Mainframe
Replies: 5
Views: 2597

If the FTP transfers are under control of an enterprise scheduler, such as Control-M, SeeBeyond, etc., then the same scheduler can be used to initiate the DataStage job sequence.
by ray.wurlod
Mon Oct 02, 2006 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Length(Varchar) in db2
Replies: 8
Views: 2545

Is there a CHAR_LENGTH function, or something similar?

Otherwise, use the Len() function within DataStage; the Len() function returns the number of characters in the string.
by ray.wurlod
Mon Oct 02, 2006 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convertion From Sq File to Lookup Fileset ?
Replies: 5
Views: 1417

Probably set the "First line is column names" property to True. Second possibility is to set the field delimiter property to the correct value.
by ray.wurlod
Mon Oct 02, 2006 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use Hash Files (server Jobs) in Parallel Jobs?
Replies: 6
Views: 2719

Re: How to use Hash Files (server Jobs) in Parallel Jobs?

Hi I have hash files in my server jobs as those files were used as lookups, I need to access hash files for lookups in parallel but parallel ext doesn't support hash files. So, do I need to convert hash files to different format to access them in parallel and how ? Instead of Hashed File stage, use...
by ray.wurlod
Mon Oct 02, 2006 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cannot Delete a File
Replies: 3
Views: 974

What is job number 118? SELECT NAME, CATEGORY FROM DS_JOBS WHERE JOBNO = '118'; Have you made an earlier attempt to delete this job? From the Administrator client or from a telnet session execute the command DS.CHECKER This will check for orphaned jobs and hashed files associated with them. If that ...
by ray.wurlod
Mon Oct 02, 2006 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can the DataStage jobs back-up be automated?
Replies: 16
Views: 10514

Are you being paid by the hour? Seriously, though, yes it can be automated; the script to which Kim referred is a good starting point. An alternative - and maybe easier - is to back up the entire project then use a DSX cutter to create separate per-category DSX files. Do they require routines, table...
by ray.wurlod
Mon Oct 02, 2006 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Function
Replies: 6
Views: 2166

Re-organize the string with substring and concatenation.