Search found 53125 matches
- 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
- 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...
- Wed Apr 21, 2004 12:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Session min & max
- Replies: 1
- Views: 1099
- 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
- 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
- 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...
- 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. ...
- 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
- 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...
- 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 ...
- 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...
- Mon Apr 19, 2004 4:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: oci stage
- Replies: 1
- Views: 931
- 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...
- 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
The associated source statement should be nearby in the output.
You can view this compiled code in an "assembler" format using
Code: Select all
VLIST RT_BP3447 JOB.1982241586.DT.1325968284.TRANS1 - 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...