Search found 4992 matches

by kcbland
Tue Jan 31, 2006 2:46 pm
Forum: Site/Forum
Topic: Compensation for Inner Circle?
Replies: 2
Views: 1776

No poster is compensated in any manner, including the Inner Circle. Next time come to IBM Live and meet us at the DSXchange booth, or take the classes being offered.
by kcbland
Tue Jan 31, 2006 2:42 pm
Forum: Site/Forum
Topic: Premium Content
Replies: 26
Views: 13824

You folks do realize there are costs associated with this site (hardware, software, electricity, etc)? Again, your questions and answers are NOT BLOCKED. Share all you want.
by kcbland
Tue Jan 31, 2006 2:39 pm
Forum: Site/Forum
Topic: Premium Content
Replies: 26
Views: 13824

Do you have any concept of how much time the top 10 posters have spent answering questions? How about hosting the hardware and making the embellishments to the site source code? Who do you think pays the electricity bills?
by kcbland
Tue Jan 31, 2006 10:55 am
Forum: Site/Forum
Topic: new FREE DataStage forum
Replies: 24
Views: 13431

Not to mention that when a posters knowledge becomes as potent as Rays or Craigs or Arnds, their answers are not Premium content. You have a competing free resource. But, do you think they are spending the same effort to answer?
by kcbland
Tue Jan 31, 2006 10:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Selective Command Line Export?
Replies: 32
Views: 14321

kaps wrote:DSExport command can also export individual jobs.

Thanks


Care to share the exact command line syntax for how you accomplished this?
by kcbland
Tue Jan 31, 2006 10:51 am
Forum: Site/Forum
Topic: new FREE DataStage forum
Replies: 24
Views: 13431

Notice that short and concise answers are not premium content hidden. But if you look at the history of the forum, with long lengthy posts, you see the value there. Notice this post continues under the Premium answer because I'm windbagging. As far as going forward, we're constantly getting the same...
by kcbland
Tue Jan 31, 2006 10:48 am
Forum: Site/Forum
Topic: new FREE DataStage forum
Replies: 24
Views: 13431

Not to mention we'll be giving summaries in the top 3 lines, providing detail behind the button. So, if you're needing in-depth, time-consuming answers, consider the effort on our part.
by kcbland
Tue Jan 31, 2006 10:46 am
Forum: Site/Forum
Topic: new FREE DataStage forum
Replies: 24
Views: 13431

gmorey wrote:If it is free, why do I have to pay to read your posts?
Premium answers from the Inner Circle and the ETL Experts Panel. Other posters answers are still FREE.
by kcbland
Tue Jan 31, 2006 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: READU threshold reached
Replies: 14
Views: 3769

There's a maximum number of readu locks allowed. I see this a lot and yes performance is impacted with every write. By the way, sequential files also incur readu locks, but only on the file. readu locks on hash files are at the row level.
by kcbland
Mon Jan 30, 2006 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue
Replies: 8
Views: 2028

Is it 5 seconds to get the first row or the last row of data? Many people confuse the quick response of the first found rows as the indication the entire process takes a short time. Try using an ORDER BY in your SQL query tool to cause all rows to be computed first and see if the time changes.
by kcbland
Thu Jan 26, 2006 10:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: odbc and oci
Replies: 2
Views: 1141

Search the forum, use google. This one has been answered enough times.
by kcbland
Thu Jan 26, 2006 10:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to Delete a job in a project.
Replies: 2
Views: 1338

Probably permissions.
by kcbland
Thu Jan 26, 2006 10:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with variables in generated insert/update
Replies: 4
Views: 1194

I'm a little curious about the /* PDB - AnsattFraStage */ comment in the table name. You should remove that, otherwise the SQL looks correct for the Oracle stage. It might be the data, consider if NULL values are being passed in, or a mismatch with the column definitions, typical of user-defined SQL...
by kcbland
Wed Jan 25, 2006 1:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicates in a flat file
Replies: 2
Views: 981

Several methods. By duplicate, do you mean exactly the same, every bit on every byte on every column of data is identical? Or do you mean the "key" columns appear multiple times, and you need to consolidate the rows, potentially choosing different values from different occurences of the rows to arri...
by kcbland
Wed Jan 25, 2006 12:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Design issue: Dimesnion Key that changes.
Replies: 3
Views: 1084

This is not a tool issue. The industry practice is called surrogate keys, and they require a natural key for assignment. The use of a changeable value as a primary key is a fundamental mistake in data modeling. The unique columns that identify a row are called the "natural key". You need to talk to ...