Search found 42189 matches

by chulett
Thu Jul 01, 2010 5:41 am
Forum: General
Topic: Table value to local variable
Replies: 27
Views: 5848

Or just use a Sequence job. :wink:
by chulett
Thu Jul 01, 2010 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date in oracle Timestamp in datastage
Replies: 4
Views: 4147

LOL... welcome to Larry's world. :wink:
by chulett
Thu Jul 01, 2010 5:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stop the sequence at specific time
Replies: 7
Views: 2328

As Ray notes, you need to build that functionality in. I always have some kind of "date/time/loop" check built in so it can gracefully stop on its own and add a polling step so I can touch a stop file into existence and it will notice and again do a graceful shutdown.
by chulett
Thu Jul 01, 2010 5:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: JobStatus=Job Status : NOT RUNNING ~99~
Replies: 10
Views: 10261

Unfortunately, it's a "catch all status" so it could mean any number of things that the other status codes don't catch.
by chulett
Thu Jul 01, 2010 5:29 am
Forum: General
Topic: Table value to local variable
Replies: 27
Views: 5848

Use a Sequence job. And incrementing a value for every row is as simple as "StartingValue + @OUTROWNUM".
by chulett
Thu Jul 01, 2010 5:26 am
Forum: General
Topic: Another id to create project
Replies: 4
Views: 1421

So, are you allowed to login using a different account and then su to dsadm? That's a very typical solution from what I've seen.
by chulett
Thu Jul 01, 2010 5:21 am
Forum: General
Topic: Command sh did not finish OK, reply =
Replies: 7
Views: 8577

Or just use the proper trigger conditions as posted earlier - Finished OK for the 0 link and Otherwise for the 1 link. It will then know that you are handling any errors and stop doing it itself.
by chulett
Wed Jun 30, 2010 9:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Search for a string
Replies: 2
Views: 1326

Spell out your requirements in words, for some reason I can't make any sense out of your example. Also posting the Oracle SQL you mentioned should help as well.
by chulett
Wed Jun 30, 2010 7:15 pm
Forum: General
Topic: Command sh did not finish OK, reply =
Replies: 7
Views: 8577

As noted, handle it yourself and the automatically logged 'unhandled exception' message will go away.
by chulett
Wed Jun 30, 2010 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Data Capture
Replies: 5
Views: 1980

Exactly... if you need to know what fields have changed values, you'll need to check each one individually. Those other methods just let you know that something changed in the record.
by chulett
Wed Jun 30, 2010 4:25 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: How can I run a WISD job on demand?
Replies: 11
Views: 6247

I would start here in your shoes, in particular the General RealTime Discussions section.
by chulett
Wed Jun 30, 2010 3:58 pm
Forum: General
Topic: Error while running RunImportStart.sh script
Replies: 5
Views: 1951

It looks like it successfully processed a whole lot of nothing to me. :wink:

Having never used this particular tool, I'll leave it to others to provide any continuing help.
by chulett
Wed Jun 30, 2010 3:08 pm
Forum: General
Topic: Is there a way to give someone read-only access in 8.1?
Replies: 10
Views: 4016

There have been discussions here about ways to deliver the logs in such a manner as to allow people of lesser importance (i.e. developers) the ability to view them, but I don't know if you want to build something like that. There have been other discussions around permissions lock-downs such that on...
by chulett
Wed Jun 30, 2010 3:02 pm
Forum: General
Topic: Error while running RunImportStart.sh script
Replies: 5
Views: 1951

I have no way to check anything, so unless someone else can verify this for you, you'd need to do a couple of things. 1. Find out where this "cmd" lives. 2. Add it's home directory to the PATH environment variable in the dsenv file. Unless this is something you set up? It does say it is a ...
by chulett
Wed Jun 30, 2010 2:31 pm
Forum: General
Topic: Error while running RunImportStart.sh script
Replies: 5
Views: 1951

Hard to say from that message but the "not found" part means you have a PATH issue which typically means you have not sourced your dsenv file to prepare your environment. Try:

Code: Select all

cd $DSHOME
. ./dsenv
And then run the script. Note that the first four characters are dot-space-dot-slash.