Search found 53125 matches

by ray.wurlod
Thu Jun 15, 2006 2:21 am
Forum: General
Topic: Job Searching Facility
Replies: 7
Views: 2519

In Director you can choose (in the View menu) to disable the display of Categories, which will give you a single list of all the jobs in the project. It should be able to refresh 180 jobs in an acceptable time.
by ray.wurlod
Thu Jun 15, 2006 2:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best way of creating a list of jobs
Replies: 7
Views: 1431

You're going to have to loop through something. If you have guaranteed reports from all jobs you can loop through those instead.
by ray.wurlod
Thu Jun 15, 2006 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in joining 2 tables
Replies: 12
Views: 2648

Rename the columns in an upstream Copy or Modify stage so that the key column names do match.
by ray.wurlod
Thu Jun 15, 2006 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage OSH system process PID Tracking
Replies: 2
Views: 2540

APT_PM_SHOW_PIDS will cause player processes to log a message on startup indicating their process IDs. APT_PM_NO_SHARED_MEMORY can force player processes to use TCP/IP sockets instead of shared memory for inter-process communication on an SMP environment. You can restrict memory usage in the Sort st...
by ray.wurlod
Thu Jun 15, 2006 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup direct from Oracle database
Replies: 6
Views: 1287

It's more to do with the number of distinct values that are likely to be looked up. If this is "small" (they have never quantified what this means), then a sparse lookup is likely to be beneficial.
by ray.wurlod
Thu Jun 15, 2006 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Estimating memory usage requirement of a DS Job
Replies: 2
Views: 1048

There are more facilities to be available in the next ("Hawk") release to allow for resource monitoring and estimation.
by ray.wurlod
Thu Jun 15, 2006 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sybase parallel extract
Replies: 3
Views: 1259

Was the Sybase IQ table partitioned? Search the forum for how DB2 users included the partitioning variables in the WHERE clause.
by ray.wurlod
Thu Jun 15, 2006 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while using FTP enterprise stage to read a record
Replies: 6
Views: 1690

It should not be necessary. The cd command should suffice.
by ray.wurlod
Wed Jun 14, 2006 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: aggregator
Replies: 7
Views: 2376

System variables and/or stage variables can be used to count things without the need to introduce an Aggregator stage.

Conceptually the Aggregator stage behaves like SQL, but physically it works differently. This is, and should be, transparent.
by ray.wurlod
Wed Jun 14, 2006 11:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while using FTP enterprise stage to read a record
Replies: 6
Views: 1690

The URI property is documented as follows. Type: Pathname Name of the URI to get or put the file from or to.It can be more than one occurence. Supports limited wild carding. The expected syntax is m[:port]/URIpath You need to make sure that the URI path points to where your file actually is. If you ...
by ray.wurlod
Wed Jun 14, 2006 11:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup direct from Oracle database
Replies: 6
Views: 1287

Without a sparse lookup the entire table is loaded into a virtual Data Set against which lookups are performed.
by ray.wurlod
Wed Jun 14, 2006 10:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Key Expression
Replies: 5
Views: 1413

The way I described is easy. You already have the hashed file. Is it in the account? If so you can use a UV stage to refer to it directly. If not, you need to use SETFILE to create a pointer before using the UV stage. The UV stage treats the hashed file as a regular database table, so you will be ab...
by ray.wurlod
Wed Jun 14, 2006 10:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator mis behave and slow down when we correct it
Replies: 12
Views: 4732

decimal[1,0] is a tiny number (at most one digit). I think you need to correct a typing error in your metadata. You are getting much larger numbers (with up to 14 digits) to load into this field.
by ray.wurlod
Wed Jun 14, 2006 6:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trouble with special characters using FTP Stage
Replies: 3
Views: 1171

Sounds like your best approach is to run the FTP via an Execute Command activity (or a before-job subroutine ExecSH or ExecSHSilent) and process the local file, rather than to use the FTP stage.
by ray.wurlod
Wed Jun 14, 2006 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert field with SQL type as BIT to Integer
Replies: 12
Views: 3023

What's the source database?

Try changing the derivation of that column to

Code: Select all

CAST(FieldName AS INTEGER)
and changing its data type within DataStage also to INTEGER. If it's truly a bit type this is a legal cast.