Search found 53125 matches

by ray.wurlod
Tue Jan 25, 2005 4:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Buil XML file from sequential file
Replies: 1
Views: 737

Welcome aboard! :D It's not really clear from your description what you are trying to achieve. Is it some kind of summary report - totals for each separate file sequence number perhaps? Basically, you need the XMLReader stage to strip off the tags and create a stream of data. Process that stream of ...
by ray.wurlod
Tue Jan 25, 2005 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to change a read-only routine?
Replies: 13
Views: 1340

My bad. Poor attention to detail after a 13 hour work day testing. :evil:
by ray.wurlod
Tue Jan 25, 2005 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Copying job parameters
Replies: 8
Views: 1243

At sites where I am the team leader, we use job templates as much as possible. Almost the first things set up are jobs containing the full set of standard parameters. Any job created from such a template can delete any parameters it does not actually require. This method has the additional advantage...
by ray.wurlod
Tue Jan 25, 2005 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: log files
Replies: 3
Views: 912

You can also use DSLogEvent to write into a different job's log.

You can also use UtilityMessageToLog or UtilityWarningToLog routines.
by ray.wurlod
Tue Jan 25, 2005 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checkpointing and failover
Replies: 3
Views: 905

Good thought, provided the sync() was successful. :roll:
by ray.wurlod
Tue Jan 25, 2005 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Monetary Conversion
Replies: 2
Views: 1028

Arnd will edit his post to correct a small syntax error shortly. Then I will edit this post to remove the first paragraph. :D

If you have the "." in your data, you can more simply use the Convert() function.

Code: Select all

Convert(".", ",", TheAmount)
by ray.wurlod
Tue Jan 25, 2005 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataDirect - DS7.5
Replies: 1
Views: 639

It would not be a problem from DataStage's point of view - it's just a client. You may need to change some entries in .odbc.ini, and the driver versions may or may not be compatible with your database version (particularly for Informix), but neither of these are actually DataStage problems. It may b...
by ray.wurlod
Tue Jan 25, 2005 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Schema propagation warning
Replies: 6
Views: 2876

Just the obvious one - make sure that the schema (metadata) on both sides of the Transformer match.
by ray.wurlod
Tue Jan 25, 2005 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC Stage - Error
Replies: 3
Views: 2968

Are they errors (red icon) or warnings (yellow icon)? Warnings can be issued to inform you that something unusual - not necessarily wrong - has occurred. In this case, since you did not specify change values, the CDC stage is reporting to you that it had to set defaults, which might be a vital piece...
by ray.wurlod
Tue Jan 25, 2005 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC stage
Replies: 6
Views: 2077

Just an observation in passing. I teach never to use that form for sqlplus connection string. The reason is that your password is exposed; anyone looking at the processes (using a ps -ef command on UNIX) or anyone looking over your shoulder at the screen will be able to see your Oracle password. Be...
by ray.wurlod
Tue Jan 25, 2005 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can I install tutorial px at home as a astudent ?
Replies: 4
Views: 1587

Welcome aboard! :D As the other posters have said, Ascential does not currently offer anything like a personal edition of DataStage - you either buy a full licence or nothing. If there is a reasonable prospect of a sale, some vendors may arrange an evaluation licence - a full licence with an expiry ...
by ray.wurlod
Tue Jan 25, 2005 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what's the replacement of server routines
Replies: 2
Views: 998

Welcome aboard! :D

Yes, the buildop is the nearest equivalent in PX to the (transform function) routine in server jobs.

Take a look at Chapter 55 of the Parallel Job Developer's Guide for more information on custom, build and wrapped stages.
by ray.wurlod
Tue Jan 25, 2005 3:40 pm
Forum: IBM QualityStage
Topic: Command syntax for QS jobs
Replies: 6
Views: 3572

That is true, and I probably ought to have mentioned it rather than responding to the specific "with dsjob" in the original question. But I agree with Vincent that they're much easier to control out of DataStage, and there are then a whole lot of data reformatting operations (still can't lose the IN...
by ray.wurlod
Tue Jan 25, 2005 3:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: login problem Ascential datastage 7.5
Replies: 6
Views: 3548

The telnet service is irrelevant. It operates on port 23. The service that is causing the problem is the DataStage RPC service; it operates on port 31538 (unless you've changed it). That's the one you should be checking in the firewall. The terminology "RPC daemon" comes from UNIX - the messages are...
by ray.wurlod
Tue Jan 25, 2005 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checkpointing and failover
Replies: 3
Views: 905

That information is not in the public domain, and 7.5 is still new enough that those of is who do haven't really had a good hack at it yet. My guess is that the checkpoint information is stored somewhere in the repository hashed file (table) called RT_STATUSnnn, where nnn is the job number of the Jo...