Search found 42189 matches

by chulett
Thu Jan 21, 2010 1:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatting a file
Replies: 4
Views: 1528

Like I said, the forum software removes 'extra' spaces from what it thinks is normal text, so you need to wrap your example in Code tags to preserve the whitespace. Do the same for any actual code you need to post to preserve any formatting / indenting as well. You need to know what the total size o...
by chulett
Thu Jan 21, 2010 12:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Stage - Importing REDEFINES within the same record
Replies: 32
Views: 15673

Sure, I understand. Just wanted the point clarified as I have zero experience with the CFF stage so am following along so I can learn things about it... vicariously. :wink:
by chulett
Thu Jan 21, 2010 11:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF Stage - Importing REDEFINES within the same record
Replies: 32
Views: 15673

Just out of curiosity, there's nothing inherent in a Server job that makes it "slow" just because it is a Server job. For example, I've used one to parse 10 million Apache log records in less than four minutes. Is it specifically the CFF stage that is the bottleneck? How long did it actual...
by chulett
Thu Jan 21, 2010 11:11 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Web Service Monitoring
Replies: 2
Views: 2909

Back in the day when I was doing RTI stuff, we went the "heartbeat" route as well.
by chulett
Thu Jan 21, 2010 11:09 am
Forum: General
Topic: Queue Load
Replies: 3
Views: 1007

There's a user guide pdf near the bottom of this page. Sounds like you have full control over how many messages and what types you can unload.
by chulett
Thu Jan 21, 2010 11:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Formatting a file
Replies: 4
Views: 1528

Don't see any padding in your example, without 'code' tags all excess whitespace is removed by the forum software. What have you tried? And you need a space between Col1/Col2 but not between Col2/Col3? That would be... odd. Assuming no. What you seem to have is a fixed-width file with no spaces betw...
by chulett
Thu Jan 21, 2010 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating 'public' variable inside job
Replies: 3
Views: 1405

Your current way is the correct way and the only thing 'clumsy' about it is using a file for intermediate storage. Make your first job a Server job and put the output of the proc into 'user status' which is one of the public variables you have access to. Then you can link directly from the first job...
by chulett
Thu Jan 21, 2010 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issues with Complex Flat File stage, reading Binary data
Replies: 2
Views: 2566

Interesting. For grins, what was the source system of the file and what UNIX does your DataStage server run?
by chulett
Thu Jan 21, 2010 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue while inserting data in Oracle table using OCI
Replies: 6
Views: 2145

"control characters"? :? Can you post some examples? First suspect would be either your source data or how it is being read.
by chulett
Thu Jan 21, 2010 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp Conversion
Replies: 9
Views: 3459

kumar66 wrote:But DB2 is storing the date formt as 13-Jan-2010 10:12:34 AM.
No, it is not. A timestamp is a timestamp is a timestamp, it is your query tool that is enforcing the external format of that timestamp when you select it.
by chulett
Thu Jan 21, 2010 9:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: loading History data
Replies: 4
Views: 1538

If what you need is a full outer join, then you'll need to figure out how to do it, simple or not. As noted, it certainly looks like that's all you need to do - all except for the 'sid' part. Where does that come from, another table or do you need to generate it during the run? If you're uncertain a...
by chulett
Thu Jan 21, 2010 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: process db2 tables many-to-many relationship
Replies: 3
Views: 1384

One of the tables will be your input stream, the other a reference lookup. If you need multiple rows from the lookup, you'll need to use ODBC or UV rather than the Hashed File stage for the reference lookup.
by chulett
Thu Jan 21, 2010 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check size and wording in file by DataStage
Replies: 8
Views: 6332

If you're trying to find the word "Header" in the more output, you need to enclose it in double-quotes in the actual command you run.
by chulett
Thu Jan 21, 2010 9:01 am
Forum: General
Topic: How we can manage the &ph& folder in UNIX system
Replies: 7
Views: 2196

You could always take up little burden yourself, it's a good learning opportunity. Plenty of references for UNIX commands out there, including how to use 'find' for files of a certain age and then feed the results to other commands (like 'rm') via the '-exec' option.