Search found 53125 matches
- Wed Oct 13, 2004 3:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Producing files in UTF8 format
- Replies: 4
- Views: 1907
You can determine whether national language support (NLS) is enabled or not easily; every passive stage link properties window will include an NLS tab. Alternately, you could examine the uvconfig file in the DataStage "home" directory ($DSHOME) and look for the NLSMODE parameter. If it's present, an...
- Wed Oct 13, 2004 3:18 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: datasets
- Replies: 3
- Views: 1645
DataStage does not limit the size of a dataset, but your operating system may. Does your operating system have a limit set on file size? If you are not running on a 64-bit-enabled file system, the maximum UNIX file size is 2GB. What is your ulimit setting for file size? Type the command ulimit -a to...
- Wed Oct 13, 2004 3:12 pm
- Forum: General
- Topic: Passing working Date to to JOB Parameter
- Replies: 3
- Views: 3336
- Wed Oct 13, 2004 3:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: No data uploaded to the server
- Replies: 2
- Views: 1541
Look in the job log file for messages like "active stage finishing". From that, determine how many rows were read, how many were written. Look also for messages (in the log) from Oracle that might indicate that the data your job sent were rejected - the messages will usually tell you why, for exampl...
- Wed Oct 13, 2004 3:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Hello OR logic in transformer Stage
- Replies: 7
- Views: 3432
- Tue Oct 12, 2004 8:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Execute Oracle Stored Procedure in Routine
- Replies: 10
- Views: 8077
- Tue Oct 12, 2004 3:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle control File(.ctl) for SQLLDR to Column Specification
- Replies: 4
- Views: 2040
- Tue Oct 12, 2004 3:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine validation between two dates
- Replies: 1
- Views: 749
- Tue Oct 12, 2004 3:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to convert 21 digits to 13 digits uniquely
- Replies: 18
- Views: 4004
- Tue Oct 12, 2004 3:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: job Parameters for Sequencer Jobs
- Replies: 16
- Views: 7595
- Tue Oct 12, 2004 3:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Improper DatType Error
- Replies: 4
- Views: 856
- Tue Oct 12, 2004 3:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Hello OR logic in transformer Stage
- Replies: 7
- Views: 3432
Re: Hello OR logic in transformer Stage
Why do you need to change? The logic you have will work perfectly well.sushanth wrote:Hai I need to change derivations in Transformer stage from OR logic to IF then Else if ,for the following Logic help
If IsNull(Tocl1) Or Len(Tocol1) = 0 Then 'sample' Else Tocol1
- Tue Oct 12, 2004 3:04 pm
- Forum: Enhancement Wish List
- Topic: DataStage Restricted Mode
- Replies: 11
- Views: 5583
- Tue Oct 12, 2004 1:44 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to convert 21 digits to 13 digits uniquely
- Replies: 18
- Views: 4004
- Mon Oct 11, 2004 9:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to convert 21 digits to 13 digits uniquely
- Replies: 18
- Views: 4004
Why not just convert to hexadecimal?
A 21-digit decimal number made up entirely of "9" reduces to DE9FFFFF (that is, eight characters) in hexadecimal.
The conversion is easy. Useto convert to hexadecimal.
A 21-digit decimal number made up entirely of "9" reduces to DE9FFFFF (that is, eight characters) in hexadecimal.
The conversion is easy. Use
Code: Select all
Oconv(TheNumber, "MX")