Search found 15603 matches

by ArndW
Mon Sep 28, 2009 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Active-to-Active Link
Replies: 12
Views: 2793

As you've already noted, using buffering can result in increased throughput. If a machine is memory-constrained then using additional buffering would exasperate the situation instead of speeding up processing, thus one is given the choice of turning it on or off.
by ArndW
Mon Sep 28, 2009 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Active-to-Active Link
Replies: 12
Views: 2793

Generally I would say that "no", you shouldn't have problems with server resources.
by ArndW
Mon Sep 28, 2009 6:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: working of join stage!
Replies: 16
Views: 5536

The join stage will first sort the input streams according to your join key(s), unless that has been already done or explicitly turned off. That way the join mechanism can process the data without having to store large amounts of interim data in memory or on disk. Each Node is completely distinct an...
by ArndW
Mon Sep 28, 2009 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Padding a Sequence loop counter
Replies: 7
Views: 1720

Put in a user variable stage, create a variable there derived from your counter (i.e. RIGHT('000':$counter,3) ) then use that variable as the parameter to your called job.
by ArndW
Mon Sep 28, 2009 5:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ISQL and OSQL issues
Replies: 16
Views: 7417

What directory is "sqlcmd" in? Is it in the runtime $PATH? Note that the PATH is changed in the "dsenv" file and this might be where your error is being introduced.
by ArndW
Mon Sep 28, 2009 5:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strategy for Periodic Back Up Of IIS application Server
Replies: 1
Views: 875

The answer to the backup frequency question doesn't depend upon the technology, but on the answer to the question "How much data loss can we afford?" and, concerning incremental backups, "How much downtime can we afford?" as incremental restores tend to take longer than full rest...
by ArndW
Mon Sep 28, 2009 5:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timezone Conversion
Replies: 1
Views: 1228

Unofrtunately there is no builtin timezone handling is DataStage PX, once would need to code that manually. This would be easy if it weren't for daylight savings time.

p.s. You can delete your duplicate post as long as nobody has replied to it yet.
by ArndW
Mon Sep 28, 2009 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to change the read cache memory size for hashfile
Replies: 8
Views: 1606

Chances are very, very high that your job's bottleneck is not in reading a hashed file but somewhere else, thus changing buffer and cache sizes, if possible, would not make a difference. Are you asking about reference reads, or perhaps writes? Also, perhaps you might be looking at public/private lin...
by ArndW
Mon Sep 28, 2009 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ISQL and OSQL issues
Replies: 16
Views: 7417

Same problem as before, the path to your "sqlcmd" program is not in your $PATH variable. Either fix the $PATH or put an absolute path to your program in your bat file.
by ArndW
Mon Sep 28, 2009 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help in understanding the join mechanism
Replies: 1
Views: 854

DataStage will do an implicit conversion, but it is much better to ensure that the metadata is identical and do an explicit conversion. Char() field conversion are always blank padded. I don't know the rule for conversion, perhaps DS uses the left link as the original and converts the other links to...
by ArndW
Mon Sep 28, 2009 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading HTML Files
Replies: 6
Views: 3192

If the HTML page has a valid XML structure, then the XML input stage might work for you. Could you post a sample of the page contents?
by ArndW
Mon Sep 28, 2009 2:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom Error
Replies: 2
Views: 1094

That message happens when a "RESIZE" is done on a hashed file. Another possibility is that you have run out of T30FILE units, but usually that is accompanied by other error messages. Does the error always happen or is it sporadic? Are you calling any routines in your transform? If you post...
by ArndW
Mon Sep 28, 2009 1:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading multiple files which were already sorted
Replies: 2
Views: 1005

Can you specify one sequential stage per file then run them all into a funnel stage where you specify that the data is already sorted?
by ArndW
Mon Sep 28, 2009 1:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what happens internally when a job is reset
Replies: 3
Views: 1390

DataStage is designed so that when a job aborts it cannot be re-run again until it is reset. This is intentional so that a job cannot just continue to abort on subsequent runs without any noticing that it doesn't work. The "reset" of a job does nnot perform more than changing a status flag...
by ArndW
Wed Sep 23, 2009 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Euro Symbol not populating in Oracle
Replies: 6
Views: 4449

typing in the Euro explicitly should be OK. What method are you using in your Oracle stage - insert/upsert or table load, that might be where the problem is creeping in.