Search found 53125 matches

by ray.wurlod
Sun Apr 13, 2008 5:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Engine - UniVerse
Replies: 31
Views: 18204

UniVerse BASIC is a superset of Pick BASIC. Indeed, UniVerse BASIC is not one language, but six, and one of its variants (not the one used originally in DataStage) is very close to Pick BASIC. None of that affects DataStage; it's more a matter for those who develop applications under UniVerse. And t...
by ray.wurlod
Sun Apr 13, 2008 4:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rename field
Replies: 2
Views: 745

The Copy stage can:
    change field names

    drop fields

    re-order fields

    change data type to a compatible (automatically converted) data type
The Copy stage can not:
    change data in any way

    add fields

    change data type to an incompatible data type
by ray.wurlod
Sun Apr 13, 2008 4:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading to DB2 with PX
Replies: 5
Views: 1577

Top marks for the misleading etymology! :lol:
by ray.wurlod
Sun Apr 13, 2008 4:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage vs Seebeyond
Replies: 15
Views: 6407

OK start your presentation with a slide that outlines the difference between a hammer and a screwdriver. If you only have one you can do the job of the other, but it's not pretty.
by ray.wurlod
Sun Apr 13, 2008 4:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Engine - UniVerse
Replies: 31
Views: 18204

1. Yes. See this document for the history and current players. They include D3, mvBase, mvEnterprise, UniVision, Reality, jBase, ONware, Open Insight, and JOI. 2. No published standards but, since UniVerse and UniData claim to have more than 70% of the market, then that's pretty much a de facto stan...
by ray.wurlod
Sat Apr 12, 2008 7:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Storing the output of Coomands in TCL prompt to a file
Replies: 3
Views: 1078

This won't help; I include it for interest only. UniVerse version 10 (the first after the split from DataStage) introduced a TO.XML keyword that dumps the result of the query as an XML document. Further options allow this to be attribute-centric or element-centric, and to include DTD or to exclude i...
by ray.wurlod
Sat Apr 12, 2008 7:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Control character or Unprintable character in string
Replies: 10
Views: 1971

Prefer Seq() function. Seq() returns the ASCII code value associated with a character. If you have NLS enabled and are using multi-byte encoding, prefer UniSeq() to Seq(). UniSeq() returns the Unicode code value associated with a character. If you have a single-byte character set, UniSeq() returns t...
by ray.wurlod
Sat Apr 12, 2008 7:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: read_delimited() in ODBC stage
Replies: 5
Views: 1082

Therefore we await Bala's response.
by ray.wurlod
Sat Apr 12, 2008 7:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 81002 - Connection is down (UniData)
Replies: 5
Views: 3658

Anything is possible. It may be that you are now dealing with larger volumes of data than previously, and that the version of DataStage is not a factor. Or it may be. Can you execute the query "natively" in UniData without any problem?
by ray.wurlod
Sat Apr 12, 2008 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage vs Seebeyond
Replies: 15
Views: 6407

It's a scheduling tool more than anything. However, if all you want to do is move stuff around within Oracle, then a combination of PL/SQL scripts scheduled from SeeBeyond/JCAPS will do the trick for you. When, in future, because of amalgamations, mergers, the need to capture data from or write data...
by ray.wurlod
Sat Apr 12, 2008 5:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: before job routine & after job routine
Replies: 3
Views: 4136

Before/after routines are executed once (maximum) per job run.

Transform functions are executed once per (output) row.

One example of an after-job subroutine is to archive/rename the file that has just been processed by the job.
by ray.wurlod
Sat Apr 12, 2008 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HOW TO CREATE ".o" & ".so" files for
Replies: 4
Views: 2036

".o" is object, ".so" is shared object. You create either with an appropriate option in your compiler/linker.
by ray.wurlod
Sat Apr 12, 2008 5:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: STPPX STAGE Settings Problem
Replies: 1
Views: 1048

Import Table Definition is independent of job type, so you can import your stored procedure definition exactly as you would if you were intending to use it in a server job. The fact that the function failed to initialize may mean that the Stored Procedure stage has not been properly installed or reg...
by ray.wurlod
Sat Apr 12, 2008 4:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: read_delimited() in ODBC stage
Replies: 5
Views: 1082

Apparently not; it can also be thrown reading a stream of data. Reading the entire error message, we see that in the job src_ORA_Desc (no Invocation ID) the stage Seq_Trg_Desc and link Outto_Desc is generating the error. Can you please confirm your job design, with stage and link names? In particula...
by ray.wurlod
Sat Apr 12, 2008 4:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 81002 - Connection is down (UniData)
Replies: 5
Views: 3658

Sounds very much like a timeout at the UniData end. Are the columns involved in the WHERE clause indexed? If they were, then maybe your SELECT would finish fast enough not to time out. Just a thought.