dsjob -run -param name1=value1 -param name2=value2 -jobstatus project jobname
(No spaces around the "=" characters; that's an artifact of the "italic" tags.)
Search found 53125 matches
- 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
- 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...
- 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...
- Thu Mar 16, 2006 8:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File strange behaviour
- Replies: 8
- Views: 1802
- 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
- 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...
- 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 ...
- 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
- 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...
- 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...
- Wed Mar 15, 2006 9:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: batch files
- Replies: 6
- Views: 1228
- 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
- Wed Mar 15, 2006 8:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: batch files
- Replies: 6
- Views: 1228
- 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
- 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...