Search found 6797 matches

by DSguru2B
Mon Jul 17, 2006 11:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mainframe file landed on Unix afterFTP-packed field handling
Replies: 1
Views: 511

Do a "search for all terms" on packed file.
This will retrieve many posts that will assist in answering your question.
by DSguru2B
Mon Jul 17, 2006 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help on tuning the job
Replies: 2
Views: 1255

First you will have to see whether the select or the insert is taking more time. Pull the records to a sequential file stage and make a note of the performance. Do it for just 100k records. Then load from seq. file stage to the target. Note the performance level again. This will give you an idea on ...
by DSguru2B
Mon Jul 17, 2006 7:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Revisit : Duplicate
Replies: 6
Views: 1055

vsi wrote:a) Here I dont have or cant check for count(key)=1.


I understand that you cannot do a count on key as one doesnt exist now. But in order to to find out if duplicates exist or not, you need to do a count on the two columns.
by DSguru2B
Mon Jul 17, 2006 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: join stage production issues
Replies: 9
Views: 2769

Protected means read only. Cannot be edited.
by DSguru2B
Mon Jul 17, 2006 1:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fixed width columns on the target file.
Replies: 7
Views: 2772

Fixed width file and a delimitted file are two different formats. A fixed width cannot be delimitted and a delimitted cannot be fixed width. If you want the length of the columns from then source to be preserved and have a delimiter then do as Rohit suggested, but dont call it fixed width.
by DSguru2B
Mon Jul 17, 2006 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DateTime overflow error
Replies: 4
Views: 1225

Are you sending in milliseconds. If you are then dont. SQLServer will stick .000 at the end.
by DSguru2B
Mon Jul 17, 2006 1:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Novice question
Replies: 15
Views: 3390

Yes, but in an event of a rejection, warnings are generated. If you dont see any warnings then as Craig mentioned, maybe you are loading it somewhere else. Like say mabye in one environment and while hitting view data the default parameter might be pointing to someother environment. Possible ...?
by DSguru2B
Mon Jul 17, 2006 12:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Revisit : Duplicate
Replies: 6
Views: 1055

And when you say duplicates not found, you mean duplicates on Col1 and Col2 for step 1
Col1 and Col3 for step 2
and Col2 and Col3 for step 3, Right?
Or is it completely identical rows as shown by your sample data?
by DSguru2B
Mon Jul 17, 2006 11:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Revisit : Duplicate
Replies: 6
Views: 1055

Only your conditions have changed. Cant you make changes to the conditions in your other post and use that?
For others who are wondering what post i am talking about, its here
http://www.dsxchange.com/viewtopic.php?t=101864
by DSguru2B
Mon Jul 17, 2006 10:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash file size more than 2 GB
Replies: 3
Views: 897

Load the source in the same database as the lookup table and do a database level join.
by DSguru2B
Mon Jul 17, 2006 8:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rollup Data
Replies: 11
Views: 2193

Offcourse you can. Break the query into two. Query1: select B.Region,sum(B.Sal)As Sal from table B group by Region Since this query is at the Region level, it will retrieve lesser amount of rows as compared to the second query, load this into hashed file, keyed on Region. Query2: select A.Re...
by DSguru2B
Sun Jul 16, 2006 5:26 pm
Forum: Data Integration
Topic: Handling SCD with SSIS
Replies: 3
Views: 9485

Its pronounced "Dun Lairy" :lol: , Right ?
by DSguru2B
Sun Jul 16, 2006 1:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs of Job Sequence
Replies: 3
Views: 1188

Here, read Kim's reply in this post
http://www.dsxchange.com/viewtopic.php?t=94025

In his second para, he has mentioned GenHtml will get you what you want.
by DSguru2B
Sun Jul 16, 2006 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing correct English in this forum when asking questions!
Replies: 21
Views: 5302

You guyz are having too much fun. Way to much fun.
Enjoy :wink:
by DSguru2B
Fri Jul 14, 2006 6:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date comparision
Replies: 6
Views: 1174

What is the format of date in your mainframe file. Can you give us a snapshot of sample data?