Search found 53125 matches

by ray.wurlod
Wed Feb 14, 2007 2:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: filter with regular expression
Replies: 3
Views: 1458

So what you're looking for is an awk expert?

Can you filter it (in the External Filter stage) with grep, which may be more efficient, and in which it's easier to filter the logical inverse (that means using the -v option in the grep command).
by ray.wurlod
Wed Feb 14, 2007 2:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduling
Replies: 4
Views: 848

No. You have the date, so you can get the day number. If the day is Sunday and the day number is less than or equal to 7, then it's the first Sunday in the month. Otherwise it's not. You can do this in a Nested Condition activity with some User Variables, or you can use a Routine activity.
by ray.wurlod
Wed Feb 14, 2007 2:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to connect to DB2
Replies: 7
Views: 1412

Then ask the peiple on the other end of the Citrix connection to make the PDF files available, perhaps on an intranet, perhaps via email.
by ray.wurlod
Wed Feb 14, 2007 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup using sequential files in parallel extender
Replies: 2
Views: 1077

You can do a lookup against any stage type, including Sequential File. At least that's how you design it. What actually happens is that the output of that stage is loaded into a virtual Data Set, then the Lookup stage performs its lookups against that virtual Data Set with the aid of a lookup table ...
by ray.wurlod
Wed Feb 14, 2007 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Estimating Memory Size
Replies: 2
Views: 1009

Do you want to estimate virtual memory requirements or scratch disk requirements? They are not the same things. For example, scratch disk can be used when allocated memory is exceeded, even though there is plenty of free virtual memory - for example in the Sort stage you can limit the amount of virt...
by ray.wurlod
Wed Feb 14, 2007 2:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating Parallel routine
Replies: 7
Views: 2539

If it's to be called by another application (including DataStage) it must not have a main() declaration. You create the code using any text editor and compile it outside of DataStage. You must also create a "Parallel Routine", which is a record in the Repository of the existence, location and argume...
by ray.wurlod
Wed Feb 14, 2007 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull() into a NOT NULL DB2 Column
Replies: 5
Views: 2239

There's usually a default value property under the data type specific properties (for example in the String Type properties if the data type is string). The default behaviour can not be disabled. The only way you could raise a warning would be to generate an in-band null and detect this downstream. ...
by ray.wurlod
Wed Feb 14, 2007 1:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSFunction to encrypt a value
Replies: 13
Views: 3708

Mostly unique
by ray.wurlod
Wed Feb 14, 2007 1:54 am
Forum: General
Topic: What the meaning of "BALCKHOLE" in datastage
Replies: 14
Views: 5261

Close but not quite. It's actually the amount you'll spend on consulting services after upgrading. IBM consultants underwent their intensive version 8 training three weeks ago in this part of the world.
by ray.wurlod
Tue Feb 13, 2007 7:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SetNull() into a NOT NULL DB2 Column
Replies: 5
Views: 2239

When you attempt to make a not null column contain null, its Null Field Value (if any) is substituted; failing that its Default Value (if any) is substituted. For a VarChar, the default Default Value is "".
by ray.wurlod
Tue Feb 13, 2007 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace comma with next line character at even position
Replies: 11
Views: 2264

How to do every second comma using tr command?
by ray.wurlod
Tue Feb 13, 2007 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BiigInt
Replies: 5
Views: 1036

APT_DUMP_SCORE will always help - it's the only way you can determine what is/was executed. Which is not always what you designed - it gets optimized, for example, and some of the design errors and omissions are silently corrected.
by ray.wurlod
Tue Feb 13, 2007 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem reading the file
Replies: 11
Views: 2192

Odd. The parallel Transformer works fine for thousands of others. :?
by ray.wurlod
Tue Feb 13, 2007 7:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Filter commad error in datastage seq files
Replies: 3
Views: 2033

For whatever reason, your filter command has failed. There is only one corrective action: fix it. Perhaps you do not check for non-existence of its source file?
by ray.wurlod
Tue Feb 13, 2007 7:26 pm
Forum: General
Topic: group and create sequence..is it possible in DataStage
Replies: 4
Views: 1593

Use sorted (by ID) input and stage variables to detect change and increment/reset sequence number.