Search found 15603 matches

by ArndW
Mon Apr 03, 2006 8:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SpecifyingMultipleParameters inExecuteCommandActivity(7.5.1)
Replies: 4
Views: 1043

I think that the ExecuteCommandActivity should call a UNIX shell script that you can write which then does your loop for you.
by ArndW
Mon Apr 03, 2006 4:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status of Multi-Instance job..
Replies: 6
Views: 1156

A multi-instance job is only in the DS_JOBS one time, the instance information is found only in the log file for that job.
by ArndW
Mon Apr 03, 2006 2:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: keymgt slow performance?
Replies: 37
Views: 10493

Rachel, perhaps you could confirm that your Premium/Charter membership has paid off The "2 1 1" and "2 1 4" are the command line options for File Type, Modulo, Group Size respectively. For this file the group size is not important - I think it is a matter of taste for some of the old timers , I alwa...
by ArndW
Mon Apr 03, 2006 1:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: keymgt slow performance?
Replies: 37
Views: 10493

If you look at the code for the two routines you will see where they execute the command EXECUTE "CREATE.FILE SDKSequences 2 1 1" in one and Call DSExecute("UV", "CREATE.FILE SDKSequences 2 1 4", Output, Code) in the other. If you go to your ADMINistrator tool and execute the command line "CLEAR.FIL...
by ArndW
Mon Apr 03, 2006 1:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: keymgt slow performance?
Replies: 37
Views: 10493

Rachel, if you recall in the beginning of this thread, I asked if you could check the file sind I recalled that it was a type 2 and shouldn't contain many records. This would account for the slow performance you are seeing. You most likely called this up one time and passed it key numbers instead of...
by ArndW
Sun Apr 02, 2006 4:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Installation DataStage - RedHat
Replies: 6
Views: 1502

Rupesh,

DS is only supported on Red Hat Enterprise Linux AS. You stated you have RedHat 9.3 Aurix so the answer that Ray gave stands. By the way, I looked at RedHat's site and couldn't find any reference to "Aurix"
by ArndW
Sun Apr 02, 2006 2:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Char 1 To Binary type
Replies: 5
Views: 1264

If the database has it declared as CHAR(1) then why are you declaring it differently in DS and what happens if you keep the CHAR(1) in you DataStage job?
by ArndW
Sat Apr 01, 2006 4:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help Needed - Job Compilation is extremely slow
Replies: 7
Views: 2414

Isn't the c++ compiler on UNIX limited to a given number of concurrent compiles, so if that limit is reached the compiler waits until it can compile? That might explain some slowdowns in compilation times.
by ArndW
Sat Apr 01, 2006 4:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Char 1 To Binary type
Replies: 5
Views: 1264

Unless you explain nobody will know the point.

1. What is your column defined as in your database DDL?
2. What is your column defined as in your source stage accessing the database in DataStage?
by ArndW
Fri Mar 31, 2006 1:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using an os390/ebcdic assembler load file
Replies: 1
Views: 545

If your file is defined in a simple COBOL copybook without OCCURS DEPENDING ON or similar complex construct you won't even have to use a CFF stage to read it.

You cannot do lookups on a sequential file, but you can load that file to a hashed file stage and do lookups on that.
by ArndW
Fri Mar 31, 2006 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo returns a -1 in my routine...
Replies: 25
Views: 5354

How are you calling DSAttachJob? I can't recall the "correct" way at the momen, but I usually will check for a JobHandle value gt 0 although the handbook states one shouldn't rely on that.
by ArndW
Fri Mar 31, 2006 12:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo returns a -1 in my routine...
Replies: 25
Views: 5354

You should check for errors on DSAttachJob() and the -1 is a DSJE.BADHANDLE (I'm not sure if I have the code right from memory, but it's something like that).
by ArndW
Fri Mar 31, 2006 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Vs Routine...Performance Question ?
Replies: 4
Views: 904

The routine will be faster. but How are you planning on getting your 500,000 x 11 [10 cols + 1 key] pieces of information into your routine? If your routine does a hashed file lookup to get this information then your scenario 1 is suddenly the better one, since you can pre-load the data to memory an...
by ArndW
Fri Mar 31, 2006 10:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Exporting Jobs using VC
Replies: 2
Views: 600

The most common reason for not being able to write to RT_CONFIG<nnn> files is insufficient UNIX access rights, often caused by not setting the user's umask correctly. The second most common cause is a full disk.
by ArndW
Fri Mar 31, 2006 9:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Client hangs while trying to view the log files
Replies: 11
Views: 2636

Do you have your deadlock daemon set up or running on this system? You could try to use the "dsjob -log <project> <job>" to see if you can get at the logs another way or if that process is also hanging.