Search found 15603 matches

by ArndW
Tue Jul 24, 2007 9:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automation of job schedule without director usage
Replies: 10
Views: 3111

If you use shell scripts and cron then you might as well schedule the jobs in the director, since that is the scheduler used by default in DataStage.
by ArndW
Tue Jul 24, 2007 9:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to open project - Status code 81015
Replies: 13
Views: 6566

Let's take a step back and deal with the rpc questions later. If you can login to the project using the graphical tools (Designer, Director, Manager and Administrator) then your connectivity is set up correctly and you don't need to delve into the internals of how DS communicates between client and ...
by ArndW
Tue Jul 24, 2007 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem viewing the data
Replies: 14
Views: 2983

If you only see one row, does it contain just the data for the first row in the correct format? Have you set your final delimiter to <cr>?
by ArndW
Tue Jul 24, 2007 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem viewing the data
Replies: 14
Views: 2983

Have you set your view data options to limit to 1 row?
by ArndW
Tue Jul 24, 2007 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem viewing the data
Replies: 14
Views: 2983

Are you viewing the data in the output sequential stage? If so, perhaps your aggregator only output one row?
by ArndW
Tue Jul 24, 2007 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Type 30 Descriptor Table Full - Windows
Replies: 5
Views: 3363

Yes, the Director has a number of files open but it won't have several log files open concurrently. Also remember that these file units are shared across all users, so if you have several directors and running jobs open using the same hashed files they share units.
by ArndW
Tue Jul 24, 2007 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: encrypted Information in DS
Replies: 1
Views: 579

1) DataStage will pass the data through unchanged unless you explicitly modify it - so the contents, if encrypted, will remain so. 2) As far as I understand it, ICSF encryption software has numerous user exits, so you need to identify the appropriate routine(s) you need to use and write your own cal...
by ArndW
Tue Jul 24, 2007 2:52 pm
Forum: Site/Forum
Topic: DSguru2B crossed 6K.
Replies: 4
Views: 2309

Good work, DSguru2B!!!!
by ArndW
Mon Jul 23, 2007 8:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error
Replies: 11
Views: 3493

What is OutDate.DATE defined as and with what precision?
by ArndW
Mon Jul 23, 2007 7:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error
Replies: 11
Views: 3493

phanee_k already pointed out your error. Check your datatype for sv2; it is an integer (or date) and you are assigning a string to it.
by ArndW
Mon Jul 23, 2007 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: disc space requirement
Replies: 3
Views: 965

It is very difficult to predict disk usage and memory usage accurately. Luckily, much of it is unimportant. If you look at the stages you can see that you have a lot of control of memory by controlling the buffering. Temporary disk space is under less control - in many cases any temporary usage will...
by ArndW
Sun Jul 22, 2007 11:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile Lookup
Replies: 4
Views: 1033

That is hard to say, as it depends on your implementation. In some cases it is better to create hashed lookup files for this and changing the lookup from a range to a simple unique keyed one [at the cost of making the data volume much larger]
by ArndW
Sun Jul 22, 2007 10:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile Lookup
Replies: 4
Views: 1033

Hashed file lookups do not support a BETWEEN type of lookup. You can use the SQL query on a hashed file (ODBC or UniVerse stages), but the performance is going to be abyssmal (full table scan for each row). There are a number of solutions for better performance to this type of problem that have been...
by ArndW
Sun Jul 22, 2007 9:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with partitioning
Replies: 6
Views: 1832

Round robin will work at the output stage, but the entire partitioning you specified earlier in the data stream has corrupted your data (except for cases where you have only 1 node in your APT_CONFIG file). Correct that error and don't change partitioning schemes unless you need to. Why not do a rou...
by ArndW
Fri Jul 20, 2007 9:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error_When_Opening_dataset
Replies: 8
Views: 1832

Perhaps a spelling or case difference. Load the dataset column metadata from the dataset in the manager, then use load that into your dataset stage in the job instead of typing the field name.