Search found 42189 matches

by chulett
Thu May 15, 2008 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: read txt from a job sequence
Replies: 17
Views: 6277

You don't "store" it, the next job can pick up the $CommandOutput variable from the Execute Command stage for example.
by chulett
Thu May 15, 2008 9:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing sql as parameter
Replies: 4
Views: 1170

wahi80 wrote:I think the above code works properly in 7.5, but fails in 8.0

If that's the case then you need to involve support. That would be a bug that they'd need to fix. (or may already have fixed)
by chulett
Thu May 15, 2008 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing output of a previous to next job as a parameter
Replies: 3
Views: 886

Curious what aspect you don't understand... the solution posted is extremely complete.
by chulett
Thu May 15, 2008 9:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: read txt from a job sequence
Replies: 17
Views: 6277

No, that wouldn't be needed.
by chulett
Thu May 15, 2008 9:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: updating in oracle table which doesn't contain any key cols
Replies: 14
Views: 3780

You haven't done what before, updated a record using sql? This is simple sql we're talking about here so no need for a procedure. Something else to understand is if you don't have indexes over the field(s) in your where clause, each update will be a full table scan and thus not all that speedy. Howe...
by chulett
Thu May 15, 2008 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: read txt from a job sequence
Replies: 17
Views: 6277

Either a Routine Activity or Execute Command stage can 'cat/type' that file and capture the output. It can then be passed to any downstream job as a job parameter.
by chulett
Thu May 15, 2008 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with longnvarchar column
Replies: 7
Views: 1830

As noted, they are not supported so no gaurantees of success. I'd suggest you contact your official support provider, see if they have any ideas. And, of course, post back anything you find.
by chulett
Thu May 15, 2008 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborted in sequence but did not trigger Exception
Replies: 6
Views: 2526

Each Sequence stage has a 'Logging Text' property. Use that to leave clues about which stages are actually getting executed.
by chulett
Thu May 15, 2008 6:55 am
Forum: General
Topic: Customer SQL statement not working on Unix Machine
Replies: 2
Views: 1086

Not Windows v. UNIX but NLS related I'd wager. What's different between the two environment, NLS-wise?
by chulett
Wed May 14, 2008 10:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing parameters to/from a shared container
Replies: 1
Views: 1646

Hard to say, that is one of the many places where you do need to enclose parameter names in pound/hash signs. Rather than type the parameter into the shared container by hand, does it work properly if you use the 'Insert Parameter' option? And we are talking about passing job parameters into the sha...
by chulett
Wed May 14, 2008 9:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance problems-running muliple jobs in parallel
Replies: 3
Views: 1188

Get yourself some real job control, something that will allow you to define dependancies and will keep as many jobs running simultaneously as possible. Something like... oh, I don't know... our Ken Bland's Job Control Utilities that he gives away free from his website.
by chulett
Wed May 14, 2008 9:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: updating in oracle table which doesn't contain any key cols
Replies: 14
Views: 3780

Re: updating in oracle table which doesn't contain any key c

kirankota79 wrote:Is there a way that i can do this without messing other columns.

How would you do this through Toad / SQL Plus and 'normal' sql? That's the same way you do it with DataStage.
by chulett
Wed May 14, 2008 9:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: updating in oracle table which doesn't contain any key cols
Replies: 14
Views: 3780

Don't confuse 'key columns' with indexes, they are not equivalent. A table doesn't need a primary key in order to be updated via sql, nor does it need one for DataStage. The 'key' column attribute just marks which column(s) should be used in the 'where' clause of the update DML.
by chulett
Wed May 14, 2008 9:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job sequence error code -14
Replies: 3
Views: 1832

The 'event' was it reporting back that it had started, meaning it didn't... at least not fast enough. And it would have nothing to do with Invocation ids. This is a resource problem. Search the forums for "timed out waiting for an event" and you'll find many conversations on this much loved topic.
by chulett
Wed May 14, 2008 9:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduling Options
Replies: 4
Views: 1323

I'd be curious exactly what 'using UNIX scripts for scheduling the jobs' means. Does that mean you have a script setup for every job, series of jobs, logical groups of jobs, what? Are you leveraging Sequence jobs anywhere or for any portion of this? UNIX and JAVA are not scheduling tools. Director j...