Search found 6797 matches

by DSguru2B
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

Its 999. Refer here
by DSguru2B
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

Ok. Let them be inserted with blocks. Do a select on this table and then load it to a flat file or send it to peek stage. Do you see those blocks in the file or log file? Do you have NLS enabled at the database and not datastage?
by DSguru2B
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 ...
by DSguru2B
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

No. It wont. That test was just to make sure that you were actually getting 'space' as a pad character.
What if you change your target sql type to varchar. Does that take care of the problem? The database will put the necessary spaces itself.
by DSguru2B
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

What happens when you load a few records to a flat file or dataset? Do you see the block characters there too?
by DSguru2B
Mon May 28, 2007 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort
Replies: 5
Views: 959

Yea, do an "order by clause" on this unsorted table and load it to a flat file. Pass a truncate on the table and reload the sorted data.
by DSguru2B
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

I love posts like these, makes me laugh. Especially after Craig has answered to it, :lol:
by DSguru2B
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

Code: Select all

Field(in.Data, ".", 1)
by DSguru2B
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...
by DSguru2B
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

Welcome Aboard :)
Please avoid using words that demand urgency. This will only delay your response. Since you are new I will cut you some slack.
You can look into the CONVERT() function in the transformer stage.
by DSguru2B
Mon May 28, 2007 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: migration tool
Replies: 2
Views: 994

I know Kim was talking about bulding such a tool a couple of years back. Dont know what happened to it. I know he had built a DataStage to PLSQL and DataStage to VB converter. Dont know about conversion between tools.
by DSguru2B
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

Was there any other error/warning message? Did you try searching on the error message?
by DSguru2B
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.
by DSguru2B
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.
by DSguru2B
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...