Search found 53125 matches

by ray.wurlod
Sun May 16, 2004 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DW Concepts and architecture
Replies: 4
Views: 1186

To find out how to do it with DataStage, enrol in the Ascential classes. DataStage Essentials is a prerequisite, but the DataStage Best Practices class is the one you really want. Visit the Ascential web site, track down these class names to view what they cover.
by ray.wurlod
Fri May 14, 2004 5:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Padding Data
Replies: 3
Views: 1703

Padding is indeed one of the tasks of the FMT function. To pad a string on the right to a length of 15 characters, use FMT(string, "15L") This means "15 characters, data left-justified". To pad a string on the right to a length of 15 characters, and truncate the result at 15 characters (in case the ...
by ray.wurlod
Fri May 14, 2004 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 12
Views: 4155

ODBC can automatically convert to internal date format, so that your transformations would not require the Iconv function.

To learn more about date conversions with Iconv and Oconv, go here.
by ray.wurlod
Fri May 14, 2004 4:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Question about UtilityAbortToLog
Replies: 12
Views: 3579

VITAL difference.

If things don't abort, your controlling jobs/sequences can remain in control. Warnings can be detected and appropriate action taken.

Depending on the second argument for DSAttachJob, aborts can cause you to have to work nights or weekends resetting jobs. :cry:
by ray.wurlod
Fri May 14, 2004 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column as Parameters
Replies: 9
Views: 2196

You asked for it!

OK, since you asked for it! To force a complete rerun then clear this file. To force one job to rerun then just clear its record. (Hey Ray if I leave off an apostrophe then please let me know or a comma) One good ("its" without apostrophe is correct here). It's "it's" when it's "it is" but it's "its...
by ray.wurlod
Fri May 14, 2004 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PeopleSoft EPM sites using DataStage on this forum...
Replies: 14
Views: 5463

I hope that the DataStage/Peoplesoft experience is better. A customized DataStage class for Peoplesoft support folks (DS324PSFT) was developed and has already been delivered in a couple of locations - I delivered the one in Sydney (Australia). I agree with Kim, though, that a forum here would be a u...
by ray.wurlod
Fri May 14, 2004 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BASIC routine is not cataloged
Replies: 5
Views: 8139

Yep, that'll do it!
It's like continuing to write the old year in dates for a couple of days into the new year, and we all do that. :?
by ray.wurlod
Fri May 14, 2004 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: syntax error
Replies: 2
Views: 813

That's not actually an error. :D All of the functions that the Expression Editor and parser "know" are in a file called DSParams in the project directory on the server. The bit functions (BitTest, BitAnd, BitOr, BitXor) are not in DSParams. However they are legitimate DataStage BASIC functions; your...
by ray.wurlod
Fri May 14, 2004 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.StageRun
Replies: 4
Views: 1730

DSD.StageRun is the name of the subroutine executed to implement a Transformer stage. You can examine the generated source code in the RT_BPnnn directory, where nnn is the job number from DS_JOBS (search the Forum for RT_BP). You should be able to diagnose where the problem lies. The fix is going to...
by ray.wurlod
Fri May 14, 2004 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control
Replies: 9
Views: 2462

PeopleSoft DataStage installation will also be including lots of "maps" (transforms and/or routines) that mimic what they used to have on Informatica, and a number of canned DataStage jobs for accessing the PeopleSoft application. These canned jobs make use of two custom plug in stages (one for DA, ...
by ray.wurlod
Fri May 14, 2004 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to call an external C routine from a Parallel Routine
Replies: 10
Views: 6350

The libraries need to be found by other processes. The directories in which the libraries live need to be recorded in the "shared library path" environment variable (LD_LIBRARY_PATH, LIBPATH or SHLIB_PATH, depending on which UNIX you're on). This variable needs to be set in the dsenv file, which is ...
by ray.wurlod
Fri May 14, 2004 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Internals
Replies: 2
Views: 1735

The only publicly available materials are Chapters 2 and 19 and Appendix A of the Server Job Developer's Guide (version 7.x) and the DataStage Plug-In Writer's Guide . Chapter 2 of the Parallel Job Developer's Guide gives some insights into parallel processing strategies, but not really any internal...
by ray.wurlod
Fri May 14, 2004 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job is being accessed by another user
Replies: 5
Views: 3268

Since Iam working on PX I used PXEngine instead of DSEngine and I gave the command bin/osh instead of bin/uvsh. Am I correct upto this point. Pls clarify? You are not correct. Locking of design time objects is performed in the DataStage engine. You should execute neither osh nor uvsh . You should e...
by ray.wurlod
Fri May 14, 2004 1:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control Function
Replies: 1
Views: 694

Assuming that you have DataStage software, the two manuals that you need to consult are the Server Job Developer's Guide (chapters on BASIC Programming and, particularly, DataStage Development Kit) and the Core Development Guide (Chapter on Job Sequences)
by ray.wurlod
Fri May 14, 2004 12:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Question about UtilityAbortToLog
Replies: 12
Views: 3579

If it's done properly, production jobs should never abort. In particular, it is possible to design things to detect the few possible abnormal conditions (such as database server unavailable) prior to doing any serious processing, then take an alternate path that involves notifying someone that actio...