Search found 53125 matches

by ray.wurlod
Thu Aug 31, 2006 3:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL*Loader -605:Non-data dependent ORACLE error occurred
Replies: 4
Views: 4325

Get the tablespace increased and/or made dynamic. There's nothing you can do in DataStage to overcome "tablespace full" in Oracle.
by ray.wurlod
Thu Aug 31, 2006 3:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Error In DataStage Enterprise Edition 7.5
Replies: 7
Views: 3805

Is your temp filespace full? Is the "cannot open compile.tmp" error happening when compiling other jobs too? Does inspecting the generated OSH reveal anything useful about the job's structure? (You need to resolve the latest problem or you won't even get that far.) Replace the Transformer stage with...
by ray.wurlod
Thu Aug 31, 2006 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Random Shuffling of input stream data in DS MVS jobs
Replies: 4
Views: 1915

But this is Mainframe edition. Surely there's a RND function in a standard COBOL library somewhere!
by ray.wurlod
Wed Aug 30, 2006 11:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data stage look up
Replies: 2
Views: 744

Welcome aboard. :D

Just use multiple links coming from the same hashed file (or other lookup source).

Can you be more precise about what you want to accomplish?
by ray.wurlod
Wed Aug 30, 2006 11:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error retrieving system catalog information for table
Replies: 3
Views: 884

Do you have the requisite SELECT privilege on the DB2 system tables needed to check table and column definitions, to verify that the metadata in your job design matches them.
by ray.wurlod
Wed Aug 30, 2006 6:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple commands from After-job Subroutine in JobProperties
Replies: 4
Views: 3444

Call one from an after-stage subroutine, the other from an after-job subroutine.
by ray.wurlod
Wed Aug 30, 2006 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data has been truncated
Replies: 2
Views: 1621

:idea:
"NULL" will not fit in Char(2)
by ray.wurlod
Wed Aug 30, 2006 6:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can I process files from a directory with a pattern
Replies: 9
Views: 3072

If they are all in the one directory you could use a Sequential File stage with the filter command

Code: Select all

cat /xxx/xxx/PBRCT*
(so that all rows from all these files (stdout from the cat command) become a single stream of data into your DataStage job).
by ray.wurlod
Wed Aug 30, 2006 6:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort the Sequence as soon as job logs 1 warning
Replies: 24
Views: 4753

Only four posts back on this very thread:
Director: Tools / Options / Limits - set it there. Keep in mind that this is not a global setting, but is a per user setting.

But it's applicable to every job started by the user, so it's fairly close to global.
by ray.wurlod
Wed Aug 30, 2006 6:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Aborted but still it loaded records
Replies: 5
Views: 1492

Lookups against what? That is, what stage types are feeding the reference input links? If Oracle, is the Oracle instance on the same machine as DataStage server, or remote from it?
by ray.wurlod
Wed Aug 30, 2006 6:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception raised in GCI subroutine:Access violation
Replies: 1
Views: 2809

You need to search earlier in the code to find a comment that shows the exact function to which PUT.Pin%%V0S75P2 is mapped. You can figure out that this is performing a"write" operation, and through which stage type. An access violation (attempt to access a memory address that you do not own) may be...
by ray.wurlod
Wed Aug 30, 2006 6:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stop Job
Replies: 6
Views: 1733

Most of what can be done in DS.TOOLS can also be done in Director client Tools > Cleanup Resources. This needs to have been enabled from the DataStage Administrator.
by ray.wurlod
Wed Aug 30, 2006 6:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Windows XP as DataStage Server
Replies: 17
Views: 8246

It remains the case that Windows XP is not a supported (certified) platform and that, therefore, IBM support are within their rights to be deaf to your pleas.
by ray.wurlod
Wed Aug 30, 2006 6:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job which track of the jobhistory, rowhistory,paramhistory
Replies: 18
Views: 4938

Why? They're all listed in JOBCONTROL.H (in the DSINCLUDE subdirectory in each project).
by ray.wurlod
Wed Aug 30, 2006 6:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC stage to connect to iseries
Replies: 6
Views: 1899

You should be able to stream 70 million rows in an hour or two. After that you can stream only the changed rows, if you have some way of detecting them.