Search found 42189 matches

by chulett
Tue Oct 21, 2008 10:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to get the count from the inputlink
Replies: 9
Views: 1973

It only "starts with 0" if you consider "no rows" as the starting state. But still, it's a simple count of the rows down the link, nothing more than that.
by chulett
Tue Oct 21, 2008 10:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting Character set (UTF8) in NON-NLS enabled environment
Replies: 14
Views: 8102

I'm afraid I don't really have an answer for that. Can you talk with the SQL Server DBA and find out what the equivalent of their NLS_LANG value is set to?
by chulett
Tue Oct 21, 2008 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejected Row still being transferred
Replies: 7
Views: 1919

You need a constraint on the other link as well, something to "not" the constraint logic on the reject link.
by chulett
Tue Oct 21, 2008 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to get the count from the inputlink
Replies: 9
Views: 1973

What? You get the count that went down the link - zero, one, eleventy-seven - whatever it was. :?
by chulett
Tue Oct 21, 2008 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to get the count from the inputlink
Replies: 9
Views: 1973

Sure, look up the DSGetLinkInfo function, use it with the DSJ.LINKROWCOUNT InfoType.
by chulett
Tue Oct 21, 2008 8:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting Character set (UTF8) in NON-NLS enabled environment
Replies: 14
Views: 8102

You need to find out what the actual NLS_LANG setting is for your target and use that in the job that writes to it. And if you really do need to use a different NLS_LANG setting, source v. target, then you'll need to split your job in two if you haven't done so already.
by chulett
Tue Oct 21, 2008 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: clearing log files at one shot
Replies: 14
Views: 5754

"CLEAR.FILE &PH&" simply clears that "phantom" directory in the attached project. There is no command to "clear all log files in one shot".
by chulett
Tue Oct 21, 2008 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replace null field in record with double pipe
Replies: 2
Views: 1358

Still confused, but if that's really what you want to do simply use the IsNull() function to check and if true then replace the value with two pipes:

Code: Select all

If IsNull(Link.Field) Then '||' Else Link.Field

Yes, for every column.
by chulett
Tue Oct 21, 2008 7:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mail Notification
Replies: 1
Views: 681

No, there's nothing to enable/activate for this. Talk to your SysAdmins if you are having a problem with 'sendmail' on your system, as that is what DataStage uses.
by chulett
Tue Oct 21, 2008 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: "Before Job SQL" in PX
Replies: 3
Views: 975

So does the OCI stage, but neither one is a PX "Enterprise" stage. :?
by chulett
Tue Oct 21, 2008 6:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Permissions from FTP Stage
Replies: 1
Views: 824

Permissions are usually up to the receiving system AFAIK. If you can telnet to the server, an 'after' command to 'chmod' the file can be attempted, but just because you can ftp doesn't necessarily mean you can telnet.
by chulett
Tue Oct 21, 2008 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to call stored procedure with in the before sub routine
Replies: 9
Views: 1693

Yes - "call unix scipt use Execsh option".
by chulett
Tue Oct 21, 2008 6:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Replace null field in record with double pipe
Replies: 2
Views: 1358

:? If you are writing to a pipe delimited file, then what you want to happen will happen automatically. What issue are you having?
by chulett
Tue Oct 21, 2008 6:45 am
Forum: General
Topic: where the job logs getting stored
Replies: 11
Views: 3447

As already noted, use "dsjob" with the various "-log" functions. Read the Server Job Developer's Guide chapter on the Command Line Interface for explanations of their use.
by chulett
Tue Oct 21, 2008 6:42 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Infinite Loop in Webservices Pack
Replies: 7
Views: 3305

For Designing the Polling process job we dont need RTI or webservices pack in Datastage? No. Polling for files has been around a heck of a lot longer than web services. So, there's no actual "arrival"? Meaning, they are not sent to you but rather you need to poll a remote system for their generatio...