Search found 53125 matches

by ray.wurlod
Mon Apr 16, 2007 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting a file from DataStage server routine
Replies: 7
Views: 3757

System(91) is specifically there to answer the Windows/UNIX question.
by ray.wurlod
Mon Apr 16, 2007 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration Term not clear
Replies: 1
Views: 714

a) SMP, cluster and grid environments are all supported b) that's true, so what don't you understand? i) no - there is only one kind of job sequence, and it can invoke any mix of server jobs, parallel jobs and other job sequences ii) BASIC Transformer or server job or server job components in server...
by ray.wurlod
Mon Apr 16, 2007 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: server and parallel migration
Replies: 8
Views: 2095

Etiquette Note
Do not hijack threads. This question is not sufficiently closely related to the original subject. Please begin a new thread.
by ray.wurlod
Mon Apr 16, 2007 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Nullability
Replies: 5
Views: 1426

The Aggregator stage has a property that allows you to specify that NULL output is permitted.

If the thread is resolved, please add a post that explains what the resolution was.
by ray.wurlod
Mon Apr 16, 2007 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difference betwn transformer and basic transformer in PX
Replies: 13
Views: 3641

Search the forum. This technique has been explained in full at least five times.
by ray.wurlod
Mon Apr 16, 2007 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim issues
Replies: 12
Views: 3526

Tip: You can treat the single character as an integer to get its ASCII code.

Question: what if NLS is enabled?
by ray.wurlod
Mon Apr 16, 2007 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can't access db2 table after loading
Replies: 8
Views: 2080

Get your DBA to trace what is happening. For example, are locks not being released, are indexes being left in an inconsistent state? Use your DB2 documentation to learn what "reason code 1" is. Do you have SELECT as well as INSERT privilege on the table in question? Are you naming the correct table ...
by ray.wurlod
Mon Apr 16, 2007 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing date parameter
Replies: 17
Views: 3703

The word you were looking for is "would". Since sysdate - 5 is before sysdate - 1 try reversing the order in the BETWEEN constraint. Also I'm not sure that sysdate is a function. But I'm not in a position to check right now. If it's not, you need to lose the parentheses from it - that is, use SYSDAT...
by ray.wurlod
Mon Apr 16, 2007 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using the delimiter character (ý) in sequential
Replies: 10
Views: 4804

Char(248) through Char(255) are reserved characters in DataStage; they are the dynamic array delimiter characters. You are wise not to use them for any other purpose in server jobs. Pre-process your source file to replace any character in this range with a suitable equivalent, perhaps from Control S...
by ray.wurlod
Mon Apr 16, 2007 2:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calling SQL Server Stored Proc via ODBC stage
Replies: 1
Views: 872

Welcome aboard. :D

Parallel jobs do not necessarily abort if a particular stage aborts. This is different from server behaviour. You can create job sequence or after-job subroutine to detect whether any messages with Fatal serverity were logged, and deal with them accordingly.
by ray.wurlod
Mon Apr 16, 2007 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling job
Replies: 7
Views: 2485

Thanks for the responses!! I was thinking along the same line. Probably I will have to run them on a more efficient server. I was just wondering whether it had anything to do with improper job design (like too many nested calls, for example Seq calls a sequencer, which then calls another Batch, whi...
by ray.wurlod
Mon Apr 16, 2007 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error calling job
Replies: 7
Views: 2485

:!: The lock tables are almost never the issue here. Don't fiddle with these parameters (nor GSEMNUM, probably the most important of all, which Nagesh failed to mention) unless you know what you are doing. You can render DataStage incapable of starting with unwise selections.
by ray.wurlod
Mon Apr 16, 2007 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing HashFiles
Replies: 12
Views: 2327

Does this hashed file exist?

If not, you will need to create it using an mkdbfile command or by validating or running a DataStage job in which it appears.

The Hashed File Calculator will generate an appropriate mkdbfile command.
by ray.wurlod
Mon Apr 16, 2007 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ouput to Excel on Multiple Sheets
Replies: 18
Views: 5517

You don't need a workaround - we have given the solution
by ray.wurlod
Mon Apr 16, 2007 2:34 pm
Forum: General
Topic: How to make the logs more informative
Replies: 2
Views: 1015

What's there is there. Click on the Environment... button once in the project properties dialog. However, what you see there are the project default settings. As a general rule it is unwise to set project-wide defaults (except when setting up the project). In all cases you can override these default...