Search found 4605 matches

by kduke
Fri Sep 01, 2006 1:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: xml metadata importer tool
Replies: 6
Views: 4528

I doubt if it is possible. The XML output of a job is very complex with lots of repeating groups. It does sound reasonable though. I would not trust it knowing how complex this data structure is. I would think it would be easier to edit the repository directly. There maybe cases where your idea may ...
by kduke
Thu Aug 31, 2006 5:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashfile corrupted
Replies: 7
Views: 1213

We never assume a hashed file retains data. We always clear or delete and load the hashed file every ETL run. If you have large amounts of data in your hashed files then rethink how you are using them.
by kduke
Thu Aug 31, 2006 5:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Has anybody loaded data sucessfully to SQL Server?
Replies: 3
Views: 858

I would bet that your columns should be nvarchar.
by kduke
Thu Aug 31, 2006 1:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Strategy
Replies: 12
Views: 1688

Sorry, but it should not happen. Got to be something we are missing.
by kduke
Thu Aug 31, 2006 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Strategy
Replies: 12
Views: 1688

Nope.
by kduke
Thu Aug 31, 2006 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Partitioner performances
Replies: 2
Views: 967

Try them both and let us know.
by kduke
Thu Aug 31, 2006 9:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fetch job Stats
Replies: 8
Views: 2137

Do a search on EtlStats.
by kduke
Thu Aug 31, 2006 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Strategy
Replies: 12
Views: 1688

Right.
by kduke
Thu Aug 31, 2006 7:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: xml metadata importer tool
Replies: 6
Views: 4528

If you want to go against repository tables then do a search on DS_JOBOBJECTS. This is where the column names are stored for each link. The record structure of this hashed file or table varies by the OLETYPE field. This field represents the stage type and or link type as to direction either input or...
by kduke
Wed Aug 30, 2006 6:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job which track of the jobhistory, rowhistory,paramhistory
Replies: 18
Views: 4938

You are correct, all of these are in there. It seems to me there used to be missing but I just checked.
by kduke
Wed Aug 30, 2006 6:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job which track of the jobhistory, rowhistory,paramhistory
Replies: 18
Views: 4938

You are correct, all of these are in there. It seems to me there used to be missing but I just checked.
by kduke
Wed Aug 30, 2006 6:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Strategy
Replies: 12
Views: 1688

Does not make sense. An update only should fail or specific records. These should not work the same. The order is important on upserts whether update and then insert or insert then update based on which is more common.

Does this table have a primary key?
by kduke
Wed Aug 30, 2006 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Strategy
Replies: 12
Views: 1688

Are you getting blocked? Look at your database lock table. Make sure you have nolock on your source queries.
by kduke
Wed Aug 30, 2006 11:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trim first character in Transformer
Replies: 3
Views: 1183

I forgot left(), right() and trim(). Trim() can delete any character not just spaces.
by kduke
Wed Aug 30, 2006 11:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trim first character in Transformer
Replies: 3
Views: 1183

The server transform has substrings(). You can also use the form XYZ[StartPos, EndPos]. You can use convert(), change() or ereplace() to scrub this field. There lots of functions to do what you need.

Even PX has lots of ways to scrub this.