Search found 53125 matches

by ray.wurlod
Mon Aug 27, 2007 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: db2 udb enterprise stage view data
Replies: 7
Views: 2462

You need to put your DB2-specific environment variables into either the dsenv script or into the Administrator client.
by ray.wurlod
Mon Aug 27, 2007 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: REJECTED keyword in PX
Replies: 8
Views: 1666

Check your output link execution order. The Otherwise/Log output should be the final one executed. A Reject output link from a parallel Transformer stage handles any input link that causes an exception.
by ray.wurlod
Mon Aug 27, 2007 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Text for Environment Variables
Replies: 6
Views: 1323

All enhancement requests posted here are forwarded to IBM.
by ray.wurlod
Mon Aug 27, 2007 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to open project folder in Designer/manager
Replies: 4
Views: 988

You must have exclusive access to the project to re-index. I agree with Arnd's diagnosis.
by ray.wurlod
Mon Aug 27, 2007 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date manipulation
Replies: 12
Views: 2978

Wouldn't the job be easier to maintain if you calculated the actual ages (in stage variables, perhaps) and compared those?
by ray.wurlod
Mon Aug 27, 2007 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Encrypt Data
Replies: 5
Views: 1518

You can easily mask with the Fmt() function.

Code: Select all

Fmt(InLink.SSN, "9R***-**-####")
by ray.wurlod
Mon Aug 27, 2007 4:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Encrypt Data
Replies: 5
Views: 1518

You can easily mask with the Fmt() function.

Code: Select all

Fmt(InLink.SSN, "9R***-**-####")
by ray.wurlod
Mon Aug 27, 2007 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage Of Universe Stage
Replies: 2
Views: 1069

A UniVerse table IS a hashed file. Whether you use a UV stage or a Hashed File stage to access it is immaterial unless your access is via the primary key, in which case a Hashed File stage is definitely to be preferred. UniVerse IS a database. So your sub heading "Performance of Universe Compared to...
by ray.wurlod
Mon Aug 27, 2007 4:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to load subroutine on host (30105
Replies: 19
Views: 13298

Please verify that the connection via telnet was successful, that DS.REINDEX ALL succeeded. If so, please do the same but this time execute the command DS.CHECKER. DSR_PROJECT is a "helper subroutine" which should be cataloged in the project. Therefore, while you're there, can you also execute the c...
by ray.wurlod
Mon Aug 27, 2007 4:09 pm
Forum: General
Topic: Problem in setting up new project
Replies: 2
Views: 1433

That one, since it refers to the global catalog space, suggests that the DataStage server has not been successfully installed.
by ray.wurlod
Mon Aug 27, 2007 1:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Route duplicate and non duplicate records from flat file.
Replies: 10
Views: 3123

Load them into a UV table. Take two links out of the UV table each grouped by the first two columns; one constrained on HAVING COUNT(*) = 1 and the other constrained on HAVING COUNT(*) > 1. Constraints here are in the SELECT statements that extract rows from the UV table, not in DataStage.
by ray.wurlod
Mon Aug 27, 2007 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to load subroutine on host (30105
Replies: 19
Views: 13298

Connect to the server using telnet, cd to the problem project and try to invoke dssh once there (having executed $DSHOME/dsenv). If you can get to the TCL prompt, make sure that you are the only user in the project, then execute the DS.REINDEX ALL command. Let us know whether that solves the problem.
by ray.wurlod
Mon Aug 27, 2007 1:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HFC.exe -> need it but don't have the Datastage CD
Replies: 20
Views: 5916

I have uploaded the HFC.exe to this free site. Feel free to download it http://www.upload2.com/?cmd=_viewer&file=97a893a284c6cd892204ab324aee21d1.zip&s=file-upload Note: Copy and paste this url into your browser (Disable pop-up temporarily if wanted) Download at own risk as it is uploaded t...
by ray.wurlod
Mon Aug 27, 2007 1:09 am
Forum: General
Topic: Data Satge Architecture
Replies: 6
Views: 2028

1. Why not? A project is simultaneously a schema, a directory and an account. 2. Yes you can. The DataStage command for listing column definitions is LIST.DICT, for example LIST.DICT RT_LOG But not all of the column definitions for this database are published. This is a deliberate decision by the ve...
by ray.wurlod
Sun Aug 26, 2007 8:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performing database commits based on data - can it be done
Replies: 3
Views: 1129

No joy from me. I'm also convinced that there's no mechanism in DataStage - apart, perhaps, from a Build stage - that can do what you seek.