Search found 15603 matches

by ArndW
Fri May 02, 2008 1:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter Stage parameterization
Replies: 3
Views: 1752

I am confused as to whether your problem is in the Job Sequence and getting the 2 values or whether it is in the PX job after passing those two values?
by ArndW
Thu May 01, 2008 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there any way to catch a record that is giving warning.
Replies: 4
Views: 1371

PX makes that kind of debugging difficult. Do you know which particular conversion is causing it? If not, you would have to set APT_DISABLE_COMBINATION to find out which transform stage.
by ArndW
Thu May 01, 2008 9:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert nullable Column to Non Nullable Column?
Replies: 10
Views: 9078

Yes, I read the title part and that is why I put my post in. I didn't realize you were going from non to nullable, in which case you can do this in just about any stage.
by ArndW
Thu May 01, 2008 9:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading excel files
Replies: 6
Views: 1831

You cannot link directly to ODBC on UNIX without {buying and} installing 3rd parts software.
by ArndW
Thu May 01, 2008 9:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet Size
Replies: 6
Views: 1736

Naah, that isn't the case when it comes to opinions. And I always favor bounded over unbounded strings but when it comes to DataSets with large volumes they save both space and time. Using the fixed-length max size makes indexing faster, but the cost in space is horrendous with strings that are "spa...
by ArndW
Thu May 01, 2008 9:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert nullable Column to Non Nullable Column?
Replies: 10
Views: 9078

Do it in a transform stage, but you need to ensure that the new, non-nullable, column doesn't contain any nulls. You can use several null-handling functions to do this.
by ArndW
Thu May 01, 2008 9:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet Size
Replies: 6
Views: 1736

Actually, I stated the exact opposite regarding storage size of unbounded VarChar() fields for datasets.
by ArndW
Thu May 01, 2008 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Truncating zero's in .csv(excel file)
Replies: 12
Views: 9088

That's the first mention of SAP that I saw in this thread. I thought you wanted Excel to keep the formatting and that is what I played with. Can't help you with LSMW.
by ArndW
Thu May 01, 2008 7:28 am
Forum: General
Topic: JobName of the failed job while sending e-mail notification.
Replies: 6
Views: 2938

In your job sequence you have that information available to you. Each Job Activity has 3 User Activity variables associated with it, the $JobName, $JobStatus and $UserStatus. You can use those in the sequence, for instance in a User Variables Activity, to set a string value with the job name of the ...
by ArndW
Thu May 01, 2008 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Truncating zero's in .csv(excel file)
Replies: 12
Views: 9088

I tried it and you are correct, then I played around with the CSV format and found that

Code: Select all

="00000";="0000";="000"


does import correctly. Could you change your job to write out this field format?
by ArndW
Thu May 01, 2008 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataSet Size
Replies: 6
Views: 1736

If you use unbounded VarChar() columns you will use a lot less space if your strings are nowhere near to being at their maxiumum length. for example, with a single node if you create a DataSet with 1 million rows declared as varchar(1024) and fill them with "hello world" the file size will be 984.38...
by ArndW
Thu May 01, 2008 3:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Truncating zero's in .csv(excel file)
Replies: 12
Views: 9088

Can you not explicit declare them as VarChar() columns, then they get quoted in the .csv file.
by ArndW
Thu May 01, 2008 3:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lnk file in project directory
Replies: 4
Views: 1498

What kind of contents did they have?
by ArndW
Thu May 01, 2008 3:26 am
Forum: Site/Forum
Topic: How did you learn DataStage?
Replies: 34
Views: 29120

Raftsman - for a while (during my wait for my US visa) I was working out of the Toronto office and we had a number of early adopters including Shoppers Drug Mart and I thought that the DS market was doing quite well. Then again, it has been a couple of years... Or are you referring to the Francophon...
by ArndW
Thu May 01, 2008 3:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lnk file in project directory
Replies: 4
Views: 1498

Could it be the default file name for a sequential file output? Have you tried "file <name>" to see what type it is or looked into it via a command such as "head -10 <name>"?