Search found 53125 matches

by ray.wurlod
Tue May 20, 2008 4:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: kill process ids
Replies: 10
Views: 3075

You should NEVER kill DataStage processes. You risk turning child processes of the killed process into zombies (and there are other reasons also). Reboot your server to clear the process table.
by ray.wurlod
Tue May 20, 2008 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Row count generation
Replies: 13
Views: 3837

Notepad would be a good trick on UNIX. However, in vi you can use :set nu to make line numbers visible, and yank the appropriate row (line) from the file.
by ray.wurlod
Tue May 20, 2008 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting From Cobol file
Replies: 2
Views: 815

Import the COBOL file definition as a table definition. You can now read the data using a Complex Flat File stage or, indeed, a Sequential File stage.
by ray.wurlod
Tue May 20, 2008 4:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: add single quote in data
Replies: 6
Views: 2394

Search the forum for a parallel version of Ereplace().
by ray.wurlod
Tue May 20, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduling Options
Replies: 4
Views: 1323

Director limits your flexibility as it only provides what both operating system (UNIX and Windows) schedulers can offer. If you script it yourself you can use the full functionality of, for example, cron, for example to schedule every hour with one entry.
by ray.wurlod
Tue May 20, 2008 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Enterprise stage dynamic lookup
Replies: 8
Views: 2797

That's correct. Therefore you must have a stream input column that matches the lookup key column name and data type. This will be used to supply the value to be looked up. Use a Copy stage which can rename the column at no cost.
by ray.wurlod
Tue May 20, 2008 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: odbc stage
Replies: 2
Views: 1036

Faster hardware, faster network, faster ODBC driver, more efficient queries ...

What does "performance" actually mean in an ETL context?
by ray.wurlod
Tue May 20, 2008 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Database Connection limit exceeded error
Replies: 11
Views: 5959

Are you working with partitioned tables?
by ray.wurlod
Tue May 20, 2008 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Email body - send hyperlink with spaces inbetween
Replies: 1
Views: 1041

Use %20 rather than space in the URL.
by ray.wurlod
Tue May 20, 2008 4:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conditional Lookups where condition references an input col
Replies: 7
Views: 1359

At this point in time ARE there any input columns to the Lookup stage?
by ray.wurlod
Tue May 20, 2008 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJOBS table not being populated when using reorting assista
Replies: 8
Views: 1947

Usage Analysis will do some of those. You might also like to use/adapt the tools downloadable from Chuck Smith's or Kim Duke's websites.
by ray.wurlod
Tue May 20, 2008 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stored_Procedure_0,0: Operator terminated abnormally: receiv
Replies: 6
Views: 4523

Verify that you provided four argument values of appropriate data type to the stored procedure via the Stored Procedure stage.

Does the Stored Procedure stage expect a return value?
by ray.wurlod
Tue May 20, 2008 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to remove unwanted space at one column
Replies: 16
Views: 5674

Code: Select all

Right(Str("0",19) : InLink.TheString, 19)
by ray.wurlod
Tue May 20, 2008 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: odbc connection problem
Replies: 3
Views: 2401

The problem is internal to the ODBC stage. OpenPath is the BASIC function for opening a directory or pathed hashed file, and it is this that has thrown the first error message. Since you have read and execute permission, then something else is the cause. Did you check the permissions used by the exe...
by ray.wurlod
Tue May 20, 2008 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Operator Role Issues - Jobs not Found
Replies: 8
Views: 1336

Read my post again. The Operator role is not changed, and it is the most restrictive. I guess you could fiddle about with operating system group membership and permissions to prevent operators from running jobs (for example denying them access to some crucial executable), but I can not presently thi...