Search found 15603 matches

by ArndW
Wed Feb 21, 2007 12:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Size in Bytes for the DS Datatypes
Replies: 1
Views: 609

Asit, The DataStage server engine only has one real datatype (the other is an internal one used to store file pointers), and it is not a contiguous string whose size can be measured in bytes. Everything is a string in Server.
by ArndW
Wed Feb 21, 2007 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP Special Chars Ascii 0 and 1
Replies: 5
Views: 1631

I would try using "binary" instead of "ascii" transfer, that avoids any mapping of characters; and if you are going from two identical OS's that shouldn't cause you any proglems. I'm not sure where you draw the distinction between reading a remote file and transferring it (for purposes of reading). ...
by ArndW
Wed Feb 21, 2007 4:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Empty Debug window
Replies: 8
Views: 3397

Welcome to DSXchange, Ruud.

Have you actually set breakpoints and started the debug run? The debugger is a very powerful tool and I don't use it as much as I should, but it does take a bit of practice to get it working the way you expect.
by ArndW
Wed Feb 21, 2007 3:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage job not started but it is showing running state
Replies: 10
Views: 4033

Do you have a before-job subroutine call? Also, do any other jobs show this problem or just this one?
by ArndW
Wed Feb 21, 2007 2:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sending Email problem
Replies: 7
Views: 1705

Have you checked your mail server logs to see if the request even made it that far?
by ArndW
Tue Feb 20, 2007 10:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning in job and aborted
Replies: 2
Views: 843

What is the Database DDL for "KEYWORD" and what have you declared it as in your DS source stage?
by ArndW
Tue Feb 20, 2007 10:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can data sets support concurrent writes?
Replies: 2
Views: 587

Peter - concurrent reads are OK but not concurrent writes.
by ArndW
Tue Feb 20, 2007 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance with Numeric and Date Validation
Replies: 3
Views: 1553

The odds are that your job is bottlenecked on CPU; especially if your source and target files are sequential ones as you've indicated. If you have a multi-cpu system or one with CPU capacity left, then I would highly recommend using 2 transform stages and splitting the CPU consuming processings acro...
by ArndW
Tue Feb 20, 2007 8:19 am
Forum: General
Topic: Modifying Stage Variables
Replies: 3
Views: 1338

Kevin - welcome to DSXchange! The server forum is more applicable to this question, but it isn't completely out of place in the General one. If you specify "initial value" for a stage variable, that will only get executed one time. If you specify a derivation for a stage variable, it will be re-comp...
by ArndW
Tue Feb 20, 2007 8:13 am
Forum: General
Topic: DataStage Basic Complier Problems
Replies: 5
Views: 2544

The compiler is called using the "BASIC" command. It is better to create the folder as type 19 so it doesn't do funky things with your filename. BASIC commands do not need to be terminated with a semicolon.
by ArndW
Tue Feb 20, 2007 4:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating custom triggers in Datastage sequencer
Replies: 6
Views: 6002

...This isn't going to be very fast. I hate quoting myself, but I re-read this thread and realized that I've become infected by the renowned British understatement sickness. I should correct that - if you call "dsjob" from a trigger it will run INCREDIBLY slowly, even if you don't wait for the job ...
by ArndW
Tue Feb 20, 2007 4:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF VR record type
Replies: 4
Views: 1592

I think the poster might be referring to vectors, but they are adequately covered in the CFF stage documentation.
by ArndW
Tue Feb 20, 2007 4:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: environmental variable in a rountine
Replies: 12
Views: 3810

TRIM() can be used to removed trailing spaces. But I think you have a @FM in there as well - see my previous post.
by ArndW
Tue Feb 20, 2007 3:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating custom triggers in Datastage sequencer
Replies: 6
Views: 6002

This is not a datastage issue, but a trigger question for whatever database you are using. If your DB allows external calls, you can start a job using the OS command "dsjob" and appropriate options. This isn't going to be very fast.
by ArndW
Tue Feb 20, 2007 3:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read data from Excel files
Replies: 4
Views: 1417

Can you access the ODBC source on your DS server using MSQuery? I usually start with that when I have problems - if it is visible and works there, it should work in DS as well.