Search found 4992 matches

by kcbland
Fri Apr 28, 2006 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ascential Local folder increasing
Replies: 11
Views: 2723

A dynamic hashed file is like a table. As it fills up, it takes more space. As it "extends", it uses up space never to free it. Even deleting rows does not de-allocate the used space in the data portion, just the overflow. The only method to reclaim used space and shrink back to the minimum modulus ...
by kcbland
Fri Apr 28, 2006 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is Compiled, but Failed to Start
Replies: 9
Views: 2453

It sounds like you're a new user or don't have appropriate permissions.
by kcbland
Fri Apr 28, 2006 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date comparision
Replies: 5
Views: 1137

What's your input stage? If it's Oracle, then add a WHERE clause to the SQL to include a job parameter date value.
by kcbland
Fri Apr 28, 2006 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Remembering past occurrence
Replies: 4
Views: 979

Yeah, what Klaus said. :lol:
by kcbland
Fri Apr 28, 2006 7:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash file size
Replies: 3
Views: 1001

Welcome aboard. Here's a good place to start with learning about hashed files.
http://www.datastagexchange.com/Newslet ... chtips.php

Are you sure you're posting in the correct forum? This is the PX forum, hashed files are for Server jobs?
by kcbland
Fri Apr 28, 2006 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is Compiled, but Failed to Start
Replies: 9
Views: 2453

Welcome aboard. Please post all yellow and red messages from the job log. Please Reset the job using Director and post any yellow messages that appear.

Please describe the job design, stages used, etc. Any chance that before/after job routines are being called but don't exist in your project?
by kcbland
Fri Apr 28, 2006 6:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOw to create arrays in datastage basic routines
Replies: 5
Views: 5481

The fastest way to read a file into an array is like this: UNIXcmd="cat /here/there/yourfile" Call Execute("UNIX", UNIXcmd, ScreenOutput, ReturnCode) The screen output of the command is return in a dynamic array variable called ScreenOutput. To get the number of lines in ...
by kcbland
Fri Apr 28, 2006 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsenv file equivalent
Replies: 3
Views: 1088

It's called the Registry. If you're trying to use the Oracle 8i plugin, then you need the Oracle 8i client software installed on the DS Server. Contact your Oracle DBA and Windoze Admin. If you're supposed to be using the 9i Client, then use the Oracle 9i plugin to talk to Oracle database versions 8...
by kcbland
Fri Apr 28, 2006 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PRINTER memory segment removed Error
Replies: 1
Views: 1130

We refuse to answer your question because it has been asked and answered too many times. Please just Search the forum. :(
by kcbland
Thu Apr 27, 2006 8:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: One line error
Replies: 6
Views: 982

Without any error mesasges, even when resetting, you're left with having to hunt down the bug. Check to see if any before/after job/stage routines are being called. If so, make sure they are still compiled. Opening a Routine and changing it without compiling it removes the compiled code. Jobs myster...
by kcbland
Thu Apr 27, 2006 8:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to detect and create combinations??
Replies: 26
Views: 4406

Still working on it. I couldn't get the SQL working, now I'm trying a DS BASIC function. This sure is a brain cruncher.
by kcbland
Thu Apr 27, 2006 7:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: One line error
Replies: 6
Views: 982

Hey, 2 years and this is your first post. Sounds like the forum Search facility works well!! Can you describe the job design, what kinds of stages, how they're used? If you're getting an abnormal termination, it could be the result of a math operation on a NULL value. We'll need to try to help pinpo...
by kcbland
Thu Apr 27, 2006 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to detect and create combinations??
Replies: 26
Views: 4406

Excellent, I think I got it. Give me a few minutes to work out the SQL.
by kcbland
Thu Apr 27, 2006 1:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to detect and create combinations??
Replies: 26
Views: 4406

What about your original DATA example of: From that, I need to create a table that can have every single possible combination of the above elements, like so: id, combo_num, element 1, 1, a 2, 2, b 3, 3, c 4, 4, d 5, 5, a 6, 5, b 7, 6, a 8, 6, b 9, 6, c etc. Your most recent example does not represen...
by kcbland
Thu Apr 27, 2006 1:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to detect and create combinations??
Replies: 26
Views: 4406

Okay, please show all 15 expected combinations. I had to show the method using a UNION because of your example. When folks do things like this it's extremely frustrating to give help.