Search found 42189 matches

by chulett
Sun Jun 24, 2007 6:42 am
Forum: General
Topic: interview at target
Replies: 5
Views: 1629

Here is one such example of the kind of Vincent's blog that I was thinking of. These test objectives might also help. None of them contain a discrete set of questions, but should give you plenty of ideas on things you could be asked about.
by chulett
Sat Jun 23, 2007 9:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we export joblog to a file
Replies: 27
Views: 11793

If you look, you'll notice the jobs are not producing 'excel' files but rather simple 'csv' or comma separated value files. They can then be opened by Excel and (if desired) saved back as an xls file. Take all the defaults in the Sequential File stage and you'll get a csv file, but you'll probably w...
by chulett
Sat Jun 23, 2007 9:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple instance
Replies: 6
Views: 1130

Do you have a partitioned table? If you do, then it would be a matter of ensuring your loads were partitioned in the same manner as the target table, on the same 'keys' or fields. Unless you've made special arrangements, I'd be surprised if your files are arriving that way, so you need to take the t...
by chulett
Sat Jun 23, 2007 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple instance
Replies: 6
Views: 1130

Multiple Instances not necessarily equal faster or that they are able to break the laws of Database Loads. The first load is locking the table until complete, at which time the second can run. Multiple simultaneous loads generally require a partitioned table with each load stream handling a unique p...
by chulett
Sat Jun 23, 2007 5:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capturing reasons of rejected rows in a table
Replies: 1
Views: 751

Look into all of the 'Link Variables' available. Put them all in a reject link and see which ones the DB2 stage actually populates under various conditions as not all stages are created equal. Depending on what you see there, you may very well find that to know the full 'reason' for the problem you'...
by chulett
Sat Jun 23, 2007 5:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing db2 sql command in a routine
Replies: 11
Views: 5958

"Error variable unassigned on return from BEFORE routine" Your problem in a nutshell. A Before/After Subroutine is not equivalent to a Transform Function like you would use in a Transformer derivation. And which you seem to be trying to write. A Transform Function can have multiple Arg values and re...
by chulett
Sat Jun 23, 2007 9:17 am
Forum: General
Topic: interview at target
Replies: 5
Views: 1629

Actually guys, if you read the post again, you'll see that Kauchy hasn't asked for any answers but is apparently just looking for some sample questions that may be asked. I personally don't see any problem with that. I seem to recall that Vincent posted some sample certification questions over at I...
by chulett
Sat Jun 23, 2007 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Job log
Replies: 12
Views: 4370

Two posts in December 2004 and then gone, it seems. :(
by chulett
Sat Jun 23, 2007 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartability through DS Job Control
Replies: 10
Views: 2801

Ok... I AGREE if what the op means by 'DS Job Control' is hand coded job control code. Silly assumption on my part that we were discussing Sequence jobs as we don't run into all that many hand-coders around here.

Still, they'll need to find a way to differentiate between the two 'aborts'.
by chulett
Sat Jun 23, 2007 8:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading output form Command Execute Stage
Replies: 7
Views: 2293

pradkumar wrote:Moreover in loop activity stage, we can give only numeric values

That's not correct.

Add in a UserVariables Activity stage to capture the filenames and it can be used to feed them to the Start Loop stage one at a time.
by chulett
Sat Jun 23, 2007 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email notification if job fails
Replies: 3
Views: 1048

But of course! :wink:
by chulett
Sat Jun 23, 2007 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KBADifferent does not work Fractional part of Dec is 10 dig
Replies: 22
Views: 5870

And this is different from the precision specified by the EXACTNUMERIC uvconfig parameter? :?

"Specifies the number of digits of precision before rounding occurs. The maximum is 57 digits and the minimum and the default is 15 digits."

Are we actually discussing scale?
by chulett
Fri Jun 22, 2007 1:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Job log
Replies: 12
Views: 4370

All of the DSGet* functions have an equivalent option in 'dsjob' from the command line. For example, DSGetLogSummary is the -logsum option from what I recall. So it is perfectly feasible to script something rather than code up a routine to do this. Bone up on it by reading the Server Job Developer's...
by chulett
Fri Jun 22, 2007 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartability through DS Job Control
Replies: 10
Views: 2801

Not sure that's possible. An abort is an abort so you wouldn't be able to differentiate solely based on that criteria. You'll need to find some other way to handle stoppages based on rejected counts. Perhaps just logging a warning and then a specific Warnings trigger to a Terminator stage? Hmm....
by chulett
Fri Jun 22, 2007 11:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email notification if job fails
Replies: 3
Views: 1048

You can create an 'after job' routine to check the job's INTERIM status and send an email if it says it will be aborting.