Search found 53125 matches

by ray.wurlod
Wed Apr 21, 2004 1:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage %s
Replies: 8
Views: 2391

See new thread on capturing output of "UniVerse" commands.
by ray.wurlod
Wed Apr 21, 2004 1:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle WildCard
Replies: 1
Views: 865

Welcome aboard DataStage does not use SQL internally, so the wildcard technique is different. DataStage uses a technique called pattern matching. The patterns against which you match can be specified as containing alphabetic, numeric or "any" character types. So your expression should look something...
by ray.wurlod
Wed Apr 21, 2004 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Session min & max
Replies: 1
Views: 1099

Editing the DSX file is a valid approach. Make sure, however, that you export components' default properties (this is done on the Options tab of the Export dialog).
by ray.wurlod
Tue Apr 20, 2004 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to handle SYS.XMLTYPE fields
Replies: 5
Views: 1624

What kind (brand) of database server? What version?
I haven't encountered it either, but it sounds like a candidate for a list of "gotchas". See what else you can discover by asking "them" (the application owners/support staff) and post same here. :wink:
by ray.wurlod
Tue Apr 20, 2004 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to restart ETL job automatically when a job fails
Replies: 3
Views: 1466

No job, whether server, parallel or mainframe, has the ability to restart itself.
Restart capability must be implemented in a job control routine of some kind (whether build from scratch, from a Batch or from a job sequence, or using an external scripting language).
by ray.wurlod
Tue Apr 20, 2004 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hot to change Derivations form server to px transforamtion.
Replies: 1
Views: 664

You have two choices. One is to use a "BASIC Transformer" stage, in which you can re-use the same expressions that you used in server jobs. The other is to use a regular (parallel) Transformer stage. This uses a completely different expression language. There are no conversion tools (at least none o...
by ray.wurlod
Tue Apr 20, 2004 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control
Replies: 9
Views: 2462

Welcome aboard! :D The best way to think of Version Control is as the "fifth DataStage client". Version Control actually uses a dedicated project on the DataStage server for storing versioned DataStage objects; they are not stored on the client machine where the Version Control client is installed. ...
by ray.wurlod
Tue Apr 20, 2004 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Moving data from an Oracle database to a SQL Server database
Replies: 2
Views: 763

The same can be done with SQL Server. Use a Sequential File stage (or even an FTP stage) to produce the data file, then (remotely?) trigger a BAT file to perform the BCP command on the Windows machine.
by ray.wurlod
Tue Apr 20, 2004 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Droping multiple UniVerse Tables
Replies: 3
Views: 768

Each is as easy as the other. A Routine (probably a before-after subroutine) has the advantage of being portable. Not sure what you mean by neat formatting. I use the Enter key (sometimes twice) to end paragraphs in text. The code is isolated by selecting the code then clicking on the Code button. S...
by ray.wurlod
Tue Apr 20, 2004 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a secure Routine
Replies: 3
Views: 1393

It can be done, but not with DataStage GUI facilities. You need to create the routine separately from DataStage, then use the BASIC compiler with its -I option to prevent reverse engineering before cataloging it. From DataStage you refer to the routine as an external UniVerse routine. Then hide the ...
by ray.wurlod
Tue Apr 20, 2004 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Droping multiple UniVerse Tables
Replies: 3
Views: 768

Imagine you were trying to do this in a database other than UniVerse. The answer is the same; you can not do it with a single command. It's easy to build a paragraph, however. Execute both commands - whether successfully or not - from the Administrator client, then select both from the command histo...
by ray.wurlod
Mon Apr 19, 2004 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: oci stage
Replies: 1
Views: 931

Everything you need to know is in the manual for the stage type (oraoci8.pdf or oraoci9.pdf).
by ray.wurlod
Mon Apr 19, 2004 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduled jobs not showing up in Director Scheduler
Replies: 9
Views: 2988

This is one where server side tracing may aid diagnosis. Enable server side tracing (from Administrator or DS.TOOLS menu) then open Director. Switch to Schedule view. Then close Director and disable server side tracing. Inspect the trace file (DSR_TRACE...) to see how the server was being queried. C...
by ray.wurlod
Mon Apr 19, 2004 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage %s
Replies: 8
Views: 2391

No, the address is actually the offset in the compiled code.

You can view this compiled code in an "assembler" format using

Code: Select all

VLIST RT_BP3447 JOB.1982241586.DT.1325968284.TRANS1 
The associated source statement should be nearby in the output.
by ray.wurlod
Mon Apr 19, 2004 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSRMessage
Replies: 2
Views: 2089

DSRMessage is the subroutine invoked by DataStage itself to log events in job logs. It is eventually called by DSLogInfo and related functions. The all-upper-case tokens such as DSTAGE_TRX_E_0011 are keys to a "resource file". All DataStage messages are tokenized in this way so that it is easily loc...