Search found 6797 matches
- Tue Sep 26, 2006 3:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: create multiple records from a single record.
- Replies: 5
- Views: 1895
- Tue Sep 26, 2006 3:44 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Split single row into multiple rows
- Replies: 1
- Views: 885
- Tue Sep 26, 2006 2:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: create multiple records from a single record.
- Replies: 5
- Views: 1895
- Tue Sep 26, 2006 1:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Add month to date
- Replies: 5
- Views: 1689
yea, you will have to code it. Your routine should be smart enough to handle leap years, and know when to add 30 days and when to add 31 days. Its not easy, i agree, but its dooable. OR if you want the easy way out, load your flat file in a temp table and then use oracle's function of add_months in ...
- Tue Sep 26, 2006 12:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unziping file from Windows environment
- Replies: 25
- Views: 9309
- Tue Sep 26, 2006 12:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Add month to date
- Replies: 5
- Views: 1689
- Tue Sep 26, 2006 12:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Continuous loop - Loop Activity?
- Replies: 3
- Views: 1181
- Tue Sep 26, 2006 11:04 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: [Server] dsjob returncode list
- Replies: 3
- Views: 2682
Search is your best friend around here. Check out the last reply in thispost.
- Mon Sep 25, 2006 9:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unziping file from Windows environment
- Replies: 25
- Views: 9309
- Mon Sep 25, 2006 9:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datawarehouse's Data Merging Considerations
- Replies: 7
- Views: 2002
- Mon Sep 25, 2006 9:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage Development Environment Setup Consideration
- Replies: 6
- Views: 2665
- Wed Sep 20, 2006 2:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 timestamp issue
- Replies: 2
- Views: 602
- Tue Sep 19, 2006 10:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date format conversion: YYYY-MM-DD to YYYYMMDD
- Replies: 3
- Views: 4081
or you can use the following code
OR
Code: Select all
Oconv(Iconv(InLink.Date, "DYMD[4,2,2]"), "DYMD[4,2,2]":@VM:"MCN")
OR
Code: Select all
DIGITS(InLink.Date)- Tue Sep 19, 2006 10:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Conver columns to rows in oracle
- Replies: 5
- Views: 1292
I did something like this a few months back. Check out thispost for more details.
- Mon Sep 18, 2006 10:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unix command Help please..
- Replies: 8
- Views: 2540
Google for sed operation. I think you will need to use something like
You need to double check my syntax.
Code: Select all
sed -e 'g/Hai//s' -e 'g/Hello//s' filename
You need to double check my syntax.