Search found 53125 matches

by ray.wurlod
Fri Feb 27, 2009 1:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Installation Error
Replies: 2
Views: 1620

Looks like sample/VCOMM.PORTS was missing from your installation media. This is doubly unfortunate, because this is a hangover from UniVerse that isn't actually used by DataStage.
by ray.wurlod
Fri Feb 27, 2009 3:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calculating different due dates based on installment number.
Replies: 11
Views: 2369

What part of my initial response, which mentioned three ways you can approach this, gives you the impression that there is no way you can handle it?
:roll:
by ray.wurlod
Fri Feb 27, 2009 3:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS tables
Replies: 2
Views: 1045

Neither of those is a table name in the Repository. Are you referring to the MS Access file into which the reporting assistant moves metadata?
by ray.wurlod
Fri Feb 27, 2009 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No: of versions in Datastage 8.0
Replies: 2
Views: 971

Have you bothered to Search for this information?
by ray.wurlod
Fri Feb 27, 2009 3:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migration from 7.x server to 8.x version
Replies: 1
Views: 749

Have you bothered to Search for this information?
by ray.wurlod
Fri Feb 27, 2009 3:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find job parameter referred by all the job.
Replies: 5
Views: 1468

Have you bothered to Search for this information?
by ray.wurlod
Fri Feb 27, 2009 3:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: JobSequence restartability after failure
Replies: 3
Views: 1487

You run it with the same parameters. Or you re-run the entire sequence. These are your only options.
by ray.wurlod
Fri Feb 27, 2009 3:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Padding sequential file data with trailing spaces
Replies: 3
Views: 2011

The Sequential File stage can not read spaces that aren't there in the data. Simply specifying Char(6) in the metadata does not magically make it so. If you want the trailing spaces you need to add them either in the file itself or in a Transformer stage within your job - a Fmt() function with "...
by ray.wurlod
Fri Feb 27, 2009 3:34 am
Forum: General
Topic: Parsing a DSX, trying to associate file metadata
Replies: 5
Views: 1426

What I said was obtained by looking at a version 8 system. Perhaps it is different in 7.5. But, as you note, you can generate it indirectly.
by ray.wurlod
Thu Feb 26, 2009 11:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading PEGA objects data from Oracle 9i or Oracle 10g
Replies: 1
Views: 739

Welcome aboard.

None, as far as I am aware, but in either edition of DataStage you are free to write your own stage types.

Do they provide any standards-based connectivity to their objects, such as ODBC? If so, you could use those.
by ray.wurlod
Thu Feb 26, 2009 8:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: smp OR MPP
Replies: 5
Views: 2126

For server jobs it does not matter whether you're on SMP or MPP architcture. Server jobs execute only on the machine on which DataStage server is installed.
by ray.wurlod
Thu Feb 26, 2009 8:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inter Process Stage
Replies: 4
Views: 2453

If you use Link Partitioner or Link Collector stage in your job, you MUST enable inter-process row buffering for the job.

See Server Job Developers Guide for proof and more information.
by ray.wurlod
Thu Feb 26, 2009 8:43 pm
Forum: General
Topic: How to delete readonly routines
Replies: 11
Views: 4617

That message tells you that NAME is not a column name in the DS_ROUTINES table. The name of the column that contains the routine name is DSRID.
by ray.wurlod
Thu Feb 26, 2009 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get list of job names from batch
Replies: 4
Views: 1632

No, dssh is on the server only. You will need to execute it via rsh or similar.
by ray.wurlod
Thu Feb 26, 2009 3:24 pm
Forum: General
Topic: How to delete readonly routines
Replies: 11
Views: 4617

What message was produced by your query?

Code: Select all

DELETE FROM DS_ROUTINES WHERE NAME='MyRoutine'; 
Deleting only from the local repository is not going to be enough, however.