Search found 42189 matches

by chulett
Tue Nov 25, 2008 8:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot get exclusive access to log
Replies: 6
Views: 3945

Right, that would be the typical reason for that message - someone "viewing" the log messages via the Direcor.
by chulett
Tue Nov 25, 2008 8:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Question regarding communication b/w ETL server and DB
Replies: 2
Views: 1182

Unless you play some games and contain everything within a single stage, data will "flow between" the ETL Server and the DB Server in all cases. And with both source and target db connections in the job, data will flow "back and forth".
by chulett
Tue Nov 25, 2008 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle Stored procedure from DataStage Server job
Replies: 4
Views: 3537

:? What have you tried? Oddly enough, the Stored Procedure stage would be the first thing to try.
by chulett
Tue Nov 25, 2008 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can i use convert function in this scenario?
Replies: 4
Views: 1664

So, what was the resolution?
by chulett
Tue Nov 25, 2008 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Jobs. Design issue or not ?
Replies: 9
Views: 5945

Re: Sequence Jobs. Design issue or not ?

"Code" tags preserve whitespace. Here is a overview of the Sequence job. Loop Companies (General Job Processing) Loop Project Files for Companies (General Processing) Check if File is Empty (Nested Condition ) if not empty then process otherwise go to sequencer Loop Projects ...
by chulett
Tue Nov 25, 2008 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record format error when converting XML data
Replies: 12
Views: 4421

Our resident XML Guru Ernie Ostic has posted the details in his blog, everything should be there:

http://dsrealtime.wordpress.com/2007/12 ... -a-source/

Basically you use it to do an "ls" to capture what the XML stage needs and then tell that stage where to find the file.
by chulett
Tue Nov 25, 2008 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trigger in sequence not recognising the command output
Replies: 3
Views: 6725

That's kind of overkill, one or the other should work but the basics are sound. The output is a dynamic array and what you are not seeing (or taking into account) are the Field Marks between the elements. Either remove them or just check the first element. Some examples below, not an exhaustive list...
by chulett
Tue Nov 25, 2008 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to make this condition in Job Sequence Restartability
Replies: 13
Views: 4433

No, anything at that level would be too late. That would abort the Sequence itself and possibly any currently running jobs as well, not the one that ended with warnings.
by chulett
Mon Nov 24, 2008 5:15 pm
Forum: General
Topic: IsNull Constraint
Replies: 3
Views: 1066

Yes, it's a Boolean function so it either returns true or false and the Not() function reverses the results. The other is a Link Variable Boolean and is automatically set for the lookup. And all I was saying was that I prefer using it (anywhere) to check for hashed file lookup success/failure rather...
by chulett
Mon Nov 24, 2008 5:04 pm
Forum: General
Topic: IsNull Constraint
Replies: 3
Views: 1066

IsNull(Field) = 0 is the same as Not(IsNull(Field)) as zero is false and any non-zero value is true. Nulls are always returned from a failed hashed file lookup.

I prefer using the NOTFOUND link variable nowadays.
by chulett
Mon Nov 24, 2008 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Excel Data
Replies: 1
Views: 806

Since you are on a Windows server, the ODBC stage is your man. I'd suggest searching for "ODBC Excel" as this has been discussed here in the past. A lot.
by chulett
Mon Nov 24, 2008 2:20 pm
Forum: Site/Forum
Topic: Is there a group rate available for DSXChange membership?
Replies: 1
Views: 2362

There is this, I assume it is still valid:

http://www.dsxchange.com/viewtopic.php?t=106971
by chulett
Mon Nov 24, 2008 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to make this condition in Job Sequence Restartability
Replies: 13
Views: 4433

Sequence level would be too late, so you need to handle it "in job". Several ways, some off the top of my head... Set the warning level when the job runs very low. Send problems down a reject link set to abort on the first record. Check the JOBINTERIMSTATUS after job and abort the job if is says it'...
by chulett
Mon Nov 24, 2008 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to make this condition in Job Sequence Restartability
Replies: 13
Views: 4433

Oh, so the issue is the one that ended with warnings does not rerun? Your jobs need to Abort as well, so you'll need to ensure it aborts as well whenever there are any warnings in it.
by chulett
Mon Nov 24, 2008 12:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing Files to Windows File System
Replies: 3
Views: 1250

I assumed (perhaps inappropriately) that it was mounted in some fashion to the UNIX server - NFS, Samba, whatever.