Search found 53125 matches

by ray.wurlod
Wed Sep 09, 2009 8:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maintain sort order in datastage
Replies: 10
Views: 8363

Beware of doing that. DataStage will insert a tsort operator that may thwart your best-laid plans. Always use a Sort stage to specify "don't sort, previously sorted" if that's what you need to do.
by ray.wurlod
Wed Sep 09, 2009 8:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared Container and Allow Multiple Instance
Replies: 5
Views: 2700

Ditto - the Informix days, if I recall correctly!
:D
by ray.wurlod
Wed Sep 09, 2009 8:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File set stage and lookup file set stage?
Replies: 1
Views: 5761

When you perform a normal (not sparse) lookup with a Lookup stage - with any other stage type than Lookup File Set providing the reference data - the entire reference data set must be read into memory and an index created on it (LUT_CreateOp operator) before any lookup can be performed. Populating a...
by ray.wurlod
Wed Sep 09, 2009 8:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_AUDIT problem
Replies: 1
Views: 1224

Version 8 doesn't always reliably record CLASS. Try with

Code: Select all

CLASS IN ('2','7')
by ray.wurlod
Wed Sep 09, 2009 7:10 pm
Forum: General
Topic: Is there any function like between
Replies: 11
Views: 3333

If the incoming date is in external format with alphabetic month, you can use the Matches operator.

Code: Select all

InLink.TheDateString Matches "...'MAY'..."
by ray.wurlod
Wed Sep 09, 2009 7:05 pm
Forum: General
Topic: 'Unable to save editServ.impl.Jobdefnimpl@2db1e166
Replies: 7
Views: 4643

DS.REINDEX will not help; it indexes the local repository, not the unified (XMETA) repository. Clearly the problem in in XMETA.
by ray.wurlod
Wed Sep 09, 2009 7:03 pm
Forum: IBM QualityStage
Topic: T/AS versus T/A
Replies: 4
Views: 1768

Place this processing into the Input_Modifications subroutine and I think you'll find it works.
by ray.wurlod
Tue Sep 08, 2009 8:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ls -m behaving strangely
Replies: 6
Views: 2219

Does your command use any quote characters and, if so, of what kind? Can you post the complete command and parameters fields from your Execute Command activity?
by ray.wurlod
Tue Sep 08, 2009 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel installation not working
Replies: 9
Views: 3747

Vista is not a supported operating system for the server.

Did you install the required C++ compiler before installing DataStage?
by ray.wurlod
Tue Sep 08, 2009 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to remove a bad project
Replies: 4
Views: 1721

You probably need to delete the entry for the project from UV.ACCOUNT, repair the UniVerse system tables using VERIFY.SQL, and remove the entry for the project from the relevant table in the XMETA repository (the table with PROJECT in its name).
by ray.wurlod
Tue Sep 08, 2009 4:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Operator of type "APT_BufferOperator" - Warning
Replies: 3
Views: 2706

That's because it's not for a stage, it's for an inserted buffer operator.
This is an example of an alert message that it's safe to demote to informational using a message handler.
by ray.wurlod
Tue Sep 08, 2009 4:45 pm
Forum: General
Topic: Configuration of Information Server V 8.0.1 on Windows XP
Replies: 14
Views: 6016

See my earlier post about DataStage roles.
by ray.wurlod
Tue Sep 08, 2009 4:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can i replace an XML element (Web Services Transformer)
Replies: 2
Views: 995

... or use a server job, which avoids the overheads of a parallel job.
by ray.wurlod
Tue Sep 08, 2009 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with DS_AUDIT table
Replies: 3
Views: 1793

It means precisely that.
by ray.wurlod
Tue Sep 08, 2009 3:13 pm
Forum: General
Topic: Merge Sequential Files - handling missing files
Replies: 7
Views: 1870

It's a cat command on Unix, type command on Windows.