Search found 53125 matches

by ray.wurlod
Tue Sep 19, 2006 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation Problem
Replies: 3
Views: 1228

Do you check with netstat that the port number is not bound? Have you started dsprcd in debug mode so as to verify why it is stopping? Have you tried "the Microsoft solution" (re-boot the server)?
by ray.wurlod
Tue Sep 19, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: buffer size
Replies: 2
Views: 1236

Be very consistent. For example, only ever change buffer sizes on input links. Remember that larger buffers means more memory demand; if you are already limited for memory, increasing buffer sizes is contraindicated. What do you believe increasing buffer sizes (in isolation) will accomplish?
by ray.wurlod
Tue Sep 19, 2006 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create a user with permission DataStage Operator?
Replies: 7
Views: 1943

No. If you are allowed to compile you are allowed to execute.
by ray.wurlod
Tue Sep 19, 2006 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conver columns to rows in oracle
Replies: 5
Views: 1292

Search for "vertical pivot" for this is what you are trying to accomplish.
by ray.wurlod
Tue Sep 19, 2006 2:36 pm
Forum: IBM QualityStage
Topic: Job not running in Quality Stage
Replies: 8
Views: 5036

It appears from the messages that QualityStage is seeking, but not finding, four classification override tables. Perhaps you could create the needed overrides, even if they do nothing, to see whether that fixes the problem.
by ray.wurlod
Tue Sep 19, 2006 1:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cursor with Datastage
Replies: 2
Views: 3534

DataStage does not deal with cursors. You need to adapt your logic into a regular SELECT statement or a call to a stored procedure. Under the covers DataStage uses "prepared SQL". For a SELECT this involves sending the SQL to the database when the stage starts, and issuing SQLFetch() calls to retrie...
by ray.wurlod
Tue Sep 19, 2006 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column descriptor count does not match field count
Replies: 6
Views: 1338

The number of columns referred to in the INSERT statement is not the same as the number of columns in your DataStage job (or record schema).

Do you have runtime column propagation enabled?
by ray.wurlod
Tue Sep 19, 2006 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file size exceeds cache size
Replies: 4
Views: 3237

(1) ANALYZE.FILE hashedfilename STATISTICS
(2) Tunables tab

The terminology is "hashed file", not "hash file".

You may need to perform a SETFILE command to establish a VOC pointer before ANALYZE.FILE command will work.
by ray.wurlod
Tue Sep 19, 2006 12:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation Problem
Replies: 3
Views: 1228

Probably the connection was refused or the RPC daemon (service) is not running. Did you check? Is port number 31538 open in the firewall? Do you have service pack 2 installed? If so, have you installed the required DataStage patch? Is your DataStage RPC service running? Note also that Windows XP is ...
by ray.wurlod
Tue Sep 19, 2006 12:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: folder stage giving problem by creatin g 0 byte files even a
Replies: 1
Views: 563

(1) No. This is how it works.
(2) That was not a question.
by ray.wurlod
Tue Sep 19, 2006 12:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get the stats of px Shared container's stages?
Replies: 3
Views: 1263

This is not provided for in dsjob.

You could write your own variant of dsjob. Source code for the original is supplied with DataStage.
by ray.wurlod
Tue Sep 19, 2006 12:31 am
Forum: General
Topic: Error Log File Location
Replies: 1
Views: 2256

By default no. To permit error logging, create the errlog file in the DataStage home directory. Make sure it is writable by everyone. cd $DSHOME touch errlog chmod 777 errlog By default, this is a cyclic log containing at most 100 most recent entries. The number of entries is adjustable via the MAXE...
by ray.wurlod
Mon Sep 18, 2006 9:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: record delimiter problems
Replies: 12
Views: 4972

That was vital information omitted from your original post. I can only suggest close scrutiny of that stage's source code to determine how records of this type ought to be handled.
by ray.wurlod
Mon Sep 18, 2006 6:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using 2 different versions of oracle client on the same serv
Replies: 1
Views: 658

Not within the same job.

Otherwise, by dint of very careful installation and manipulation of Oracle environment variables, you may have both installed (in different locations), but you can only access one at any one time.
by ray.wurlod
Mon Sep 18, 2006 6:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filtering in the sequential stage
Replies: 3
Views: 924

The Filter command field becomes enabled when the box is checked. This command is executed and its output (stdout) is read by the Sequential File stage. You can specify any command (or set of commands) as the filter command, but the rows it generates must conform to the metadata defined on the Seque...