Search found 53125 matches

by ray.wurlod
Mon Jan 31, 2011 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Stored Procedure SQL 2005 in DataStage
Replies: 4
Views: 2709

Doesn't have to come from a Transformer at all. You can select one row from any reliable source (for example the "VOC" entry from "VOC").
by ray.wurlod
Sun Jan 30, 2011 11:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to tell version/patch of DS/QS 7.5.x
Replies: 2
Views: 1624

Have you tried Help > About in the QualityStage Designer?
by ray.wurlod
Sun Jan 30, 2011 8:13 pm
Forum: General
Topic: Storing login details
Replies: 1
Views: 964

If you don't know that, find someone who understands Windows security - you're likely to do damage with unknowing tampering.
by ray.wurlod
Sun Jan 30, 2011 8:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal issue
Replies: 5
Views: 4068

Not if your data type is Decimal. DataStage shows leading and trailing zeroes to confirm that precision and scale have been handled correctly.

You can remove these by changing the data type to VarChar.
by ray.wurlod
Sun Jan 30, 2011 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Data Reconciliation
Replies: 22
Views: 12193

Summary of techniques follows. Obviously the actual queries on the source system tables will vary with database type. (1) For a given (job parameter) table name read all the column names (excluding synonyms) with corresponding data type, character max length, precision, scale and nullability and, if...
by ray.wurlod
Sun Jan 30, 2011 3:42 pm
Forum: General
Topic: KUNG HEE FAT CHOI
Replies: 3
Views: 1203

It's always "Year of the " : Oconv(@DATE, "DYA")
by ray.wurlod
Sun Jan 30, 2011 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best Delimiter to use
Replies: 4
Views: 3532

Char(25)

All of the Ctrl-letter characters map to their ordinal position in the English alphabet. So, for example, Crtl-L is Char(12), Ctrl-T is Char(20).
by ray.wurlod
Sun Jan 30, 2011 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best Delimiter to use
Replies: 4
Views: 3532

The best delimiter is any character that does not occur in the data. As noted, this might be a non-printing character, such as tab or Ctrl-Y.
by ray.wurlod
Sun Jan 30, 2011 1:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid Function
Replies: 6
Views: 13939

IsValid() expects a string argument. What happens when the data are not a valid date format? The StringToDate() function fails, but what result obtains?
by ray.wurlod
Sun Jan 30, 2011 1:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Plz help me on below tech tip
Replies: 5
Views: 3271

(1) Sort and partition data using Sort stage generating key change column then use stage variables to increment/reset counter depending on whether a change has occurred. (2) Fork join. Make a copy of your data (Copy stage) and run it through an Aggregator to count the rows for each group. Downstream...
by ray.wurlod
Sun Jan 30, 2011 1:21 pm
Forum: General
Topic: Client Uninstall problem
Replies: 5
Views: 7183

We have no way to know. We assume, as Craig said, that MCM was switched to 8.1 when you did the uninstall.
by ray.wurlod
Sun Jan 30, 2011 2:16 am
Forum: General
Topic: JACC Authorization failed for bean: LoggingService
Replies: 4
Views: 5573

Has the password expired for the wasadmin user?
by ray.wurlod
Sat Jan 29, 2011 10:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Date logic
Replies: 8
Views: 2937

What you need to get is a premium membership - this will allow you to read the entirety of the premium posters' contributions, and will help to fund the continued existence of DSXchange. All premium membership fees are devoted to the hosting and bandwidth costs of DSXchange.
by ray.wurlod
Sat Jan 29, 2011 9:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generic Data Reconciliation
Replies: 22
Views: 12193

Thanks for the ideas, and the brainwork behind them. The point of parameterized SQL is "one job to do any one column in any one table" executed many times to do all columns in all tables. For reconciliation the same query must be run against source and target tables, and the results compar...
by ray.wurlod
Sat Jan 29, 2011 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid Function
Replies: 6
Views: 13939

Everything is a valid string. Why not specify "date" as the first argument of the IsValid() function, and set a default date format of "%mm/%dd/%yyyy" in the job properties just for this job?