Search found 15603 matches

by ArndW
Wed Aug 18, 2010 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: force compile
Replies: 2
Views: 1161

DataStage keeps information internally on whether or not the transform stages have changed and will save compilation time by skipping over unchanged stages. If, for some reason, the stage has changed but DataStage hasn't flagged it then a normal compile might result in an incorrect runtime object.
by ArndW
Wed Aug 18, 2010 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read MasterCard files, especially the BITMAP part
Replies: 2
Views: 2574

Basically you can use DataStage code to parse the bitmap portion or use an external program to do so (c++ or perhaps PERL or the like). Is the BITMAP contents actually binary or just variably structured text? The first step should be to define your rules in "clear text" so that you know th...
by ArndW
Wed Aug 18, 2010 4:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum Stage Integer Value
Replies: 8
Views: 2836

Use the checksum function and then examine the output character field. Do you think that can be converted to an integer or bigint?
by ArndW
Wed Aug 18, 2010 4:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: validations
Replies: 1
Views: 1034

The terms are not fixed, each installation has a different definition of the terms based on context. If you could explain your context for the question then you would (perhaps) get a more definitive answer.
by ArndW
Wed Aug 18, 2010 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Modify the 1st digit
Replies: 2
Views: 1064

Is this 3 different columns or one string of value "1,15,201"? or 3 different values for one column?

Assuming the latter, "IF LEN(In.Col)=3 THEN '5':In.Col[2,2] ELSE In.Col"
by ArndW
Wed Aug 18, 2010 3:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: filter stage dropping records
Replies: 6
Views: 2946

That last post is a bit confusing; you say that the data is the same because "winmerge" show different number of records :?:

Use "diff" to compare your two source files to see if they are indeed the same.
by ArndW
Wed Aug 18, 2010 3:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Calaculating ASCII value in datastage
Replies: 3
Views: 10454

The function you are looking for is SEQ(), which will return the numeric representation of the input single character, the function that returns a character given a numeric representation is CHAR(). Both can be looked up in the documentation and exist in both Server and Parallel versions.
by ArndW
Wed Aug 18, 2010 3:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load on server
Replies: 5
Views: 968

You first need to determine what is taking 6 minutes. Is it the "SELECT" on the database? Make a simple copy of your job that doesn't do a join or a database write, just your 2 database reads going straight to PEEK stages? How long does that take?
by ArndW
Wed Aug 18, 2010 3:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs are in Running status
Replies: 8
Views: 1923

Was DataStage reading from the database when it was failed over? If DataStage doesn't get an error from the DB then it cannot know that there is an error. Normally during a write the DB must return information, either an OK or an ERROR; but during a read where DataStage doesn't know how long it migh...
by ArndW
Tue Aug 17, 2010 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Loading Error in Oracle Table
Replies: 4
Views: 1983

I'm in Germany right now... I have a PLZ.

In your case, have you talked to your DBA and asked what your limits are on number of cursors? Are they per-user or per-system? Can you DBA monitor or view open cursors?
by ArndW
Tue Aug 17, 2010 4:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning with CFF Stage.
Replies: 5
Views: 1399

What is the exact COBOL data type and the DataStage Datatype into which it is going?
by ArndW
Tue Aug 17, 2010 4:24 am
Forum: General
Topic: Sequence Job Error
Replies: 4
Views: 1401

I would add the "reset if required" check mark to the job activity in the sequence, as recompiling is not really an option.
by ArndW
Mon Aug 16, 2010 5:52 am
Forum: General
Topic: Run Multiple instance with max of 2 instances.
Replies: 8
Views: 2673

The "Job Activity" in job sequences has an automatic wait-for-job-to-end attached to it, so you would start your jobs by executing the appropriate command line dsjob. You could put a before-job call in the instance jobs that update the table with status of "In Progress" and an af...
by ArndW
Mon Aug 16, 2010 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User defined SQL in DB2 Enterprise stage reduce performance?
Replies: 10
Views: 2440

Now I'm curious as well - which document did the quote come from?
by ArndW
Mon Aug 16, 2010 3:48 am
Forum: General
Topic: Transformer Stage Editor deletes the wrong column
Replies: 2
Views: 795

I have seen this issue and been hurt by it several times. You need to clock on the column twice before hitting the delete button, otherwise the first column in the list is selected. This is a nasty front-end glitch.