Search found 15603 matches
- Tue Jun 01, 2010 7:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to use substring in transformer
- Replies: 4
- Views: 3233
- Tue Jun 01, 2010 7:32 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Installation of Datastage 8.1 into Wondows 7 Home Edition
- Replies: 8
- Views: 6985
- Tue Jun 01, 2010 5:56 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Transformer stage
- Replies: 12
- Views: 2901
- Tue Jun 01, 2010 5:53 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to remove two consecutive quotes in a csv file
- Replies: 4
- Views: 1519
One method is the unix tr command, i.e.
Code: Select all
tr -s '"'- Tue Jun 01, 2010 4:28 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Transformer stage
- Replies: 12
- Views: 2901
- Tue Jun 01, 2010 4:22 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to send data from a .CSV file as part of mail body
- Replies: 1
- Views: 1741
DataStage doesn't do this kind of conversion, but you could replace the commas in the CSV with tabs and get a formatted output if the column lengths are identical or within one tab of each other. Another is to make HTML output, which most mail readers can interpret: x.csv: Col1,Col2,Col3 1,2,3 HTML ...
- Tue Jun 01, 2010 4:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Transformer stage
- Replies: 12
- Views: 2901
- Tue Jun 01, 2010 3:33 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Installation of Datastage 8.1 into Wondows 7 Home Edition
- Replies: 8
- Views: 6985
- Tue Jun 01, 2010 3:20 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Convert to Global Time Zone using the Time Zone conversion
- Replies: 3
- Views: 3081
A timestamp does not contain time zone information, so you need additional data in some form to (a) find out what time zone a given timestamp value is in, and (b) define 'global time' for your application and add/subtract the requisite number of hours from your timestamp. What database (some support...
- Tue Jun 01, 2010 2:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Transformer stage
- Replies: 12
- Views: 2901
- Tue Jun 01, 2010 2:50 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How can I process squential files in date order?
- Replies: 10
- Views: 2152
- Mon May 31, 2010 4:14 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: where we can find facts and dimension tables
- Replies: 2
- Views: 880
ds_dwh - I think you need to research into what fact and dimension tables are and what DataStage actually does with data before progressing further. The DataStage product has no idea of what fact or dimension tables are; the product deals with data at a lower and more granular stage, moving and tran...
- Mon May 31, 2010 4:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: CFF stage reading Mainframe Dataset that has S9(S) Comp -3
- Replies: 13
- Views: 7787
- Mon May 31, 2010 4:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Lookup Error
- Replies: 20
- Views: 10029
- Mon May 31, 2010 4:06 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Speed up ETL Process in Datastage job
- Replies: 12
- Views: 10537
If your DataStage partitioning is identical to your database partitioning then, when loading to the database, each process only needs to load to one partition and is therefore much faster and more efficient than otherwise. This is not necessarily DataStage but general database and, in this case, Ora...