Search found 42189 matches

by chulett
Wed Nov 10, 2004 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Custom Trigger code in Sequence
Replies: 5
Views: 1755

First off, I (personally) would never code specific status codes into custom triggers like that, there's really no need. You're much better off using the defined triggers in this case - most cases, actually. Have one link that goes forward to the next step with a 'Ran OK' trigger. For your error pat...
by chulett
Wed Nov 10, 2004 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: new line generated at the end of the source file
Replies: 5
Views: 1187

Well, the 'overhead' of a simple constraint like that would be negligible, so if it is working for you I probably wouldn't worry about it. That being said... There are ways on UNIX where the last line can be stripped in the Filter box of the Sequential File stage, or via some kind of 'pre-processing...
by chulett
Wed Nov 10, 2004 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Refuses to run job or run scheduled job.
Replies: 12
Views: 3288

On UNIX, grep for 'dsrpcd'. However, I'm a little confused. You said that jobs won't run but can be reset (something along those lines), which would imply that you can connect to the server in question. Then you say that 'dsadm' can't log in via any client tools to the server. The question about dsr...
by chulett
Wed Nov 10, 2004 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Basic WriteSeq
Replies: 20
Views: 7732

Morney, that was mentioned earlier in the thread. However, the question posted was specifically how to do this in BASIC, hence this long and winding road... :wink:
by chulett
Wed Nov 10, 2004 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RTI passive stage Error - SOAP over HTTP
Replies: 2
Views: 922

A couple of points: There is a forum specific to RTI/SOA, so you'd be better off posting there. I don't have any direct experience with RTI, but from what I've seen simply having a hash file in a job wouldn't be a problem. Building one, using the traditional server/batch model, would however. That h...
by chulett
Wed Nov 10, 2004 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP connection
Replies: 8
Views: 2807

So, Guy... does this mean your problem is solved well enough or are you still expecting something from this thread? :?
by chulett
Tue Nov 09, 2004 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Basic WriteSeq
Replies: 20
Views: 7732

You know, I think you may be right. :? I was under the impression from when I did this kind of thing many moons ago that I had to use WeofSeq to avoid... unpleasant results.

Kind of boggles the mind, but Ray [gasp] might be wrong!
by chulett
Tue Nov 09, 2004 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Basic WriteSeq
Replies: 20
Views: 7732

ray.wurlod wrote:You don't need WeofSeq at the end. CloseSeq will write an end of file mark if you have written to the file.

Well, ok then... nevermind. Pay no attention to the man behind the curtain.
by chulett
Tue Nov 09, 2004 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A question on namespaces
Replies: 8
Views: 1765

This is an example of what Craig called "hard coding the second argument". For lack of a better term. Hopefully people understand any number of parameters can be passed by the transform to whatever is underneath without the user knowing it's going on - just had no idea what to call it at oh-dark-th...
by chulett
Tue Nov 09, 2004 12:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP zip file
Replies: 6
Views: 3366

You can't use the FTP stage with a zip file. You could unzip the file using the Filter command area and read in the results. Mostly. Sorta. :wink:

As Ken notes, if you just want to move it, use the 'normal' command line / scripted ftp command.
by chulett
Tue Nov 09, 2004 12:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: excel files
Replies: 2
Views: 796

Curious if you've tried searching the forum for the keywords 'excel' and 'ODBC'? There are quite a number of posts on the subject, perhaps an answer to your question lies there somewhere.

Either that or explain in more detail the problem you are having. :?
by chulett
Tue Nov 09, 2004 12:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Basic WriteSeq
Replies: 20
Views: 7732

That's true. Just start overwriting and then truncate the remainder of it at the end. :wink:
by chulett
Tue Nov 09, 2004 11:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Basic WriteSeq
Replies: 20
Views: 7732

You can't 'insert' records into a sequential file. You'd have to write the header record out to a new file and then write the contents of the original file to it after that.
by chulett
Tue Nov 09, 2004 11:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Basic WriteSeq
Replies: 20
Views: 7732

If you want to 'truncate' the sequential file before you start writing to it, use (from memory) WEOFSeq first.