Search found 53125 matches

by ray.wurlod
Fri Jun 01, 2007 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: implicit Vs explicit sort
Replies: 6
Views: 2387

A reson (literally "thingy") is one of the fundamental units of magic - it's a subdivision of the thaum. "U" is one of the participants on this forum: the second person personal pronoun is "you". You provide no definition of performance, but ask us to comment on how something undefined can be chang...
by ray.wurlod
Fri Jun 01, 2007 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in join stage
Replies: 17
Views: 12186

No, because we have no idea how big one record is. You can determine the size of each field based on its data type, and sum these to get the record size. Multiply by the number of records and round up to the next higher multiple of 128KB. That's the Data Set calculation. For scratch disk and free sp...
by ray.wurlod
Fri Jun 01, 2007 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter Stage- Type: Fatal error
Replies: 4
Views: 4610

Welcome aboard. The problem is that you have not filled in the WHERE CLAUSE property in the Filter stage for the second output link (the first is number 0). On the Outputs tab in the Filter stage, select the output link name from the drop down list, choose the second, and you will see that there is ...
by ray.wurlod
Fri Jun 01, 2007 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS, codepages and locales on Parallel jobs
Replies: 7
Views: 1716

Ah. No. Further research is required. :?
by ray.wurlod
Fri Jun 01, 2007 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null value to timestamp
Replies: 6
Views: 4714

Why do you hope that?

There IS a make_null() function for the Modify stage. Unfortunately the Parallel Job Developer's Guide documents this incorrectly. You also need to read the Orchestrate Operators manual.
by ray.wurlod
Fri Jun 01, 2007 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SybaseIQ Bulk Load doesn't create .dat file
Replies: 3
Views: 1202

Can you please post the eCase number, so others can get the same problem resolved more quickly?
by ray.wurlod
Fri Jun 01, 2007 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential files with different metadata using one stage
Replies: 3
Views: 1361

If you want to use a File Pattern, then the metadata must be identical, or you must rely upon runtime column propagation, which may limit what you can do downstream - you will require at least partial metadata to use constraint or derivation expressions, for example.
by ray.wurlod
Fri Jun 01, 2007 2:45 pm
Forum: General
Topic: companies that uses IBM websphere datastage
Replies: 3
Views: 1116

Why do you want this information? For all I know you might be from the dark side, seeking to cast FUD on DataStage to sell your own product! That there are more than 17,000 participants registered in DSXchange should tell you that there are a lot of DataStage sites out there. Some of them are major ...
by ray.wurlod
Fri Jun 01, 2007 2:42 pm
Forum: General
Topic: Problem while working with UV -admin -info
Replies: 9
Views: 2616

Just 'cause you read it in the paper doesn't mean it's true. Probably looked for it in the project directory.
by ray.wurlod
Fri Jun 01, 2007 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: add_to_heap() - Unable to allocate memory warning
Replies: 19
Views: 6285

Yes, I believe it's per process. So with 10 processes there exists the potential to be demanding 10GB of virtual memory for cache. This might explain some of the prevalence of add_to_heap() errors when folks imagine that the server can deliver an infinite amount of resources. Remember, too, that vir...
by ray.wurlod
Fri Jun 01, 2007 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset the Job
Replies: 7
Views: 2828

WHY use Execute Command activity to invoke dsjob command ?!!!!!

Use a Job activity. You can then use "reset if required, then run" as its mode of operation, and everything is automatic. No coding, almost no thought, needed.
by ray.wurlod
Fri Jun 01, 2007 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Login Failed
Replies: 12
Views: 2401

Are there files called .developer.adm and .operator.adm (particularly the first) in the project directory?
by ray.wurlod
Fri Jun 01, 2007 2:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Local setting for DS server
Replies: 0
Views: 765

Welcome aboard. :D

The answer is no, because DataStage does not have its own authentication - it relies upon operating system authentication.
That said, you could include the su command (or sudo command) in your script.
by ray.wurlod
Fri Jun 01, 2007 2:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Load stage (Automatic)
Replies: 4
Views: 1508

Then your enterprise's communication processes need better management.
by ray.wurlod
Fri Jun 01, 2007 2:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting data
Replies: 8
Views: 2355

The best improvement will be obtained with multiple simultaneous SELECT queries, as I already said. The PARALLEL hint is not helping much since the result set is still being delivered sequentially. Read what I said earlier, this time more carefully. Don't bother with a Link Partitioner - use paralle...