Search found 53125 matches

by ray.wurlod
Thu Jun 14, 2007 12:58 am
Forum: IBM QualityStage
Topic: Reverse Engineer
Replies: 9
Views: 3592

The MDB file is not deployed to the UNIX server - there's no such thing as Access on UNIX. The most relevant document to read is your licensing agreement, which expressly forbids reverse engineering. Since deployments are not logged on the server you are pretty much restricted to checking each clien...
by ray.wurlod
Wed Jun 13, 2007 9:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column Export warnings
Replies: 3
Views: 1563

Umm.. define an explicit length in the export metadata? Maybe that's what you are doing, and the unbounded string is purely internal. In that case (unless you can associate the stage with a schema file) there's not much I can suggest.
by ray.wurlod
Wed Jun 13, 2007 9:34 pm
Forum: General
Topic: User-defined query in DRS stage
Replies: 16
Views: 4529

Welcome aboard.

Any field that is to appear in the WHERE clause must be marked as Key in the Columns grid. Key in this context does not necessarily mean primary key; it means search key.
by ray.wurlod
Wed Jun 13, 2007 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove Lookup File Set
Replies: 1
Views: 1213

Arnd: That's neat. I though it only worked with Data Sets.

fabianorb: Do mark the thread as resolved if that solves your problem.
by ray.wurlod
Wed Jun 13, 2007 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Combine Dates
Replies: 11
Views: 2973

You only need to partition on Key. Including EffDt in the partitioning may lead to inconsistent results. Though you still may want to sort on EffDt. Could you, instead, use an Aggregator stage, grouping on Key and generating Min(EffDt) and Max(ExpDt) ? The same partitioning considerations as above a...
by ray.wurlod
Wed Jun 13, 2007 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting DSGetLogSummary in More readable format
Replies: 9
Views: 3911

Replace the field marks with linefeed characters (Char(10)).

Code: Select all

Convert(@FM, Char(10), DSGetLogSummary(DSJ.ME,DSJ.LOGANY,StartTime,EndTime,0))
by ray.wurlod
Wed Jun 13, 2007 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim() with options L, T and B.
Replies: 20
Views: 4903

<unprintable response>

</unprintable response>
:wink:
by ray.wurlod
Wed Jun 13, 2007 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error The configuration does not contain the node !
Replies: 3
Views: 1177

Do you have the environment variable for the conductor node (APT_PM_CONDUCTOR_HOSTNAME) set?
by ray.wurlod
Wed Jun 13, 2007 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Partition error on View
Replies: 7
Views: 2077

You are stuck with sequential until you can be granted SELECT privilege to the table(s) on which the view is defined. Then you use the view-defining statement in your Oracle Enterprise stage instead of the view name. Argue to the DBA that only the DataStage user needs to be granted this privilege, a...
by ray.wurlod
Wed Jun 13, 2007 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning in change capture stage
Replies: 1
Views: 918

Do some detective work. Discover why this particular field is being assigned a default value. Could it be that you did not specify it, and have RCP enabled? Once you've discovered the cause, correct the cause.
by ray.wurlod
Wed Jun 13, 2007 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Abort after 129 iteration
Replies: 7
Views: 1977

They are searchable on the IBM "eServices" web site.
by ray.wurlod
Wed Jun 13, 2007 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Compilation Error
Replies: 5
Views: 1771

In particular look in and around line 20 of your routine. The error message complains of unexpected characters ".;" - can you see them there?
by ray.wurlod
Wed Jun 13, 2007 3:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About ODBC update action............
Replies: 17
Views: 5043

You still didn't define "performance".
:cry:
by ray.wurlod
Wed Jun 13, 2007 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set/Get Stage variables?
Replies: 15
Views: 8164

I still don't believe you need the named COMMON. I believe you could use a stage variable called svErrLog in exactly the same way. The named COMMON is not wrong, but does preclude you using this job or a fragment of it in a server shared container in a parallel job, if that's a consideration.
by ray.wurlod
Wed Jun 13, 2007 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: An Attempt to deploy a project using a shell script
Replies: 8
Views: 3118

What do you believe the "limitations of the dsadmin -listenv command" to be?

Does the script work in its present form?