Search found 53125 matches

by ray.wurlod
Fri Sep 12, 2008 12:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to Login(Error:80011)
Replies: 3
Views: 1582

Expired password? Have you done a Search? What's changed between then and now?
by ray.wurlod
Fri Sep 12, 2008 12:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error in view data
Replies: 20
Views: 8962

I was going to challenge that too, but held back seeing the version number. The product has not changed, but the platform on which it runs certainly has. It now has to run over Information Server, effectively using a one-node configuration file on the server machine. The service-oriented metadata an...
by ray.wurlod
Fri Sep 12, 2008 12:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: status(return code) not passing from DS to script
Replies: 1
Views: 1003

Without seeing your script, no idea.

Actually, the idea is "tighten up control in your script". The dsjob command will always return when the job status changes from Running.

So what else are you doing in your script?
by ray.wurlod
Fri Sep 12, 2008 12:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to find SoftwareResourceLocator start point
Replies: 4
Views: 1480

Can you please be clearer in your answers? I appreciate that your first language may not be English, but I really don't understand what you have just written. Please answer each of my questions separately. We do strive for a professional standard of written English here at DSXchange, not least becau...
by ray.wurlod
Thu Sep 11, 2008 11:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trap Duplicate record
Replies: 7
Views: 2217

Have you undertaken a Search?

This question has been answered previously.
by ray.wurlod
Thu Sep 11, 2008 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error in view data
Replies: 20
Views: 8962

I guess all of Craig's FROM clauses are shorter than 64 characters!
by ray.wurlod
Thu Sep 11, 2008 11:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract all the JOb names in the project
Replies: 4
Views: 1896

Code: Select all

dsjob -ljobs projectname > joblist.csv
by ray.wurlod
Thu Sep 11, 2008 9:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Universe Documentation
Replies: 3
Views: 1532

You can "sort of" figure out what's going on by reading the comments in the header file, but you'll never be sure that you've got all the possibilities.
by ray.wurlod
Thu Sep 11, 2008 9:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to find SoftwareResourceLocator start point
Replies: 4
Views: 1480

Are you running this from a job sequence?

What does your official support provider have to say?

Looks like there might be an issue with how an abort caused by ErrorCode being non-zero in an after-job subroutine is handled.
by ray.wurlod
Thu Sep 11, 2008 7:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-pipe (or non-virtual data set) with .v in its name
Replies: 3
Views: 1498

An "exact match" search on ".v in its name" returned 24 hits.
by ray.wurlod
Thu Sep 11, 2008 7:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Universe Documentation
Replies: 3
Views: 1532

Any routine with a DSD or DSR name is part of DataStage server engine. Source code is intellectual property of IBM (and heavily guarded) and there is no documentation in the public domain. The Call @SUBR(args) form is documented in the DataStage BASIC manual. Search for "indirect call" in the sectio...
by ray.wurlod
Thu Sep 11, 2008 5:50 pm
Forum: IBM QualityStage
Topic: Error at Standardize Stage in QualityStage
Replies: 3
Views: 2351

Welcome aboard.

What rule set are you using for your Standardize stage?
by ray.wurlod
Thu Sep 11, 2008 5:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing arguments to bin/dssh
Replies: 1
Views: 843

You almost had it! The technique is called inline prompting. In its simplest form it is the prompt text surrounded by double angle brackets: SELECT * FROM DS_JOBS WHERE NAME=<<Job name>> ; The parameter value can be supplied in response to the prompt from a "here script" within your script. cd `cat ...
by ray.wurlod
Thu Sep 11, 2008 5:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Monioring fails in designer
Replies: 6
Views: 1926

You can help yourself. Find out why the job monitor is not starting by trying to start it and capturing any output, especially from stderr, and inspecting the same.
by ray.wurlod
Thu Sep 11, 2008 5:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extra iteration in Loop Activity
Replies: 13
Views: 2656

It probably failed because IsNull() is not really the test you wanted. It was IsNotNull(), as I posted.