Search found 15603 matches

by ArndW
Thu Dec 27, 2012 6:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Link count for copy stage
Replies: 1
Views: 956

Does the behaviour change is you set APT_DISABLE_COMBINATION to "true" at the job level?
You might also dump the score to see if one of the two copy stages is not being optmized away.
by ArndW
Thu Dec 27, 2012 6:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer as Source
Replies: 4
Views: 1350

As far as I know, you can only do that in Server jobs. For Parallel jobs, just use the row generator stage (perhaps with a dummy column).
by ArndW
Wed Dec 26, 2012 5:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to dynamically generate rows
Replies: 14
Views: 4892

If your maximum value in Col2 is known and a small amount, then a simple Transform stage with multiple outputs for each iteration value followed by a funnel would be sufficient.
by ArndW
Wed Dec 26, 2012 5:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid character found converting string
Replies: 2
Views: 1495

Ray, I think the humor in your Japanese text is going to be lost on almost everyone here - but I liked it :)
by ArndW
Mon Dec 24, 2012 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting the data after zero
Replies: 4
Views: 2001

Assuming that the string will always have at least one zero:

Code: Select all

Trim(Field(Arg1,'0',2,999),'0','L')
by ArndW
Mon Dec 24, 2012 8:32 am
Forum: General
Topic: Differences between various datafile types
Replies: 1
Views: 955

Complex Flat File - term originating from COBOL, where multiple record types and a variable length array ("OCCURS DEPENDING ON") make for potentially complicated file structures Sequential File - the "classic" flat text file. File Set - A DataStage construct which can only be re...
by ArndW
Mon Dec 24, 2012 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date function
Replies: 3
Views: 1697

Is the output also varchar? If so, Right( '00':Field(In.String,'-',1),2):'-':Field(In.String,'-',2,2) might do what you want. Field(In.String,'-',1) takes everything from the beginning of the string to the first '-', i.e. "1" in your example '00':"1" makes a string "001"...
by ArndW
Mon Dec 24, 2012 4:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid character found converting string
Replies: 2
Views: 1495

There is no magic solution possible. If the UTF-8 (I assume that was a typo in your original post) character is not mapped to the Unicode counterpart then it can't be represented. Some of your choices are: - use UTF-8 everywhere to avoid conversion to Unicode - Ignore the warning - Convert these cha...
by ArndW
Sun Dec 23, 2012 6:48 am
Forum: General
Topic: ERROR: Failed to open project
Replies: 6
Views: 1879

Ray is asking you to execute "dsjob -lprojects" or "dsjob -ljobs" to see if that works.
by ArndW
Wed Dec 19, 2012 1:16 pm
Forum: General
Topic: Px Jobs are importing in uncompiled state
Replies: 17
Views: 13915

I disagree about the best practice of importing uncompiled jobs.

Most production environments I have used and know don't have a c++ compiler installed.
by ArndW
Sat Dec 15, 2012 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare files - Generic Job
Replies: 6
Views: 2283

If you plan on comparing all fields you can use a CDC stage to at least detect which rows are new/deleted/changed given a key. I've used this type of generic job often, but all I want to know is if there is a difference, not which columns have changed. If you really need to compute which of the colu...
by ArndW
Wed Dec 12, 2012 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning on checking operator on lookup stage
Replies: 5
Views: 1708

Can you do a successful "view data" on the reference source stage? The error shows that what you've declared in the job and what is being delivered by the stage are not the same.
by ArndW
Wed Dec 12, 2012 6:03 am
Forum: Site/Forum
Topic: Slide-Ins
Replies: 11
Views: 8687

I haven't seen that. I'm on IE8 and IE9
by ArndW
Wed Dec 12, 2012 6:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Records lost when reading a hashed file after upgrading DS
Replies: 5
Views: 2236

Have you identified the 2 keys that work in the old version but don't in the new?
by ArndW
Fri Dec 07, 2012 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server job fails with ORA-04068
Replies: 3
Views: 2264

Do you know what changed in either DataStage or Oracle between the time it worked and the time it stopped working?

Also, can you execute the insert logic from a SQL tool (e.g Toad or the like) to see if the error is also present there?