Search found 4992 matches

by kcbland
Thu Jul 27, 2006 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcgetnext - timeout waiting for mutex
Replies: 6
Views: 2456

Since you don't like using the forum and want an immediate answer, your problem is something to do with IPC stages, row buffering, inter-process, etc. You are either stalling in an active stage somewhere waiting on rows, probably from bad job design from what you initially stated. The easy answer is...
by kcbland
Wed Jul 26, 2006 9:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Parameter Limit
Replies: 4
Views: 1012

Hmmm, sounds like you're using defaults in jobs rather than feeding at runtime with job control. Maybe you should consider changing your standard?
by kcbland
Wed Jul 26, 2006 9:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wcs in datawarehouse
Replies: 7
Views: 1569

Unless it's an acronym for World Class Solution, which of course could be about anything.
by kcbland
Wed Jul 26, 2006 9:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wcs in datawarehouse
Replies: 7
Views: 1569

I have never heard of WCS in relation to a data warehouse. Did you try Googling? I did. :lol:
by kcbland
Wed Jul 26, 2006 9:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing Multi Instance logs with CLEAR.FILE
Replies: 12
Views: 5952

A CLEAR.FILE removes the PURGE.SETTINGS record in the job log, which means your auto-purge never works again. Bad idea.
by kcbland
Wed Jul 26, 2006 9:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcgetnext - timeout waiting for mutex
Replies: 6
Views: 2456

I searched for mutex and got 72 matches. You've got some reading to do. :lol:
by kcbland
Wed Jul 26, 2006 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcgetnext - timeout waiting for mutex
Replies: 6
Views: 2456

Please search the forum. This has been covered enough times. :)
by kcbland
Wed Jul 26, 2006 6:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Report on jobs currently running in DS server
Replies: 18
Views: 8030

I forgot to mention, but not to rub things in, but when I architect ETL solutions I push for an externalized audit repository of tables. I use custom job control that pushes process metadata into those audit tables so that jobs status, start time, end time, comments, parameter values, link values, a...
by kcbland
Wed Jul 26, 2006 6:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Report on jobs currently running in DS server
Replies: 18
Views: 8030

Well let's see if I can't take a fair shot at this. 1. Jobs can't be correlated to a project from the unix command line. The same job name in two projects can't be distinguished using a "ps -ef|grep phantom |grep DSD.RUN" statement. But, you can get a list of jobs executing. 2. Using dsjob, you can ...
by kcbland
Wed Jul 26, 2006 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we call ExecSH subroutine in the Job control ?
Replies: 3
Views: 1143

Skip using ExecSH, use

Code: Select all

 CALL DSExecute("UNIX", "your command here", ScreenOutput, ReturnCode)
by kcbland
Wed Jul 26, 2006 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job 'hangs' while writing to Oracle 'PIT' database
Replies: 1
Views: 874

It's always been an issue that DS Server threads get zombied when you Stop a job. It's your responsibility to do a "ps -ef|grep phantom" after stopping jobs to make sure there aren't zombies out there. You can kill them or ask that a DBA kill the Oracle session which will let the zombie die.
by kcbland
Tue Jul 25, 2006 4:07 pm
Forum: Site/Forum
Topic: Laziness!
Replies: 18
Views: 8952

It's unfortunate that new members never realize that they're in the wrong forum, or don't care. They post a few messages, then go away and become lurkers. There's no punishment suitable...
by kcbland
Tue Jul 25, 2006 3:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing Multi Instance logs with CLEAR.FILE
Replies: 12
Views: 5952

It must be possible, however, as RTI jobs do this. Yep, Ray shows how it is how it's done. That's why whenever we have a billion row log file it's better to just do a Clear Log from Director, because it appears to read the purge settings, issue a CLEAR.FILE, and then rewrite the PURGE.SETTINGS reco...
by kcbland
Tue Jul 25, 2006 3:38 pm
Forum: Site/Forum
Topic: Laziness!
Replies: 18
Views: 8952

What Ray missed today was a new poster going thru and replying to 8 month old topics. It made it appear that posters were posting again in the FAQ forum, but it was replies to posts.
by kcbland
Tue Jul 25, 2006 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clearing Multi Instance logs with CLEAR.FILE
Replies: 12
Views: 5952

How??? A CLEAR.FILE hashedfile is like a TRUNCATE command. It blows away everything in the file. Since all instances write to the same file, I don't know how you accomplish what you need. By the way, what are you trying to do?