Search found 53125 matches

by ray.wurlod
Thu Mar 08, 2007 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture the file name and row number
Replies: 7
Views: 1699

Not possible. The reject link gets rows that do not match the defined metadata. You get the input row as a raw string, in one column. This is not negotiable. There is a workaround, which is to read the file as a single VarChar column and parse it yourself in a Transformer stage. The Sequential File ...
by ray.wurlod
Thu Mar 08, 2007 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can't stop job
Replies: 6
Views: 1475

What you see in the Director is the last reported status of the job. If the job was killed with no grace time in which to update its reported status, its status will continue to show as "Running" forever. Or until the status file is cleared. But, if you always stop job processes gracefully (never us...
by ray.wurlod
Thu Mar 08, 2007 11:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Select Privileges & Sox compliance
Replies: 12
Views: 3189

Do let us know how you get on.

And also, if they continue to refuse, how they suggest you work around the fact that the Oracle Enterprise stage can not be used.
by ray.wurlod
Thu Mar 08, 2007 11:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Key Columns
Replies: 11
Views: 3203

It is possible, but only using a UV stage, as noted. Performance will be helped by indexing the four columns that make up the partial key. The UV stage does support multiple reference row return (find out how by searching the forum or on-line Help).
by ray.wurlod
Thu Mar 08, 2007 11:44 pm
Forum: General
Topic: Median Calculation
Replies: 36
Views: 10179

Etiquette Note We don't do "urgent" here. DSXchange is an all-volunteer site - no-one gets paid for posting. If you want urgent help, sign up with your support provider for premium service and learn the true cost of urgent. The short answer is to count the number of items, say N, then get the Floor...
by ray.wurlod
Thu Mar 08, 2007 7:04 pm
Forum: General
Topic: Next DSXchange Lab
Replies: 0
Views: 649

Next DSXchange Lab

DSXchange is once again offering the Server to Parallel Transition lab, in the last week of March, in either Chicago or Dallas (to be determined). Please register your interest, and likelihood of attending, by following the link in the advertisement on the DSXchange home page (and, ideally, followin...
by ray.wurlod
Thu Mar 08, 2007 6:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can an after job Routine Connect to Oracle Database
Replies: 6
Views: 1478

ODBC (BCI) functions can be called from before/after subroutines.

However, you will find that the Data Direct ODBC drivers that ship with DataStage are not licensed for this, so you would need to purchase valid licensing for the ODBC drivers. This is not cheap.
by ray.wurlod
Thu Mar 08, 2007 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: type conversion
Replies: 8
Views: 1894

Is the receiving field big enough to receive the data?
by ray.wurlod
Thu Mar 08, 2007 6:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Select Privileges & Sox compliance
Replies: 12
Views: 3189

Not when using the system tables is "hard-wired" into the stage! Presumably because this is the most reliable way.
In any case, it's documented as being required.
by ray.wurlod
Thu Mar 08, 2007 6:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checking Inserts/Updates on large tables
Replies: 18
Views: 4700

Craig wrote:same company in different departments and sit on different floors


Can't be much of a workplace if you have to sit on the floor!
:lol:
by ray.wurlod
Thu Mar 08, 2007 6:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get DENSE RANK in a grouped data
Replies: 26
Views: 8487

My guess is that you need the Transformer stage downstream of an Aggregator stage.

And, of course, data pre-sorted on the aggregation (grouping) columns.
by ray.wurlod
Thu Mar 08, 2007 6:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing output to a Spreadsheet
Replies: 6
Views: 1540

Unless, of course, the delimiter character appears in data - in that case you DO need quoted character strings.
by ray.wurlod
Thu Mar 08, 2007 6:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe table query
Replies: 4
Views: 970

Technically the double quotes are only required when an identifier (table name, column name, etc.) is a reserved word or in the vocabulary (VOC) file. It's always safe to use them, however. TYPE is a reserved word in UniVerse/SQL, it is used in CREATE TABLE statement to specify the hashing algorithm...
by ray.wurlod
Thu Mar 08, 2007 6:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Garbage data
Replies: 6
Views: 1169

The buffer size is specified in KBytes, not in bytes.
by ray.wurlod
Thu Mar 08, 2007 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe table query
Replies: 4
Views: 970

Yes you can. What error message do you receive from UniVerse? I just ran a similar query (the only difference being the column names) in UniVerse. SELECT "TYPE","F2" FROM VOC GROUP BY "TYPE","F2" HAVING COUNT(*) > 1; I also checked with a space between...