Search found 15603 matches

by ArndW
Fri Feb 29, 2008 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Gaps(Holes) in surr_key generated by Surr_Key_Gen stage
Replies: 5
Views: 1688

This is most likely due to the block size that is being used. In order to speed up execution, surrogate keys are generated in blocks instead of going to the file/database for each and every key. It is possible that holes can occur when the program is stopped where the rest of the keys in the block a...
by ArndW
Thu Feb 28, 2008 10:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Seq
Replies: 4
Views: 1183

Is the interview soon?
by ArndW
Thu Feb 28, 2008 10:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff Developers and Designers
Replies: 3
Views: 851

I think that the two job descriptions are pretty much the same and are interchangeable. "DataStage programmers" or "DataStage engineers" could also be added to that list. Generally "DataStage Architect" could be considered a different role. The architect works more on the big picture and design whil...
by ArndW
Thu Feb 28, 2008 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HEX and ASCII, SEQ() Translation
Replies: 7
Views: 5599

Use Google to search for "ASCII EBCDIC conversion" and you will get many hits, or look in the BASIC Job developer which also has a conversion table. Where are you doing your EBCDIC conversion? In some places you can explicitly modify this convsersion mapping (i.e. within DataStage). If you cannot co...
by ArndW
Thu Feb 28, 2008 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Environment Variable
Replies: 6
Views: 1504

It is questions like this that make me wonder and that bother me. Is DSXchange considered to be a replacement for the help files, the documentation and other sources? 1. the DataStage manuals which are installed with each client installation contain many of references to environment variables. A qui...
by ArndW
Thu Feb 28, 2008 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HEX and ASCII, SEQ() Translation
Replies: 7
Views: 5599

The mainframe will use EBCDIC and the character0xBB is not defined. 0x1A in ASCII is defined as "SUB" Decimal 26 is 0x1A, the same as above. The EBCDIC hex value for "]" is 0x5A. Some 3270 emulators will display the character as "]", though. Unless you specify a conversion explicitly for this non-EB...
by ArndW
Thu Feb 28, 2008 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can all basic functions be used in the Transformer.
Replies: 7
Views: 1299

kollurianu wrote:How to know/identify what are PX equivalents...
the PX manuals exhaustively list the available functions, or you can use the PX drop-down lists within the transform stage.
by ArndW
Thu Feb 28, 2008 10:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading a zipped File
Replies: 3
Views: 884

As Craig has already pointed out, use the filter option in the sequential file stage. If your source file is "a.Z" then the filter option would read

Code: Select all

uncompress -c
and the compressed file is read and uncompressed in memory to the DataStage job.
by ArndW
Thu Feb 28, 2008 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error While Using DB2 Sequence for Surrogate Key
Replies: 10
Views: 3668

Sorry, I just realized I didn't pay attention to your first post. Are you 100% certain that you aren't using TSNO anywhere else in the stage? Perhaps custom update code, or before/after code? This is the only think I can think of at the moment.
by ArndW
Thu Feb 28, 2008 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Version clarification
Replies: 11
Views: 2893

Wolfgang - thanks! (I'm sitting about 2 metres from Udo at this very second!)
by ArndW
Thu Feb 28, 2008 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get Job Name executed from sequence
Replies: 4
Views: 1400

If you look at the job control code generated by a job sequence you can see where you could add one line per job activity stage call to fill a parameter with the job name being called. You cannot do this directly in a job sequence, but this code could be copied to a normal server job and inserted in...
by ArndW
Thu Feb 28, 2008 8:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Subroutines
Replies: 2
Views: 947

Very roughly: - Code your subroutine in c++, compile and load it into a library - Create a new parallel subroutine from the manager and add the details on the parameters, name and location of the coded routine Note from the HELP Example parallel routines are supplied on the Client Installation CD in...
by ArndW
Thu Feb 28, 2008 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Version clarification
Replies: 11
Views: 2893

Thanks Wolfgang! I looked for that page earlier and didn't find it. I hadn't heard about 7.5.3 coming out
by ArndW
Thu Feb 28, 2008 8:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob -run -param
Replies: 4
Views: 1500

It looks like your job has no INSER_SQL parameter.
by ArndW
Thu Feb 28, 2008 8:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error While Using DB2 Sequence for Surrogate Key
Replies: 10
Views: 3668

In which case you are using custom SQL that still contains TSNO