Search found 53125 matches

by ray.wurlod
Thu Sep 06, 2007 3:04 pm
Forum: General
Topic: Not able to view the jobs list under the job category
Replies: 4
Views: 1529

As noted, this is almost cetainly an issue of invalidated indexing in the Repository. Therefore the most likely cure is to gain exclusive access to the project and issue a DS.REINDEX ALL command therein.
by ray.wurlod
Thu Sep 06, 2007 3:01 pm
Forum: General
Topic: Regarding uv -admin -stop
Replies: 3
Views: 1473

UNIX

This is not about locks; it is about shared memory. An ipcs -m command will show the shared memory segments in use; any with a key beginning 0xade are DataStage shared memory segments. It will also show that the permissions on them are tight (rw-------) so that you must shut down DataStage using the...
by ray.wurlod
Thu Sep 06, 2007 2:57 pm
Forum: General
Topic: DataStage 7x issue
Replies: 5
Views: 1604

pi is irrational. i is imaginary. i squared = -1.
by ray.wurlod
Thu Sep 06, 2007 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output of a file as a parameter
Replies: 7
Views: 1357

Easiest would be to read the file and pass its value into the second job as a job parameter. You would do this with an Execute Command activity in a job sequence.
by ray.wurlod
Thu Sep 06, 2007 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: converting row into column
Replies: 3
Views: 1026

Try searching the forum for "vertical pivot", for that is what you are trying to accomplish. It probably is easier to accomplish in a server job than in a parallel job, but can be achieved in either.
by ray.wurlod
Wed Sep 05, 2007 11:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read XML file in PX
Replies: 14
Views: 5196

Yes, that's them.
by ray.wurlod
Wed Sep 05, 2007 8:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read XML file in PX
Replies: 14
Views: 5196

There are three different kinds of custom stage you can create in (for) parallel jobs. Any volunteers?
by ray.wurlod
Wed Sep 05, 2007 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to see environment variables in Administrator
Replies: 11
Views: 3653

Alas, you'll need to kill them all!
:lol:
by ray.wurlod
Wed Sep 05, 2007 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: memory issues with Sort stage
Replies: 3
Views: 1117

In version 7.5 and later, DataStage Sort stage will outperform UNIX sort.

Make sure that you have PLENTY of scratch disk configured, to sort a file of this size. Use multiple file systems per partition for scratch disk, to improve disk I/O throughput when using scratch disk. More is better.
by ray.wurlod
Wed Sep 05, 2007 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal precision warning
Replies: 5
Views: 2210

You could write a strong letter of complaint to Oracle bin Larry for not following the SQL standards that the rest of the world follows.
by ray.wurlod
Wed Sep 05, 2007 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help en Promote SubRecord
Replies: 5
Views: 2101

You could split the stream into two copies, run one copy through a Promote Subrecord stage and join the two copies subsequently, selecting appropriate columns from each input to the Join stage.
by ray.wurlod
Wed Sep 05, 2007 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job parameter in where clause of ODBC stage query (DS Server
Replies: 3
Views: 1825

What error message is returned when you use

Code: Select all

select count(deptno) from emp where dname = '#dnm#'

(Have you tried it without the terminating semi-colon?)
by ray.wurlod
Wed Sep 05, 2007 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import error and no default value for only one column?
Replies: 10
Views: 6856

Try also setting the Default property for the appropriate data type.
by ray.wurlod
Wed Sep 05, 2007 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in conversion
Replies: 4
Views: 1437

The error is from Teradata, not from the Modify stage.

Please document the Modify stage specifications that you have used.

Please also import the table definition from Teradata using orchdbutil (from the Import menu). Advise whether that is the same as the one you've used in your job design.
by ray.wurlod
Wed Sep 05, 2007 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal precision warning
Replies: 5
Views: 2210

It's an alert. DataStage is warning you that, in going from a scale of 10 to a scale of 0 you are likely to lose some information. It is also alerting you to the fact that it (DataStage) does not fully support numeric floating point decimal, and that therefore it is adjusting the scale so that the n...