Search found 15603 matches

by ArndW
Wed May 17, 2006 2:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Syntax issue using execute and capturing
Replies: 29
Views: 6974

That will create a select list number 10 with JOBNO values of all records that have a JOBNO > 0, yes.
by ArndW
Wed May 17, 2006 2:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UtilityRunJob with job parameter
Replies: 3
Views: 1425

The correct format was "UtilityRunJob(JobToRun,'Project=':Link1.project,0,0)". What happened when you tried that one (i.e. error message / warning / effects)? The parameter "Project" is case sensitive and must exist in the "JobToRun" job.
by ArndW
Tue May 16, 2006 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Substring from rear
Replies: 5
Views: 1110

I just realized that it was a mnemonic. Use 2 stage variables, first call to get DSGetJobInfo(DSJ.ME,DSJ.JOBNAME) and second one to get the substring from it. Don't use normal derivations, just initial values so it only gets executed one time.
by ArndW
Tue May 16, 2006 10:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ftp'ng a file in compressed format
Replies: 5
Views: 1380

Mqueue series are not files, but data constructs or a communication protocol and I don't think that they can be compressed into files and transmitted.
by ArndW
Tue May 16, 2006 10:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Substring from rear
Replies: 5
Views: 1110

Var2 = DSJ.ME[1,LEN(DSJ.ME)-7]
by ArndW
Tue May 16, 2006 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Syntax issue using execute and capturing
Replies: 29
Views: 6974

Colin, the TCL syntax to select a column is "SELECT {filename} [{selection criteria}] SAVING {column name} [TO {listno}]"
by ArndW
Tue May 16, 2006 9:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ftp'ng a file in compressed format
Replies: 5
Views: 1380

The FTP stage in DS has the advantage that it transmits the data row-by-row. If you gzip/tar/compress your file then it makes much more sense to use the normal ftp from UNIX or (even better) a rcp or scp. You can call operating system commands from almost anywhere in DS.
by ArndW
Tue May 16, 2006 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Server - Benchmark
Replies: 11
Views: 3267

Sizing systems and software has always been more of an arcane art than a science and with multiuser systems becoming increasingly complex. It is impossible to come up with a formula that is accurate enough to be usable.
by ArndW
Tue May 16, 2006 7:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference in Sequential file for Server and Parallel editio
Replies: 4
Views: 1006

Dashpriya - please post a new thread, since your question has nothing to do with the contents of this one.

If you have only one column then the delimiter shouldn't make a difference. Can you write to a sequential file as a test to make sure that the problem truly lies in the FTP stage?
by ArndW
Tue May 16, 2006 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Syntax issue using execute and capturing
Replies: 29
Views: 6974

Try using "EXECUTE" instead of "PERFORM" and add in the "CAPTURING ScreenIO RETURNING ErrorCode" and put in a DSLogInfo to show the values of both variables ScreenIO and ErrorCode. This is why I tend to prefer using EXECUTE since it allows redirection and capture of the output.
by ArndW
Tue May 16, 2006 4:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Configuration Problem
Replies: 4
Views: 2509

Did you put these exports into the dsenv file in your DSHOME directory? If not, then changing the setting in your user's environment doesn't affect the background DS processes. If you look into your director log for the file it will echo the environment settings - are the correct entries shown there?
by ArndW
Tue May 16, 2006 4:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Syntax issue using execute and capturing
Replies: 29
Views: 6974

What happens when you append a ';' semilcolon to the DELETE? I am assuming that this gets interpreted as a normal TCL delete statement which will ask for a confirmation - thus causing the "hang".
by ArndW
Tue May 16, 2006 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference in Sequential file for Server and Parallel editio
Replies: 4
Views: 1006

It seems the difference isn't in the sequential file but in how you are using the FTP stage. Check your EE FTP stage defnitions, most likely you are defining the space character as a special one (delimiter,escape or the like) and this is causing the file to be reformatted.
by ArndW
Tue May 16, 2006 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: access to unix isam file
Replies: 3
Views: 1051

There are ODBC drivers out there for C-ISAM files; I'm not sure but assume the IBM/Informix have them but there are 3rd party tools out there as well. This would be easier than using a DataStage programming to manually disect the internal formats.
by ArndW
Mon May 15, 2006 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: access to unix isam file
Replies: 3
Views: 1051

UNIX has no ISAM file structure builtin, this would always be some structure generated by a software vendor. Depending upon that implementation it might be possible for DataStage to read these files sequentially and skip over any internal indexing objects. Do you know your program or application tha...