Search found 53125 matches

by ray.wurlod
Wed Nov 09, 2011 11:36 pm
Forum: Data Integration
Topic: Limiting Business Glossary Author Role
Replies: 4
Views: 10121

Actually it's much better in 8.7. There are two glossaries - the development glossary and the published glossary - if you choose to enable the workflow feature. Straight away you've got better governance. On top of that there are new roles within BG: Editor (who can change things) and Publisher (who...
by ray.wurlod
Wed Nov 09, 2011 11:33 pm
Forum: Site/Forum
Topic: iphone app for dsxchange
Replies: 8
Views: 4700

No.
No.
and No it won't.
by ray.wurlod
Wed Nov 09, 2011 8:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: crazy requirement in DataStage
Replies: 8
Views: 3318

Not enough information.

What is the expected output?

Please provide a written specification of the transformation needed in the requirement.

Why is this required? It it, perhaps, an interview question?
by ray.wurlod
Wed Nov 09, 2011 8:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorrect date timestamp
Replies: 7
Views: 3009

You've supplied a two digit year but your date format string specifies a four digit year.
by ray.wurlod
Wed Nov 09, 2011 8:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best way to Read N number of tables and load into 1 table
Replies: 13
Views: 4333

Provided your database server can cope with an SQL statement that long, it should be OK.

You could always create a hybrid approach, such as a sequence with multiple loops each handling a subset of lines from the list of table names.
by ray.wurlod
Wed Nov 09, 2011 8:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Stage
Replies: 9
Views: 1678

If you don't do anything to corrupt the state file, such as opening it with a text editor, the state file is also perfectly safe - it does not corrupt itself.
by ray.wurlod
Wed Nov 09, 2011 8:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash partitioning and sorting
Replies: 8
Views: 5272

You can't. In this scenario there may be students doing some courses but not others, and courses in which some students but not others are enrolled. Because the sources are different (student-centric and course-centric) you're probably safest to partition on both join keys.
by ray.wurlod
Wed Nov 09, 2011 8:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage dw
Replies: 4
Views: 1155

Plan carefully.

Avoid scope creep.

What do you mean by "dataware"?
by ray.wurlod
Wed Nov 09, 2011 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: complex flat file stage
Replies: 1
Views: 1000

You can use Sequential File stage for "flat files" - single record structure, ideally no packed decimal data - sourced from mainframe. Prefer Complex Flat File stage for others - multiple record structures, packed decimal data, etc.
by ray.wurlod
Wed Nov 09, 2011 7:57 pm
Forum: General
Topic: Pass in parameter to ExecCommand stage
Replies: 22
Views: 6935

But it did it successfully (status = 0), which means that nothing was passed in.

Is VER_ID a parameter of the sequence? Please be aware that parameter names are case sensitive.
by ray.wurlod
Wed Nov 09, 2011 7:54 pm
Forum: General
Topic: IBM Information Server fixpack 2 installation
Replies: 7
Views: 6523

Presumably using the correct version of the Update Installer.
by ray.wurlod
Wed Nov 09, 2011 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best way to Read N number of tables and load into 1 table
Replies: 13
Views: 4333

The point we've been trying to make is that a sequence job with a loop means that you process one table at a time. A UNION can (theoretically anyway) stream all rows from all tables at the same time. You could construct the SQL statement within the sequence (Routine activity) rather than in an exter...
by ray.wurlod
Wed Nov 09, 2011 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Matching strings against a set of prefixes in a table
Replies: 16
Views: 5525

Not without four or five separate lookups (the first word, the first two words, the first three words, etc.). And then you may have to handle DOUGAL, 5TH VISCOUNT MACABRE (i.e. not the "first words"). QualityStage can do all of that kind of stuff, though you may need to enhance the Classif...
by ray.wurlod
Wed Nov 09, 2011 2:57 pm
Forum: General
Topic: Obtaining the Query (SQL Statement) by routine
Replies: 4
Views: 4914

OLETYPE is defined in the dictionary as field #2.

Therefore, assuming you've read the entire record into a variable called @RECORD, a suitable expression is @RECORD<2> or Field(@RECORD,@FM,2,1).