Search found 53125 matches

by ray.wurlod
Mon Nov 07, 2011 11:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata load takes longer time
Replies: 4
Views: 1414

Tell us how you've configured the target Teradata Connector.
by ray.wurlod
Mon Nov 07, 2011 11:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in Job design
Replies: 13
Views: 3747

What is the source? If it's a Data Set and there's no repartitioning, it should be very fast. On the other hand if it's a database view that's based on a correlated subquery with joins to huge tables, then it's going to be very slow.
by ray.wurlod
Mon Nov 07, 2011 11:12 pm
Forum: General
Topic: What is meant by Information Services Director
Replies: 3
Views: 1523

Information Services Director is one of the components of IBM InfoSphere Inforamtion Server (just like DataStage and Information Analyzer are components). The function of Information Services Director is to provide the environment in which jobs can be exposed as services that can be invoked by web c...
by ray.wurlod
Mon Nov 07, 2011 9:16 pm
Forum: General
Topic: Best way to Log a File's Arrival
Replies: 4
Views: 1027

In a Routine activity invoked from a sequence (which might include a Wait For File activity) you can use the OpenSeq statement to open the file (without reading it), then the STATUS statement can return the file's size and lots of other information about the file. Once you have that, simply close th...
by ray.wurlod
Mon Nov 07, 2011 6:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in Job design
Replies: 13
Views: 3747

Don't "believe". Check. Test.
by ray.wurlod
Mon Nov 07, 2011 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage issue with updates
Replies: 13
Views: 5890

The other output contains data for the fact table. Yes, it's mandatory.
by ray.wurlod
Mon Nov 07, 2011 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim a string
Replies: 1
Views: 982

Not using the Trim() function - it can only specify one character to trim. However, you can use the Convert() function with a second argument of "". Or you could use nested Trim() functions if there are few characters to be trimmed or you need to trim only from one end, etc.
by ray.wurlod
Mon Nov 07, 2011 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Connector stage Performance Query
Replies: 10
Views: 11188

Replace the target stage temporarily with a Peek stage to isolate where the slowness may be.
by ray.wurlod
Mon Nov 07, 2011 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in Job design
Replies: 13
Views: 3747

Lookup stage seems reasonable, if the smaller Data Set is the reference data and its rows are not exceedingly wide. That is, the reference Data Set can be loaded into memory. Replace the target stage with a Peek stage temporarily, to isolate which part of the job (lookup or Teradata) is the slow part.
by ray.wurlod
Mon Nov 07, 2011 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Inserting Pipe in data
Replies: 3
Views: 1498

Using a BASIC Transformer stage use the derivation expression

Code: Select all

Convert(@TM,"|",Fmt(InLink.TheString,"3L"))
by ray.wurlod
Mon Nov 07, 2011 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running job the source table locked.
Replies: 1
Views: 1145

Try a Search of DSXchange for "deadlock". Others HAVE experienced deadlocks in databases.
by ray.wurlod
Mon Nov 07, 2011 3:05 pm
Forum: General
Topic: Transformer Stage extra information column
Replies: 2
Views: 1143

"<none>" indicates that there is no description for the field, whether imported from the database or added manually during the import process or subsequently. "searchable" indicates whether or not the column in the database is indexed. This is determined at the time that the tabl...
by ray.wurlod
Mon Nov 07, 2011 3:02 pm
Forum: General
Topic: unable to connect datastage After restart datastage server
Replies: 3
Views: 2939

The DataStage RPC daemon failed to start.
by ray.wurlod
Mon Nov 07, 2011 3:02 pm
Forum: General
Topic: Obtaining the Query (SQL Statement) by routine
Replies: 4
Views: 4914

I don't believe so. You could, however, query the DS_JOBOBJECTS table, restricting the OLETYPE to the appropriate link type (for example CCustomOutput). Location of the actual SQL within the DS_JOBOBJECTS record will depend on whether it's generated or user-defined SQL and, indeed, on which Oracle s...
by ray.wurlod
Mon Nov 07, 2011 2:57 pm
Forum: General
Topic: Background information about a job
Replies: 12
Views: 3027

Yes, you're missing quotes. Please try to diagnose it yourself (anxious to help you to learn, here).

We'll help if you really truly can't solve it.