Search found 42189 matches

by chulett
Tue Jul 31, 2007 6:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export XML
Replies: 9
Views: 2356

It wasn't a 'work around', it was a diagnostic technique. Did you actually enable server side tracing and inspect the trace file?

Regardless, sounds to me like it's time for you to contact your official Support provider and get them involved in your issue.
by chulett
Tue Jul 31, 2007 6:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Target Load strategy
Replies: 12
Views: 5160

Wasim was not using a hashed file, the only known mechanism for which the NOTFOUND link variable is reliable. Agreed, the link variables are only reliable for a hashed file lookup. For any other stage, fall back on the original mechanism of checking for a null Key field post lookup. However, I base...
by chulett
Tue Jul 31, 2007 6:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage EE with windows
Replies: 20
Views: 8558

I'm always leery of a "dot oh" release of any product, especially when that release is a major upgrade from the previous release as in this case.
by chulett
Mon Jul 30, 2007 8:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Target Load strategy
Replies: 12
Views: 5160

Old style. You could also use an Input Link Variable boolean:

Code: Select all

LookupLinkname.NOTFOUND
by chulett
Mon Jul 30, 2007 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LDR_CNTRL=MAXDATA
Replies: 1
Views: 1847

Why not ask the people that suggested it to you? :?
by chulett
Mon Jul 30, 2007 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Importer errors
Replies: 4
Views: 1611

I would think you'd need to ping the vendor for something like this, open a Support case. Or perhaps wait and see if Ernie will swoop down and help out. I'm curious... a 257K XSD file? And that's "your smallest"? I've never seen one more than 1/10th that size, even for our most complex. It may be we...
by chulett
Mon Jul 30, 2007 9:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Managing sequential unique keys
Replies: 11
Views: 3671

You would need to drop all mention of the 'serial' field from the link. Make sure you Annotate this so others know what is going on.
by chulett
Mon Jul 30, 2007 7:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Managing sequential unique keys
Replies: 11
Views: 3671

Difficult? Impossible. :wink:
by chulett
Mon Jul 30, 2007 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key
Replies: 6
Views: 2270

Re: Surrogate Key

EssEss05 wrote:I have tried with surrogate key generator stage but its not possible to specify the highest value of last run.

Not true. Read the documentation a little more carefully.
by chulett
Mon Jul 30, 2007 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate id generation - multiple inst jobs at same time.
Replies: 5
Views: 1568

There's a difference between selecting a 'max id' from a table (which the OP shows as 'select nextval') and the use of 'dot nextval' in user-defined sql. Unless it works totally differently from its counterpart in Oracle, there are no single threaded issues with the latter. :?
by chulett
Sun Jul 29, 2007 8:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding unzip in WinNT
Replies: 24
Views: 8223

Technically, 'shell scripts' are a UNIX thing. Since you are running a Windows based DataStage server, you'll need to write a 'batch file' instead. Well, unless you've got something like the MKS Toolkit installed which brings UNIX functionality to Windows. My batch file writing days are long behind ...
by chulett
Sat Jul 28, 2007 10:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No descriptor for this position error
Replies: 5
Views: 1567

Unfortunately, OCI won't ever be so helpful as to actually tell you precisely what the problem is. Just that you've got one. As you've noted from previous posts, you've got a mismatch between the number of columns declared in the stage and the number of parameter markers used in the sql. This could ...
by chulett
Sat Jul 28, 2007 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for some advice on Preload file to memory
Replies: 24
Views: 7071

Note that exactly how this all works under the covers is not documented, so all we have is anecdotal evidence. From my experience, it seems the only check is against the configured limit, not what memory you may or may not actually have available at that moment. Assuming you haven't enabled 'System ...
by chulett
Sat Jul 28, 2007 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding unzip in WinNT
Replies: 24
Views: 8223

DON'T USE THE FTP STAGE!

:wink:
by chulett
Sat Jul 28, 2007 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Case Structures in place of nested if
Replies: 2
Views: 1276

As noted, you'd need to write a custom routine if you really felt the need to convert this into a 'case' statement. You would then reference the routine in your derivation.