Search found 15603 matches

by ArndW
Fri Jul 06, 2012 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Oracle connector
Replies: 8
Views: 3237

dslearner - I am trying to help, but some information is still missing: 1. Have you tried using the old Oracle Enterprise Stage. "Yes" or "No". If "No", then try the old Oracle Enterprise Stage which you know used to work at the previous release. Does it still work corr...
by ArndW
Fri Jul 06, 2012 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Flattening a fixed width file
Replies: 12
Views: 4246

You need to change your file to either have only one record type per row OR to remove the line breaks (with sed or similar) and change the CFF definition as well.
by ArndW
Fri Jul 06, 2012 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Oracle connector
Replies: 8
Views: 3237

Do you have the same problem when using the Oracle Enterprise Stage? You should check that stage in order to see if your problem really is with the Oracle connector or a general issue at 8.5
by ArndW
Fri Jul 06, 2012 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer loop, cache or anything else
Replies: 9
Views: 5552

Hmm... I'm still not quite sure of what your goal is here. 1. SALE 1 Units Sold 4500 2. 3. Record 4 PUR 1 has 449.0203000 So it SALE 1 written now with the modified value of 4050.9797? Or is the second PUR record now processed and so on? It would seem, at first, that this isn't really possible withi...
by ArndW
Fri Jul 06, 2012 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trailer
Replies: 1
Views: 739

This would only work if all your text files are of the same format; unless you want to store the schema of all the files and use that parameterized. One simple method would be to use a transform stage variable to keep a running total, then when you read the trailer record (which you would need to so...
by ArndW
Fri Jul 06, 2012 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Oracle connector
Replies: 8
Views: 3237

What methods are you using in the Oracle connector stage? Inserts? Updates? Was DataStage the only thing changed and the database remained the same? Do you have problems using the Oracle enterprise stage at 8.5 as well or is the problem restricted to the Oracle Connector stage?
by ArndW
Fri Jul 06, 2012 3:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Flattening a fixed width file
Replies: 12
Views: 4246

Have you tried adding quotes to the column values in the DFF stage and does that make a difference?
by ArndW
Fri Jul 06, 2012 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer loop, cache or anything else
Replies: 9
Views: 5552

I confess to not understanding what you are trying to do, despite the good description. Could you explain in a bit more detail the steps that you need to process for "SALE" "1"?
by ArndW
Thu Jul 05, 2012 9:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Flattening a fixed width file
Replies: 12
Views: 4246

In that case the CFF Stage is your answer, it will automatically correctly read each record type. The documentation does a barely acceptable job describing how to do this but it should get you started.
by ArndW
Thu Jul 05, 2012 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file reading with ~# delimiter
Replies: 6
Views: 2177

I assumed those were line terminators, not column delimiters.
Change your sequential stage to declare "~#" as your Field Delimiter String.
by ArndW
Thu Jul 05, 2012 8:58 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can we analyze the data from a flat file
Replies: 5
Views: 2635

yes. Declare it as an ODBC source and analyze away.
by ArndW
Thu Jul 05, 2012 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal values getting expanded
Replies: 8
Views: 3255

As stated several times before - avoid floating point. Your data in the sequential source is in decimal format and should be read, and stored, as such. Sequential files can read decimal data, so if you are not getting values then there is a problem in the column definitions that you should correct. ...
by ArndW
Thu Jul 05, 2012 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file reading with ~# delimiter
Replies: 6
Views: 2177

In your sequential file stage, specify Format -> Record Level -> Record Delimiter String as "~#" (without the quotes).
by ArndW
Thu Jul 05, 2012 6:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Flattening a fixed width file
Replies: 12
Views: 4246

There are several approaches you can take. What you need to determine r answer is how you differentiate between your 3 record types. Is the first field of each record type a single digit, "1", "2" or "3"? If you have such a field then this problem is easily solved using...
by ArndW
Thu Jul 05, 2012 5:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Custom Operator - declaring output columns
Replies: 0
Views: 617

Custom Operator - declaring output columns

Although this is a pretty esoteric question, perhaps someone here might know the answer. When creating the GUI interface to a custom BuildOp there are quite a few options available to the developer, it isn't too difficult to make the parameter declarations look like that of the CDC Stage or Sort Sta...