Search found 42189 matches

by chulett
Tue Aug 15, 2006 6:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage experience with Model 204 database...
Replies: 5
Views: 2152

I've dealt with it, but not directly. My client recently shutdown their M204 system, but before that we were sending information back and forth. Only problem was it was pretty much treated as that crazy inmate permanently stuck in solitary confinement. We never met face to face, sometimes I'd slide ...
by chulett
Tue Aug 15, 2006 6:29 am
Forum: General
Topic: crash keys
Replies: 7
Views: 4399

What database? Are you saying you are using a SERIAL field to auto-generate surrogate keys and sometimes you get duplicates? In any case, be more clear about what you are doing and how you are generating these 'serial' values. I've got no idea if you have a DataStage job design issue or a database p...
by chulett
Mon Aug 14, 2006 8:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warnings from routines returning other than 0
Replies: 20
Views: 5842

kduke wrote:You used to get a warning if you changed the value of an argument. Now it is encouraged.

Really? I thought it still threw warnings when you compiled routines that did that... I'll have to go check that out, Mr Kim. :D
by chulett
Mon Aug 14, 2006 8:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Open -> "Good to have" Features in DataStage ne
Replies: 5
Views: 1622

Re: Open -> "Good to have" Features in DataStag

5)Unconnected lookups. Meaning if the lookup of a source row gives more than 1 row. it should pass on both the rows instead of 1. [i can understand "one row at a time" is the basis of datastage. At least it makes sense to pass 2 rows in case of a lookup] Available in parallel jobs. And Server jobs ...
by chulett
Mon Aug 14, 2006 8:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question about dual core CPUs and hyperthreading!!
Replies: 9
Views: 2400

vmcburney wrote:... while Oracle will charge per core, even for the weaker x86 chips.

What a shocker. :roll:
by chulett
Mon Aug 14, 2006 8:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between Server Objects and PX
Replies: 7
Views: 2543

If not, please enlighten us in regards to what you mean by 'objects'. Then you might get a better answer... or some even more groovilicious diagrams. :wink:
by chulett
Mon Aug 14, 2006 8:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic Files Creation
Replies: 11
Views: 3161

I know we've had this conversation before here, so a search may turn something up. I'm sure you've already figured out that the Sequential File stage isn't up to this particular task. One way would be to bone up on your BASIC and write a job control routine to accomplish this. There you can control ...
by chulett
Mon Aug 14, 2006 2:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append records to a hash file
Replies: 9
Views: 1971

Write caching disabled is a normal informational message and isn't a problem. Something else caused your issue. You need to post the actual message from the log - don't paraphrase or type it here by hand, cut and paste it please. Just saying "it aborted" doesn't tell us anything.
by chulett
Mon Aug 14, 2006 12:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: row too big for inter stage rowbuffer
Replies: 6
Views: 3284

Two million characters is only 2MB, give or take. I've used this mechanism to process 150MB files without issue, so not sure what's going on here. Perhaps it's just a matter of turning off row buffering? :? How big is any given flattened row?
by chulett
Mon Aug 14, 2006 12:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can a Scheduler kick off DSJob ?
Replies: 9
Views: 2036

Batch, Sequence, Server, PX... doesn't matter. If you can run it from Director, you can run it from the command line using dsjob. We occassionally pass in parameters at the command line (typically processing dates) but the jobs mostly read their own from config files. If whatever you are calling for...
by chulett
Mon Aug 14, 2006 12:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append records to a hash file
Replies: 9
Views: 1971

Uncheck both of them Actually, the only one you need to uncheck is the 'Delete file before create' one. The create one is safe to leave alone as it just gives you the option of overriding defaults when the file is created. And it is only created if it doesn't already exist. Which actually happens w...
by chulett
Mon Aug 14, 2006 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append records to a hash file
Replies: 9
Views: 1971

If 'append' means 'add new records', just write to it. If you mean something else, be more specific.
by chulett
Mon Aug 14, 2006 10:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Left Outer Join
Replies: 8
Views: 2865

It's perfectly feasible. Any of the methods in the stage should support it. I don't use SQL Server - are you not aware of the proper 'left outer join' syntax you'd need? :? Check with your DBA if not.
by chulett
Mon Aug 14, 2006 10:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Left Outer Join
Replies: 8
Views: 2865

That's old style Oracle syntax - you sure that works in Sql Server? :wink:
by chulett
Mon Aug 14, 2006 10:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can a Scheduler kick off DSJob ?
Replies: 9
Views: 2036

Because that 'just' uses cron on a UNIX system. We have lots of dependancies between processes and sometimes across servers. You need an Enterprise Scheduler to do that and we have Control-M. It also handles messaging by linking to our 'paging and escalation' system without having to script it in. I...