Search found 15603 matches

by ArndW
Sun Jun 29, 2008 4:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP plug-in
Replies: 4
Views: 1607

The error message you are receiving is odd, particularly as the data transfer is successful.

If you FTP this file using the command line program, does it generate any warnings or errors?
by ArndW
Sun Jun 29, 2008 4:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Function
Replies: 1
Views: 754

The Convert() function will not have an effect on the order of columns in a record. If you are using the pipe symbol as a column delimiter and you are changing the whole string then it might have that effect.
by ArndW
Sun Jun 29, 2008 4:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calculating Date -1 from Timestamp
Replies: 3
Views: 1378

The TimeStampFromSecondsSince() will help you. There are 60*60*24 seconds in a day.
by ArndW
Sat Jun 28, 2008 2:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP plug-in
Replies: 4
Views: 1607

Are you communicating between host and UNIX? Is this a text or a binary transfer and is the file large? Does the error always happen or just sometimes?
by ArndW
Fri Jun 27, 2008 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upgrade to Datastage Version8
Replies: 3
Views: 841

Yes, you can run multiple instances of DataStage on a given machine.
by ArndW
Fri Jun 27, 2008 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: couldn't set locale correctly
Replies: 6
Views: 1474

Check the script, most of the commands set and export environment variables. What other commands do you have that might be generating this error message?
by ArndW
Fri Jun 27, 2008 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: couldn't set locale correctly
Replies: 6
Views: 1474

Does that mean you get the error message from the "dsenv" script?
by ArndW
Fri Jun 27, 2008 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: couldn't set locale correctly
Replies: 6
Views: 1474

what options did you use during install? What is the UNIX system language set to? What does "env | grep NLS" return?
by ArndW
Fri Jun 27, 2008 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Calculation.
Replies: 5
Views: 1434

Not quite sure what the rule is, what is the formula and answer for this age:

Date1 27/06/2008
Date2 01/06/2008
by ArndW
Fri Jun 27, 2008 6:48 am
Forum: General
Topic: Delete of not-used hash-files
Replies: 7
Views: 2085

Check out this post for one way to do this.
by ArndW
Fri Jun 27, 2008 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Count of Delimiter(special character) in a Record
Replies: 5
Views: 1736

The vertical tab ASCII character is 11, not 13.
by ArndW
Fri Jun 27, 2008 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: VARCHAR to BigInt
Replies: 4
Views: 2075

Many conversions from VarChar() to other types, particularly numeric ones, can be done implicitly. You will need to use the StringToDate() function for the date conversion if your job uses transform stages, otherwise the modify stage does conversions as well, but uses other function names and a diff...
by ArndW
Fri Jun 27, 2008 5:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error when loading XML
Replies: 6
Views: 2137

We just installed the "namespace" patch (Which also addresses end-of-wave issues) and it works like a charm.
by ArndW
Fri Jun 27, 2008 5:36 am
Forum: General
Topic: Interrupt System Call
Replies: 3
Views: 830

There are many system calls and many ways to interrupt them. Most system calls block out interrupts they can't or don't want to handle. What system call and what interrupt is it in your case? Which stage?
by ArndW
Thu Jun 26, 2008 8:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Count of Delimiter(special character) in a Record
Replies: 5
Views: 1736

Code: Select all

Count(InputField,CHAR(13))
should do the trick for you.