Search found 42189 matches

by chulett
Thu Jul 09, 2009 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Handle from Sequencer Help
Replies: 2
Views: 903

You are better off creating a generic custom routine for this, one that can both attach and detach from the job needing to be queried.
by chulett
Thu Jul 09, 2009 5:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Perfomace Improvement??
Replies: 22
Views: 4590

What makes you guys think it doesn't "start" immediately? If it takes 25 minutes to push everything out, all you can do to improve a query like that is to use a parallel hint. And perhaps bump up the array size.
by chulett
Thu Jul 09, 2009 5:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Expession for custom condition in Nested Condition Activity
Replies: 5
Views: 5742

Why can you not send the email once the loop ends, which it will automatically do after "counter = index"? Or are you controlling the loop in some other fashion? :?
by chulett
Thu Jul 09, 2009 5:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting count from seq file
Replies: 26
Views: 7024

Again, of course not. Nothing in = nothing out, period. So you need to arrange for there to always be an input of some kind, as already explained. Or if that just isn't making any sense to you, do as Mike suggested almost a month ago and take that part out of the job into an after-job routine that u...
by chulett
Thu Jul 09, 2009 5:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DRS Error
Replies: 5
Views: 1694

Well then, stop recompiling and Reset the dang job instead. Also post whatever other errors you see with that one, it by itself is fairly meaningless.
by chulett
Wed Jul 08, 2009 11:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server deadlocks
Replies: 3
Views: 1621

Sounds like you already had Array Size at 1 if you stuck with the default, so changing the Transaction Size would be what fixed it. The only "problem" with that is each row is committed as it hits the database, so you take a large performance hit and have no rollback capability. On the plu...
by chulett
Wed Jul 08, 2009 10:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server deadlocks
Replies: 3
Views: 1621

Got no clue how SQL Server does locking, so totally guessing here but... array size? Have you tried setting all links to 1? :?
by chulett
Wed Jul 08, 2009 10:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List of Jobs across Projects
Replies: 13
Views: 5520

Perhaps try wapping it in the absolute value function.
by chulett
Wed Jul 08, 2009 6:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ability to view logs in Director but not start/stop jobs?
Replies: 10
Views: 5212

ray.wurlod wrote:Operator role can not start most jobs. Operator role can only start "released" jobs, which almost nobody uses any more.
Hmmm... I thought that was something they 'fixed' in the 8.x world. And added the Super Operator to boot. Ah well. :(
by chulett
Wed Jul 08, 2009 6:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting SFTP to work with EE FTP Stage in 8.1
Replies: 4
Views: 5348

Right... the FTP stage is not meant to simply move file(s) from one server to another. It's all about pushing rows from a job to another server via the FTP protocol or sourcing a file from another server directly into a job in the same fashion. And because of that it is totally metadata driven. Some...
by chulett
Wed Jul 08, 2009 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mailing file contents
Replies: 6
Views: 2364

True... they all suck but mutt sucks less. :wink: Blat is just as easy.
by chulett
Wed Jul 08, 2009 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ability to view logs in Director but not start/stop jobs?
Replies: 10
Views: 5212

You typically accomplish something like this by automating the exporting of job logs into a persistent store (say like an rdbms) and then allowing people to query that store. There's no way that I know of to allow logs to be viewed from the Director client but disallow the running of jobs. Could be ...
by chulett
Wed Jul 08, 2009 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mailing file contents
Replies: 6
Views: 2364

Well, that's an interesting solution. :wink:

I would simply script something to run 'after job'. Or if I was going to use that routine, I would create a copy of it and name it something more appropriate: DSSendMailInline or some such. More... "future proof" that way I would think as well.
by chulett
Wed Jul 08, 2009 2:58 pm
Forum: General
Topic: Problem with permission
Replies: 11
Views: 4274

You are probably searching for "too much", too many words at a time - try another search for 'Unable to determine current working directory'.
by chulett
Wed Jul 08, 2009 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mailing file contents
Replies: 6
Views: 2364

You'll have to "roll your own" for that, script something using your tool of choice - sendmail, mailx, blat, whatever is in use there that supports that option to "inline" your file.