Search found 53125 matches
- Wed Mar 18, 2009 3:20 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Generate Sequential Number using Parallel Transformer
- Replies: 9
- Views: 8517
- Wed Mar 18, 2009 3:17 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: dflot to sflot
- Replies: 1
- Views: 843
It's an alert. It tells you that there is a possibility that a number arriving as a dfloat may not fit into an sfloat. If you are 100%, totally, absolutely certain that your numbers will never be larger than sfloat's maximum size, then you can either change the upstream data type to sfloat or implem...
- Wed Mar 18, 2009 3:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job is getting aborted Coz of lack of table space,
- Replies: 3
- Views: 838
Re: Job is getting aborted Coz of lack of table space,
Hi I am loading data into the Oracle table.But the data volume is relatively huge so the job is getting aborted....as per DBA we are running at the highest table space....is there any performance tuning that we can do to avoid this problem Yes. You have more data than the Oracle tablespace allows f...
- Wed Mar 18, 2009 3:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable to Create or Attach the Printer Segment" Install
- Replies: 2
- Views: 1845
- Wed Mar 18, 2009 2:55 pm
- Forum: General
- Topic: Error while saving Parallel jobs & Compiling
- Replies: 4
- Views: 2508
- Wed Mar 18, 2009 2:22 am
- Forum: General
- Topic: need to some clarification
- Replies: 2
- Views: 865
- Wed Mar 18, 2009 2:18 am
- Forum: General
- Topic: Copying routines across categories
- Replies: 1
- Views: 649
- Wed Mar 18, 2009 2:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Left Pad a string with specified character
- Replies: 1
- Views: 8593
For that specific case, with "X" as the pad character and 4 as the width of the output:
Generalize to other requirements.
Code: Select all
Right(Str("X",4):InLink.TheField, 4)- Wed Mar 18, 2009 2:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Relation Between Datastage And XML
- Replies: 5
- Views: 2171
- Wed Mar 18, 2009 2:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: can i reset datastage services at specific time?
- Replies: 7
- Views: 1867
- Wed Mar 18, 2009 2:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance issue in Batch Processing
- Replies: 2
- Views: 867
- Wed Mar 18, 2009 2:07 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get Fiscal year from the date "2008-04"
- Replies: 10
- Views: 3595
So the logic is
Extract month and year into stage variables and implement the logic either in another stage variable or directly in the FiscalYear output column.
Code: Select all
If Month <= 3 Then Year - 1 Else Year- Wed Mar 18, 2009 2:06 am
- Forum: General
- Topic: Data flow for datawarehouse
- Replies: 2
- Views: 1172
- Tue Mar 17, 2009 9:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How does DataStage handle CLOB datatypes ?
- Replies: 6
- Views: 4949
- Tue Mar 17, 2009 6:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: The Ultimate IBM Tool
- Replies: 1
- Views: 831
The Ultimate IBM Tool
Code: Select all
FUNCTION RandomTLA(Arg1)
Ans = Char(65+Rnd(26)) : Char(65+Rnd(26)) : Char(65+Rnd(26))
RETURN(Ans)