Search found 53125 matches

by ray.wurlod
Wed Apr 26, 2006 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tracking Status of Execute Activity
Replies: 4
Views: 967

I need the same email (Job control routine) to handle both success and failure. Write it as a transform function and invoke it through a Routine activity. Should I get the Execute Activity name if it calls my job control routine to send out the email? No. Use separate Notification activities, or pr...
by ray.wurlod
Wed Apr 26, 2006 4:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append YYYYMM to filename
Replies: 7
Views: 1358

The back quotes around the date command is a technique only available in UNIX shell scripts. If you have a UNIX-on-Windows, such as Cygwin or MKS Toolkit, then you could use your proposed approach. Otherwise an after-job subroutine, as Ken suggests, is probably easiest. Though I would have generated...
by ray.wurlod
Wed Apr 26, 2006 4:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to import the table
Replies: 6
Views: 1290

Try using a Filter on table name or owner. Overflow can occur when there are too many tables in the database.

It can also occur (theoretically) when there are too many columns in a table, but I have never seen this actually happen.

What does your support provider have to say?
by ray.wurlod
Wed Apr 26, 2006 4:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Terminating abruptly and getting locked
Replies: 21
Views: 4892

Best practice is to avoid aborting jobs from being locked by not having their log or monitor open while they are running. You should be able to log out processes using the Cleanup Resources tool in Director. Be extremely careful to ensure that you have identified the correct process, and log out any...
by ray.wurlod
Wed Apr 26, 2006 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with some sequences compilation
Replies: 16
Views: 2796

Client permissions do play a role when compiling job sequences, because some of the pre-compilation is to craft a temporary XML document on the client.
by ray.wurlod
Wed Apr 26, 2006 4:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Oracle 10g
Replies: 9
Views: 1600

I suspect Zabeerulla is on UNIX and is paying the price for hijacking a thread about a problem on Windows.

If on UNIX then you do need to edit the three files indicated.
by ray.wurlod
Wed Apr 26, 2006 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: help! -- i want data from 3 rows to transpose into 3 cols
Replies: 8
Views: 1833

This is exactly the task (horizontal pivot) that the Pivot stage performs.
by ray.wurlod
Wed Apr 26, 2006 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error reading data from universe
Replies: 3
Views: 843

Try either of the following.

(1) Put the key value on the Selection tab inside single quotes.

(2) Replace the explicit key value with an appropriate clause (a WITH clause (without the WITH) for a Hashed File stage, a WHERE clause (without the WHERE) for a UV stage).
by ray.wurlod
Wed Apr 26, 2006 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write Failed for hash File
Replies: 8
Views: 1945

Write the data into a text file then use a hex editor (UltraEdit is good, and free for 45 days) to see exactly what you're trying to write. Post results here.
by ray.wurlod
Wed Apr 26, 2006 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS setting for Hashed file??
Replies: 2
Views: 2290

The NLS map associated with a DataStage hashed file should always be NONE, because the hashed file is "inside" DataStage; characters have already been mapped at the boundaries between external data and DataStage.
by ray.wurlod
Wed Apr 26, 2006 4:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Query Stage Names from Universe
Replies: 10
Views: 2596

Or make your page wider. :idea:
by ray.wurlod
Wed Apr 26, 2006 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_loadlibrary: Win32 error in LoadLibrary of dsstp.so
Replies: 4
Views: 1506

Precisely HOW are you "moving from UNIX to Windows"? Did you re-compile jobs and routines after the migration? It may be that the executables contain references to the UNIX shared libraries (the files with a ".so" or ".sl" suffix to their names).
by ray.wurlod
Wed Apr 26, 2006 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command not working
Replies: 9
Views: 3044

This is NOT a DataStage problem. It is purely a problem between the keyboard and the chair, where you do not understand that each executable has to be findable, either because you enter its full pathname or because you have its directory in your command search path (recorded in the PATH environment ...
by ray.wurlod
Wed Apr 26, 2006 4:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Osh: What is it good for?
Replies: 9
Views: 3626

DataStage jobs execute the generated osh. You can find the shell scripts that organize all of this in the RT_SCnnn directory, where nnn is the job number from DS_JOBS. I also find it useful sometimes to inspect the generated osh (perhaps in conjunction with the job log) to diagnose those little irks...