Search found 53125 matches

by ray.wurlod
Thu Mar 16, 2006 11:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 6741

dsjob -run -param name1=value1 -param name2=value2 -jobstatus project jobname
(No spaces around the "=" characters; that's an artifact of the "italic" tags.)
by ray.wurlod
Thu Mar 16, 2006 11:11 am
Forum: Site/Forum
Topic: Customer Feedback
Replies: 10
Views: 5649

Yes, I'm sure everbody in this forum who has experience reading your postings is aware that you can be contracted professionally; That message is clearly intimated in most of your vague responses "hire me and then I'll tell you how it's done". That is a completely unfair comment. I challenge you to...
by ray.wurlod
Thu Mar 16, 2006 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 6741

Do you think it's likely that they'll have ksh on a Windows platform? (Actually, if they've got MKS Toolkit, cygwin or similar they may, but that's not the point.) The techniques in Michael's script are sound, but you need to translate what he's done into BAT file scripting language, which isn't nea...
by ray.wurlod
Thu Mar 16, 2006 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File strange behaviour
Replies: 8
Views: 1802

Can you please post the method you used to verify 99 distinct rows in the hashed file?
by ray.wurlod
Thu Mar 16, 2006 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance problem with Job (Flat file to Oracle)
Replies: 29
Views: 8079

Check that nothing has changed in the Oracle table too. If "they" have added another 20 constraints and 15 indexes, naturally any load process will be slower.
by ray.wurlod
Thu Mar 16, 2006 8:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting value of User Defined Environment Variable
Replies: 10
Views: 2904

Alas, the environment variable changed value is not inherited by the parent process (the job's controlling job sequence), so that approach fails. So does the approach using system variables, for a similar reasons; the jobs run in different processes from the job sequence. However, the job sequence c...
by ray.wurlod
Thu Mar 16, 2006 8:17 am
Forum: Site/Forum
Topic: Customer Feedback
Replies: 10
Views: 5649

Customer Feedback

:evil: I find quite a few responses you provide not to be the least bit helpful and often times are sardonic in nature. Like my grandfather used to say, 'if you're so good, why ain't you rich' You are quite entitled to your opinion. I choose not to hide behind an alias, and to be open with both my ...
by ray.wurlod
Thu Mar 16, 2006 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting value of User Defined Environment Variable
Replies: 10
Views: 2904

Does it have to be an environment variable? Can you use a system variable (such as @USER0), or the job's user status area?
by ray.wurlod
Thu Mar 16, 2006 7:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get latest 36 months of data from the source file??
Replies: 8
Views: 2266

If the source file is a text file, you'll have to read it all (because you can only get to the next byte in a text file by traversing the preceding bytes). Read it all into DataStage, then use a Filter stage or a Transformer stage to permit only the rows for the past 36 months to proceed for further...
by ray.wurlod
Thu Mar 16, 2006 6:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File strange behaviour
Replies: 8
Views: 1802

Make sure there are 99 rows in the hashed file by performing a count query on it. Even though DataStage may have reported 99 rows written, any duplicate keys will have been overwritten. Make sure also that none of the keys exists (either in the hashed file or in the source) with trailing white space...
by ray.wurlod
Wed Mar 15, 2006 9:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batch files
Replies: 6
Views: 1228

Bat Man ---> comic strip and movie character

Bart Man ---> cartoon character

:lol:
by ray.wurlod
Wed Mar 15, 2006 9:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to check the Universe database version
Replies: 1
Views: 1235

Are you referring to a UniVerse database to which you're connecting, or to the database in which DataStage Repository resides? If the latter, it is exactly the same as the DataStage version. There is an item in the VOC file called RELLEVEL that you can view. For example SELECT EVAL "@RECORD<5>&...
by ray.wurlod
Wed Mar 15, 2006 8:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batch files
Replies: 6
Views: 1228

Do you mean Windows (DOS) BAT files or DataStage batches? Or something else entirely?
by ray.wurlod
Wed Mar 15, 2006 8:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to run DS job
Replies: 10
Views: 3241

Did you check any of the suggestions I made? Even though it's a server job (you posted in the parallel job forum) these suggestions are still valid.
by ray.wurlod
Wed Mar 15, 2006 8:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before-job subroutine Error
Replies: 1
Views: 1653

Looks like the dbisqlc program includes screen drivers. DataStage processes run in the background, and do not have terminal capabilities. This may explain why you got that error message. You need to find some form of the command (or a different command) for doing what you want to do. Another possibi...