Search found 15603 matches

by ArndW
Tue Jun 16, 2009 3:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Decoding the PORT.STATUS "Device"
Replies: 6
Views: 1785

Ok, it turns out that I was getting the DEVICE number using LIST.READU on one machine, then trying to figure out the the Major,Minor devices from another machine! Once I went back and started checking my work I found the error and then the formula became obvious. For those interested: Device = "...
by ArndW
Tue Jun 16, 2009 1:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Key Change - Increment Value
Replies: 13
Views: 3031

svarChanged = IF svarLastFieldB = In.FieldB THEN 0 ELSE 1
svarLastFieldB = In.FieldB
svarCounter = IF svarChanged THEN svarCounter = 1 ELSE svarCounter = svarCounter + 1



Derivation of Out.Value = svarCounter
by ArndW
Tue Jun 16, 2009 1:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ETL jobs was in a running state & not changed to "F
Replies: 2
Views: 1375

Tirumal,

you need to supply more information and do some more diagnosis; it is impossible to guess what the cause might have been. Does this job use a database - if so, it could have been a lock & wait on the database.
by ArndW
Tue Jun 16, 2009 1:48 am
Forum: General
Topic: Sequencer Job
Replies: 3
Views: 1092

Look at some of the jobs. The "stages" are few and straightforward. A sequencer job is the DataStage equivalent of a simple shell script or batch program.
by ArndW
Tue Jun 16, 2009 1:47 am
Forum: General
Topic: Moving "HASH" file content to a temporary table
Replies: 9
Views: 1885

That isn't too large a number, why not use that query, then do a hashed file lookup in a transform stage instead of copying the hashed file to a db table?
by ArndW
Tue Jun 16, 2009 1:11 am
Forum: General
Topic: Moving "HASH" file content to a temporary table
Replies: 9
Views: 1885

Yes, you could load the hashed file into a temporary table. That would entail moving less rows from the database to DataStage. How many rows get returned with just "select count(*) from nv where fund_dt < getdate();"
by ArndW
Tue Jun 16, 2009 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shared container compilation error
Replies: 5
Views: 3792

Try modifying the job which calls up the container (just moving a stage around should do the trick) then doing a save and compile.
by ArndW
Tue Jun 16, 2009 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dscmdexport Memory Error
Replies: 19
Views: 6415

Are the two projects identical? If so, take your successful export and import it into QA and then try the export again. The memory issue, if still present, is a bug and could be reported to your support provider along with the .dsx file so that they can reproduce and fix the problem. If the error is...
by ArndW
Mon Jun 15, 2009 10:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBOBJECTS was corrupted
Replies: 13
Views: 5797

Yes, you can issue the UNIX "cp" commands while the system is running, it won't break anything.
by ArndW
Mon Jun 15, 2009 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems with Iconv
Replies: 5
Views: 1294

The ICONV() and OCONV() functions are not available in PX jobs unless you have a BASIC transform stage. Is that the case? The base date for internal date format is 1967-12-31, that is 0 internally, so the previous day is -1 and the 29th is -2 and so on. What is your problem with these numbers? This ...
by ArndW
Mon Jun 15, 2009 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import DS function in C++ Routine
Replies: 12
Views: 4239

Can you name some specific functions that you feel need to written in c++? Perhaps if you do that others might be able to suggest alternatives.
by ArndW
Mon Jun 15, 2009 9:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenating multiple rows into one single row
Replies: 8
Views: 3115

Correct, the bulk of the post from me won't be visible as it is a premium post. The membership finances the site (the posters are all volunteers). But I would think that if you searched here you might find other suggestions that are not marked as premium.
by ArndW
Mon Jun 15, 2009 7:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to read warning in director log
Replies: 8
Views: 2198

If you don't need the log contents, just clear the complete log from the Director, that should do the trick. But you should find out why the log got corrupted. Either growing past the ~2Gb limit as miwinter suggested or perhaps if the file system filled up while that log was being written to.
by ArndW
Mon Jun 15, 2009 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting positon of value
Replies: 6
Views: 2113

Craig - I recall that the function LOCATE() doesn't work in server transforms, just the "LOCATE x IN y SETTING z" syntax.
by ArndW
Mon Jun 15, 2009 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling oracle stored procedure with os level authentication
Replies: 7
Views: 3323

I don't have access right now to DataStage to test out what you ask, perhaps someone else might know the answer.