Search found 42189 matches

by chulett
Fri Dec 30, 2011 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Validation
Replies: 5
Views: 1427

vskr72 wrote:All the values are set to 0.000.
That shouldn't have anything to do with your validation check, all that does is either pass along the original value if it is deemed valid or replace it with a null. Look elsewhere for your "all are set to zero" issue.
by chulett
Fri Dec 30, 2011 11:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Validation
Replies: 5
Views: 1427

What results do you get?
by chulett
Fri Dec 30, 2011 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to handle new line termination for a field
Replies: 11
Views: 4192

Could you explain for us the issue you are seeing and what things you've tried? Thanks.
by chulett
Fri Dec 30, 2011 7:31 am
Forum: General
Topic: Errors were detected during project creation,project unstabl
Replies: 3
Views: 2101

Re: Errors were detected during project creation,project uns

Me, I'd start with this:
chandra.shekhar@tcs.com wrote:Please contact your support provider if you encounter problems.
by chulett
Fri Dec 30, 2011 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fixed width file metadata
Replies: 4
Views: 1656

That would be the proper choice, what "did not work" about it?
by chulett
Thu Dec 29, 2011 7:06 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Getting data from Sharepoint
Replies: 5
Views: 5076

Moved to the SOA forum, split into its own post.
by chulett
Thu Dec 29, 2011 7:05 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Web Sevices Client using Webmethod GetListItems
Replies: 2
Views: 3514

Moved to the SOA forum.
by chulett
Thu Dec 29, 2011 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Full Outer of 3 files...
Replies: 5
Views: 1352

Nope... at least not that I'm aware of.
by chulett
Thu Dec 29, 2011 8:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF file output Multiplied
Replies: 4
Views: 1808

Basically, yes. However you have an "OCCURS DEPENDING ON" rather than a simple "OCCURS" clause meaning while they can repeat up to 32600 times the values in the group will repeat the number of times stored in COL7. Now, as to the CFF stage, I don't recall if it supports "DEP...
by chulett
Thu Dec 29, 2011 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read Excel file in datastage 8.7 without converting e
Replies: 6
Views: 5337

No, sorry but that's not correct. You can only read it as a sequential file if you've converted each worksheet to one first, be it csv or tab delimited or whatever you like. Before that they are more akin to a database with each individual worksheet acting like a table. To read one natively you'd ne...
by chulett
Thu Dec 29, 2011 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to handle newline character reading from sequential file
Replies: 24
Views: 19263

If you've read the wiki, you should have found that they relate back to two operations performed by the original manual typewriter - a carriage return and a line feed. The former moved the print position back to the beginning of the 'line' and the latter moved the print line down one. We tend to cal...
by chulett
Wed Dec 28, 2011 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: One of the regular warning
Replies: 6
Views: 1475

But not marked as such... there. Now it's resolved.
by chulett
Tue Dec 27, 2011 10:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC File reading
Replies: 6
Views: 2074

Thing is there's no need for any "metadata" here or for much in the way of reading. For this it doesn't really matter that it is EBCDIC since all the requirement is is to bring in 250 characters and write out 240.
by chulett
Tue Dec 27, 2011 7:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filtering with Transformers
Replies: 4
Views: 1360

NOTFOUND is a "Link Variable" and is available in that category in the Expression Editor on a reference link - a lookup. I was suggesting you use it as the constraint for your output as it evaluates to true automatically when the lookup fails or 'misses' and false when it succeeds. More de...
by chulett
Tue Dec 27, 2011 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filtering with Transformers
Replies: 4
Views: 1360

You could issue that same SQL in the source stage so that you only get the records that you want. Alternately, stream in all records from T1 and build a hashed file reference lookup from T2. Your output constraint would be "LookupLink.NOTFOUND"... adjusted to match reality, of course.