Search found 53125 matches

by ray.wurlod
Wed Dec 19, 2007 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue while executing SQL proc from DS
Replies: 3
Views: 1368

No. If the database server does not send DataStage any information then there's no way that DataStage can act/react. And there are no settings within DataStage that govern which errors/warning are or are not sent from SQL Server. At least none of which I am aware.
by ray.wurlod
Wed Dec 19, 2007 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ulimit -a shows different with the same id
Replies: 17
Views: 8698

Routines run from the test grid are executed by dsapi_slave. It is that user whose data stack size is limited. You can not infer anything from this. You need to execute the ulimit -a command from within a running job (perhaps as a before-job subroutine via ExecSH) to find out what's really happening.
by ray.wurlod
Wed Dec 19, 2007 4:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Running Logic
Replies: 40
Views: 5322

There must be no space between the activity variable name ($CommandOutput) and the "<" character.
by ray.wurlod
Wed Dec 19, 2007 4:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job sequencer aborts
Replies: 4
Views: 903

It isn't C:\Test.txt though, is it? The error message complains about /PROD/etl/Prod_Folder/CLIENT/LH/holdings.TXT as the file that could not be found. Presumably it is the file created by the first job - can you confirm whether this is the case? Then you will need to diagnose why and how the second...
by ray.wurlod
Wed Dec 19, 2007 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: attaching 0 before an integer
Replies: 5
Views: 1311

You've all missed the vital Len() function. Assuming the target is a string data type:

Code: Select all

Str('0',11-Len(input column)):input column 
The conversion to string for the Len() function will occur implicitly.
by ray.wurlod
Wed Dec 19, 2007 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difference between lookup, join and merge in datastage
Replies: 2
Views: 5131

Define "efficient" in this context. Each stage performs a different tasks - that's why more than one stage type exists.

Is this an interview question?
by ray.wurlod
Wed Dec 19, 2007 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IN clause in transformer
Replies: 11
Views: 10367

What about "E" ?!!
by ray.wurlod
Wed Dec 19, 2007 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while compaling in tranformar stage
Replies: 9
Views: 2099

You will probably find that the Visual Studio C++ compiler needs to be installed before DataStage server. So you're probably looking at uninstalling DataStage server too.
by ray.wurlod
Wed Dec 19, 2007 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: uvsh command running for long time
Replies: 4
Views: 1979

Redirection within DataStage/SQL is not permitted. The required permutation is

Code: Select all

$DSHOME/bin/uvsh "select * from DS_JOBS;" > jobname.txt
by ray.wurlod
Wed Dec 19, 2007 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Jobs Complilation problem
Replies: 11
Views: 3846

It's a reasonable assumption. Only Transformer and Build stages require the C++ compiler. The fact that /opt/SUNWspro/bin/CC was not found suggests that the compiler is not actually at that location. Find out where it really is, and set APT_COMPILER and APT_LINKER environment variables accordingly.
by ray.wurlod
Wed Dec 19, 2007 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to transfer file from Mainframe to UNIX
Replies: 9
Views: 2307

These will be speific to your site. We can not advise. Consult your network administrator.
by ray.wurlod
Wed Dec 19, 2007 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job aborted because of heap size
Replies: 8
Views: 3172

Time to mark the thread as Resolved?
by ray.wurlod
Wed Dec 19, 2007 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLPrepare problem
Replies: 5
Views: 1585

Whenever a BCI function returns SQL.ERROR you must remove the error information from the handle. It is pointless proceeding until you have done this. Repetitively call SQLError() until it returns SQL.NO.MORE.DATA. Search the forum for examples. You can not simply assume that everything works when us...
by ray.wurlod
Wed Dec 19, 2007 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job locked, clean up resources not working
Replies: 12
Views: 5123

I suspect that the job itself had been deleted but the index(es) had not been updated. DS.REINDEX does not remove deleted jobs from the Repository, but will remove out-of-date references to deleted jobs from Repository indexes.

The command to remove partially deleted jobs is DS.CHECKER.
by ray.wurlod
Wed Dec 19, 2007 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple SQL statements in ODBC stage
Replies: 1
Views: 931

Not possible. And what you're doing has to be done in a stored procedure; the ODBC stage only permits regular DML statements. In DataStage you would be easier selecting week (and year) and performing the transformation to quarter within a Transformer stage. Use a single query. SELECT W_wk, Y_YR FROM...