Search found 6797 matches
- Mon May 28, 2007 12:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Number of projects
- Replies: 2
- Views: 615
- Mon May 28, 2007 12:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Padchar application not working properly
- Replies: 5
- Views: 1206
- Mon May 28, 2007 11:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To Eliminate Double Quotes from the Source file
- Replies: 12
- Views: 3105
No. The sequential file properties "quote character" is something totally different. The OP gave us sample data that shows very clearly that the data has two fields, the "ID" and the "Name". The name has quotes within the data, inpite of surrounding the data. Hence the quote character option within ...
- Mon May 28, 2007 11:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Padchar application not working properly
- Replies: 5
- Views: 1206
- Mon May 28, 2007 9:57 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Padchar application not working properly
- Replies: 5
- Views: 1206
- Mon May 28, 2007 7:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sort
- Replies: 5
- Views: 959
- Mon May 28, 2007 7:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Converting Date format
- Replies: 7
- Views: 2653
- Mon May 28, 2007 7:44 am
- Forum: General
- Topic: Use of index function
- Replies: 18
- Views: 3993
Then there is something fishy in the data.
Try the following and see what the following shows in your output
Try the following and see what the following shows in your output
Code: Select all
Field(in.Data, ".", 1)
- Mon May 28, 2007 7:40 am
- Forum: General
- Topic: best practise
- Replies: 2
- Views: 850
Each stage has its own functionality. Some functionalities can occur in different stages. I know of no such document, besides going through archives and learning for the suggestions of our gurus here. For eg: a modify stage is to be preferred over a transformer. Sort stage over in built sort operato...
- Mon May 28, 2007 7:37 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: To Eliminate Double Quotes from the Source file
- Replies: 12
- Views: 3105
- Mon May 28, 2007 7:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: migration tool
- Replies: 2
- Views: 994
- Sun May 27, 2007 3:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Controller Problem: Error Calling DSRunJob Code=-99
- Replies: 2
- Views: 2288
- Fri May 25, 2007 1:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Substring in PE
- Replies: 2
- Views: 907
Code: Select all
YourColumn[1,2]Basically the first number tells you position and the second number tells you the length from that position to substring. The very same method is available in server jobs too.
- Fri May 25, 2007 12:35 pm
- Forum: General
- Topic: Starting Datastage on Red Hat 3.0 Linux server
- Replies: 1
- Views: 1674
See if this post helps.
- Fri May 25, 2007 10:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Preprocess csv file
- Replies: 3
- Views: 815
1) As long as the comma is inside quotes, it should be fine, no matter how many commas you have. I am sure you can tweak your logic to handle that. 2) You need to choose your quote depending upon the data. If the data has single quotes, then choose double quotes for surrounding varchars that contain...