Search found 53125 matches

by ray.wurlod
Mon Mar 04, 2013 6:42 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: set parameter as array for webservice
Replies: 15
Views: 12679

Why is "always running" a problem?

You use the Information Server Console to control jobs that use Information Services Director, including any possible need to stop and start "always running" jobs.

And you use "end of wave" behaviour to identify units of work.
by ray.wurlod
Mon Mar 04, 2013 6:41 pm
Forum: General
Topic: Current date as a Parameter
Replies: 2
Views: 871

1. No. 2. Not in a Sequencer, but yes in a Sequence. My preferred formula in an expression in a Sequence is to use the @DATE and @TIME system variables, but you could use Date() and Time() functions instead. Assuming that you don't want fractional seconds, a suitable formulation is Oconv(@DATE,"...
by ray.wurlod
Mon Mar 04, 2013 6:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading data to SAP
Replies: 9
Views: 3002

I'm not really sure what you're asking here. Yes it's possible to load data into SAP using IDOCs, but there's not really any such thing as "SAP tables" - SAP sits atop a database. Your SAP licence explicitly prohibits your accessing these tables directly.
by ray.wurlod
Mon Mar 04, 2013 6:34 pm
Forum: General
Topic: Passing read rows from one job activity to other in seq
Replies: 17
Views: 5252

Execute your command and pipe the result through tr to convert the line terminators into commas. Optionally pipe through sed or awk to remove the empty "line" at the end, or use a user variable to strip this.
by ray.wurlod
Mon Mar 04, 2013 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Connector Rejects producing more records
Replies: 4
Views: 2358

Yes, but one row can fail more than one constraint. For example, if the metadata specified all columns to be NOT NULL but the data contained three NULL values, then this would count as three errors, three reasons for rejection.
by ray.wurlod
Mon Mar 04, 2013 3:33 pm
Forum:
Topic: Metadata Interchange fails to locate Information Server Home
Replies: 5
Views: 3355

Make sure that the /.dshome has the correct value set. It might also be work setting environment variables DSHOME and, possibly, APT_ORCHHOME.
by ray.wurlod
Mon Mar 04, 2013 1:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata Connector Rejects producing more records
Replies: 4
Views: 2358

Is your Array size greater than 1?

Can any one row fail for more than one reason?
by ray.wurlod
Mon Mar 04, 2013 1:23 am
Forum: General
Topic: Trigger the next activity based on the output of routine
Replies: 6
Views: 1364

What does the after-job subroutine do with the result? Simply have the sequence read it from there. Ideally the subroutine will write the result into the job's User Status area.
by ray.wurlod
Mon Mar 04, 2013 1:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File rejects
Replies: 3
Views: 1318

Only one that I can imagine - reading a null (null field value) for Col1 or Col3 where there is no default value defined.
by ray.wurlod
Sun Mar 03, 2013 9:56 pm
Forum: General
Topic: Attempting to Cleanup after ABORT raised in job
Replies: 1
Views: 1793

That message really only informs you that a previous error has caused DataStage to clean up. You can safely ignore the "attempting to cleanup" message - address the real error.
by ray.wurlod
Sun Mar 03, 2013 9:54 pm
Forum: General
Topic: Extracting Daily run times of all Jobs Run
Replies: 5
Views: 1514

No, that's because your first argument is not a job handle. Error code -1 translates as DSJE.BADHANDLE.
by ray.wurlod
Sun Mar 03, 2013 3:16 pm
Forum: General
Topic: Extracting Daily run times of all Jobs Run
Replies: 5
Views: 1514

Use Director client. Disable display of categories. Sort by start time. From the menu choose Print (and then, if required, check Print To File).
by ray.wurlod
Sun Mar 03, 2013 3:14 pm
Forum: General
Topic: Unable to begin a transaction error in DS Client
Replies: 2
Views: 2468

Looks like a problem connecting you your repository database. Check that the database is running, and the owner user (probably xmeta) has a password that has not expired and, for preference, does not expire.
by ray.wurlod
Sun Mar 03, 2013 3:13 pm
Forum: General
Topic: Workload Management
Replies: 4
Views: 2139

Most examples of renice default to the current process. If you use ExecUV as the before-job subroutine you can use the "UniVerse" command CHAP DOWN. (CHAP = CHAnge Priority)
by ray.wurlod
Sat Mar 02, 2013 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI stage
Replies: 6
Views: 1817

In short, you don't. Only the DataStage engine connects to Oracle. Your client connects to the DataStage engine. If you want to talk directly to Oracle from your Windows machine, simply install and configure Oracle client software and tools for Windows right there. But this will not involve DataStag...