Search found 53125 matches

by ray.wurlod
Wed Nov 25, 2015 2:51 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Rule managers and authors roles
Replies: 2
Views: 3482

You are correct, out of the box. It would be possible, of course, to define a business process within the Stewardship Center that checks who the author is and not to allow acceptance of the approval task unless different from the logged in user.
by ray.wurlod
Tue Nov 24, 2015 10:25 pm
Forum:
Topic: Glossary Definition
Replies: 0
Views: 2617

Glossary Definition

Yawn

A silent scream for coffee.
by ray.wurlod
Tue Nov 24, 2015 10:22 pm
Forum: General
Topic: double datatype weirdness
Replies: 7
Views: 2702

On a twos-complement machine 9999999999 would have wrapped around, setting the sign bit for an Integer, which is why it would be interpreted as being less than 111.
by ray.wurlod
Tue Nov 24, 2015 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file stage property
Replies: 5
Views: 2449

Actually these properties can be used with delimited files, though it's not as efficient as with fixed-width format files.
by ray.wurlod
Tue Nov 24, 2015 3:59 pm
Forum: General
Topic: DS v11 -- can't connect Win client to server, port 9080
Replies: 7
Views: 5998

One of the changes for version 11 was the use of HTTPS for connections.
by ray.wurlod
Tue Nov 24, 2015 3:55 pm
Forum: Data Integration
Topic: Business Glossary Notification
Replies: 6
Views: 14838

True, but there is a certain minimum patch level that you have to have for 11.3. I don't have those details with me at this time.
by ray.wurlod
Mon Nov 23, 2015 9:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: bulk load date issue
Replies: 5
Views: 5027

The date is stored as a date.
What it looks like depends on the Oracle date picture set for your session. You could change that, or you could use TO_CHAR() functions when reporting.

It's in the presentation layer entirely. Your data have almost certainly been loaded correctly.
by ray.wurlod
Mon Nov 23, 2015 6:15 pm
Forum: General
Topic: double datatype weirdness
Replies: 7
Views: 2702

Why are you using the ",5" piece? Your numbers do not appear to have any decimal places. Have you tried using Decimal as the data type? According to IEEE standards, Double can never be assured to stored with perfect accuracy, even though you've clearly specified a large enough mantissa. Ma...
by ray.wurlod
Mon Nov 23, 2015 5:12 pm
Forum: General
Topic: double datatype weirdness
Replies: 7
Views: 2702

Without addressing your particular problem, I observe that 2.14748364700000000E+09 is the largest 32-bit signed integer value.

And also that 999999999 can be represented as a 32-bit integer byt 9999999999 cannot.
by ray.wurlod
Mon Nov 23, 2015 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How load Sequential File with data that had multiline values
Replies: 3
Views: 1829

Use the Server Job Sequential File stage, possibly within a server Shared Container. This stage type has the ability to handle internal line terminators (in quoted fields) out of the box.
by ray.wurlod
Mon Nov 23, 2015 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal_from_string warning for same data length
Replies: 9
Views: 5029

I had the thought that maybe they (IBM) could put something like NOWARN into the properties of the Transformer stage, but my second, better, thought was that that would lead to too much lazy programming.
by ray.wurlod
Mon Nov 23, 2015 4:00 pm
Forum: Data Integration
Topic: Business Glossary Notification
Replies: 6
Views: 14838

In version 11.5 there is a business process management layer one can add to Information Governance Catalog to provide the mechanism I was seeking. It's part of the Stewardship Center. DSXchange ran a couple of webinars about it earlier this year. Stewardship Center for Information Governance Steward...
by ray.wurlod
Sun Nov 22, 2015 5:51 pm
Forum: IBM QualityStage
Topic: USNAME clarification
Replies: 20
Views: 12403

Typically you would run a character investigation over the unhandled patterns, specifying a few (I use 5 usually) in the sample size. The frequency distribution will immediately suggest where the most benefit for your effort would likely obtain.
by ray.wurlod
Fri Nov 20, 2015 6:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing Decimal to Integer in transformer stage
Replies: 3
Views: 1846

It's not a bug; it converts both to Integer before performing the comparison.

Use a data type conversion function in the comparison expression to force DataStage to compare both as decimal data types.
by ray.wurlod
Fri Nov 20, 2015 6:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with external source stage
Replies: 2
Views: 1841

My guess would be that the last line of the script lacks a line terminator.