Search found 4992 matches

by kcbland
Fri Nov 12, 2004 2:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job parameter question
Replies: 1
Views: 544

A job cannot change its own parameter values during runtime. The job control tab is used to control other jobs. Search this forum, we've covered job control and job parameters ad nauseum. If you which to feed job parameters, use the controlling Sequence, Batch, or command line options under dsjob to...
by kcbland
Fri Nov 12, 2004 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Sequencer Job
Replies: 4
Views: 1461

Type it in, or add another job and replace the name and parameters with the appropriate information. Not necessarily clean, but it does work.
by kcbland
Fri Nov 12, 2004 1:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Sequencer Job
Replies: 4
Views: 1461

Yes. The API's documented in your DS manual are the same ones used by Batch and Sequencer jobs. There is no difference between any job types (Batch, Server, Parallel, Sequencer, etc) when it comes to running them.
by kcbland
Fri Nov 12, 2004 1:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What is the maximum display length in a Sequential file?
Replies: 5
Views: 885

If your column is that wide in content you will want to inspect the contents from the command line as the client job has limited functionality to do so. You cannot resize a column wider than the screen, as you can't stretch the column big enough. Plus, the left-to-right scrolling is not well built. ...
by kcbland
Fri Nov 12, 2004 1:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stopping a Basic job
Replies: 2
Views: 629

You must build an exit strategy into BASIC or Batch jobs. Either poll a directory periodically for a "touch" flag file and stop when found, or put a timeout. One way to kill is to use kill on Unix and Task Manager on Windows. In your case, you must have access to the server console. Another option i...
by kcbland
Fri Nov 12, 2004 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Category Structure
Replies: 2
Views: 800

Other than using manager to mass move jobs (doesn't require renaming, just select all and right-click Move-To option) you would have to use a hack at the internal folder structure attribute in DS_JOBS file or do an export and textsearch/replace in the .dsx file.
by kcbland
Fri Nov 12, 2004 1:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Defining Constraints in Transformer Stage
Replies: 13
Views: 12759

Your link.column value either has an case mismatch or leading/trailing spaces, from what I can guess. I suggest you find out the exact contents, and either apply a TRIM and/or UPCASE function where appropriate.
by kcbland
Thu Nov 11, 2004 9:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Defining Constraints in Transformer Stage
Replies: 13
Views: 12759

Make sure you use quotes around literal values being compared to character columns. If you use literal values that are numeric and compare them to character or numeric columns, then you're okay. x is integer x=10 is okay x=A is bad x='A' is okay x is char x=10 is okay x=A is bad x='A' is okay
by kcbland
Thu Nov 11, 2004 9:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic RDBMS vs. Oracle9i Stage
Replies: 8
Views: 1997

You just can't use any specialized keywords or comments that only ORACLE recognizes such as rownum, sysdate, to_date, or hints like +PARALLEL(xyz,10) or +USE_HASH(abc,xyz) or +INDEX(xyz,xpkxyz) as those aren't transportable to other databases.
by kcbland
Thu Nov 11, 2004 9:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routines and Filters
Replies: 3
Views: 822

The before/after routines are for doing something either before the first row enters the transformer or after the last row exits the transformer. If we understood what you're trying to do we could answer better. To call the routine simply write it in DS Manager, compile it, and it will appear on the...
by kcbland
Thu Nov 11, 2004 9:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: .dsx import
Replies: 1
Views: 1133

You can only import older versions of DataStage into a equal or newer version of DataStage. You also cannot import jobs that contain plugins for which you haven't installed. You also cannot import PX jobs onto a Windoze implementation.
by kcbland
Wed Nov 10, 2004 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run px on windows
Replies: 7
Views: 2666

While grid computing (Seti@Home) is cool, I have a hard time imagining this type of processing paradigm being used. That's what PX on Windoze will ultimately be like, grid computing. PX is great in that you can harness a handful of servers, both SMP and MPP, to leverage all technologies to move the ...
by kcbland
Tue Nov 09, 2004 7:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Differences between different datastage versions??
Replies: 3
Views: 3081

Why start with 5? Let's walk down memory lane and start with 1 and don't leave out all of the companion products. :roll:
by kcbland
Tue Nov 09, 2004 7:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Refuses to run job or run scheduled job.
Replies: 12
Views: 3288

You need to have access to the server. Under the control panel should be a big A for Ascential icon. Click on that to see the services. Alternatively, you could find the Services icon and look for the engine that way.
by kcbland
Tue Nov 09, 2004 7:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Basic WriteSeq
Replies: 20
Views: 7732

The point is always use WEOFSEQ will be required if you are opening an existing file. If you fail to use it, you could potentially have a "merged" effect of what you just wrote with what already existed in the file. This is absolutely an issue if you write fewer characters to the file than what curr...