Search found 53125 matches

by ray.wurlod
Mon Apr 30, 2007 12:37 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Datastage SOA Edition Trial Version
Replies: 1
Views: 1915

Under the previous (Ascential) regime you organized trial versions through your vendor. It was the vendor's call whether or not to do this, and that depended primarily on the perceived likelihood of a sale. I have no reason to believe that this strategy has changed.
by ray.wurlod
Sun Apr 29, 2007 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Certification
Replies: 3
Views: 1505

As wrong.
by ray.wurlod
Sun Apr 29, 2007 2:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection Error
Replies: 24
Views: 8052

(There was no backed up version). We have been running for the last two days without issue. There is also a patch coming for this version. Cheers And the moral of THIS story is... ? (I very much doubt that there will be a patch coming to cover the situation that you have no backup. Though the good ...
by ray.wurlod
Sat Apr 28, 2007 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: auto-purging job's log
Replies: 6
Views: 1815

A simple Search would have revealed that the function already exists on DSXchange.
by ray.wurlod
Sat Apr 28, 2007 2:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduling jobs using Unix Script
Replies: 5
Views: 1182

A project contains all your jobs. You do not - indeed can not - "run" the project. You can run all the jobs in the project, at least in theory, but in what order should they be run, and do you want to include dependencies (even as simple as JobA must succeed and only then can JobB start). This level...
by ray.wurlod
Fri Apr 27, 2007 9:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: auto-purging job's log
Replies: 6
Views: 1815

Yes. A routine that steps through all the jobs, purging the job logs and reinstating/reconstructing the control records. But do you want to archive them first?
by ray.wurlod
Fri Apr 27, 2007 9:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: desing of datastage job issue
Replies: 3
Views: 1372

Looks like the date ranges between these intervals is what's required. Is this so?
by ray.wurlod
Fri Apr 27, 2007 6:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use Datastage API Function
Replies: 1
Views: 1059

Call the function supplying values for the arguments (the job handle needs to have been assigned by an earlier invocation of DSAttachJob() of course). This particular function returns an integer, which is the event number that you can supply to DSGetLogEntry().
by ray.wurlod
Fri Apr 27, 2007 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Enterprise Stage - Response Buffer Error
Replies: 4
Views: 2381

The buffer in question is not the DataStage buffer size - it's the query result buffer size in Teradata. The error message was generated by Teradata. Check with the DBA.
by ray.wurlod
Fri Apr 27, 2007 6:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems with dsjob running VERY slow
Replies: 5
Views: 3741

If it's only startup that's slow, it might be that there are thousands of old entries in the &PH& subdirectory. You can lose all of them.
by ray.wurlod
Fri Apr 27, 2007 6:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while opening Datastage components
Replies: 4
Views: 1336

DS_LICENSE is a hashed file. You may have had a temporary aberration with the T30FILE table being full.

Otherwise, as noted, ensure that all users have write permission to DS_LICENSE and its two subfiles DATA.30 and OVER.30.
by ray.wurlod
Fri Apr 27, 2007 6:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrapper Stage
Replies: 12
Views: 2973

Read each warning carefully - the name of the stage and explanatory text is given, often with other diagnostic information. Why not post one of the warnings, together with your understanding of what it is telling you? If you have version 8.0 there is also an error codes reference manual, though this...
by ray.wurlod
Fri Apr 27, 2007 6:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal Archirecture of DATASTAGE PX
Replies: 3
Views: 1072

As noted in my reply to your private email, this would entail a substantial investment of time, and therefore would need to be billable time. As far as I am aware there is little documentation about the architectures in the public domain - you get some on training classes but not that much - and non...
by ray.wurlod
Fri Apr 27, 2007 6:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do you capture all the errors?
Replies: 11
Views: 2817

The only tool that can capture logic errors into a text file is a text editor. Logic errors can only be solved by brainpower, perhaps using tools such as the Debugger or active stage tracing.
by ray.wurlod
Fri Apr 27, 2007 6:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: simple if statemnet
Replies: 8
Views: 1724

NULL and 1 can only return NULL - such is the nature of NULL Try putting the IsNull() test first. Trim(" ") can never be "". If there are spaces, one space is always left. Prefer the Len() function. Is this an expression, or code in a routine? If it's an expression it must be all on one line. If IsN...