Search found 53125 matches

by ray.wurlod
Mon Aug 24, 2009 4:26 pm
Forum: IBM QualityStage
Topic: Standardization of Chinese address
Replies: 5
Views: 2331

You could extend the Chinese rule sets so that they handle English as well as Chinese representations; you could create an entirely separate rule set (Chinglish?).
by ray.wurlod
Sun Aug 23, 2009 5:53 pm
Forum: General
Topic: How to find more info about locking process
Replies: 10
Views: 3121

Can you find this process in Task Manager processes? It might be process number 3848 (that is, 65536 - 61688, since DataStage uses negative numbers to represent background processes but reports them as uint32).
by ray.wurlod
Sun Aug 23, 2009 5:51 pm
Forum: General
Topic: How to differentiate a Job from a Job Sequence in script
Replies: 22
Views: 10933

PTERM CASE INVERT as a default stems from the early days if UniVerse (and precursor products) when the input device was a teletypewriter that only had upper case; this default recognizes the fact that most components are named in all upper case because of this historical artifact. You can institute ...
by ray.wurlod
Sun Aug 23, 2009 5:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert GMT to EST
Replies: 6
Views: 3320

There should be an OFFSET column in your time dimension table.
by ray.wurlod
Sat Aug 22, 2009 7:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: disabling NLS
Replies: 5
Views: 2720

Setting the project default map to NONE gets close to "disabling" NLS in the project.
by ray.wurlod
Sat Aug 22, 2009 7:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS, Unicode and Ustring primer?
Replies: 1
Views: 1277

Umm... DataStage NLS Guide?
by ray.wurlod
Sat Aug 22, 2009 7:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: List of Jobs across Projects
Replies: 13
Views: 5520

That's precisely what the query on UV_SCHEMA does in the code.
by ray.wurlod
Sat Aug 22, 2009 7:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp conversion
Replies: 3
Views: 1418

Try this Oconv(ICONV(In.Date[1,10],"D-MY(2,2,4)"),"Y-MD(4,2,2)"):Right(In.Date,9) Almost, but not quite (and therefore wrong). You left the day specifications out of Iconv and Oconv arguments. Oconv(Iconv(Left(In.Date,10), "DDMY"), "D-YMD[4,2,2]") : Right(In....
by ray.wurlod
Sat Aug 22, 2009 7:06 pm
Forum: General
Topic: How to find more info about locking process
Replies: 10
Views: 3121

Why do you claim that 61688 is "locking 62560"? The device and inode number will tell you which "file" the locks are on. 61688 holds a RD group lock only, while 62560 holds a WR group lock and a shared (RL) record lock on item "RT_CONFIG449" (which lock is also owned by...
by ray.wurlod
Thu Aug 20, 2009 9:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dos sort drop some records?
Replies: 6
Views: 2726

Sort stage (not performing a unique sort) does not drop records. How are you handling nulls in the sort keys?
by ray.wurlod
Thu Aug 20, 2009 9:11 pm
Forum: General
Topic: Pass unique process ID to downstram process
Replies: 6
Views: 1419

One job (a server job is best for processing one row) to query the table and park the value into the job's user status area. In the calling sequence the user status area can be interrogated as an activity variable in any downstream activity.
by ray.wurlod
Thu Aug 20, 2009 5:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Why are Values being truncated
Replies: 5
Views: 2000

Can you enclose your examples in Code tags? It's not clear what's going on when the HTML browser minimizes multiple space characters.
by ray.wurlod
Thu Aug 20, 2009 5:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date column
Replies: 7
Views: 2155

With a little care where YY is "98" or "99".
by ray.wurlod
Thu Aug 20, 2009 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiplying large decimals rounds to ten decimals. Why?
Replies: 2
Views: 2676

What (environment variable) settings do you have to govern precision of intermediate results in decimal calculations?
by ray.wurlod
Thu Aug 20, 2009 5:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL determination / handling
Replies: 1
Views: 1263

When reading from an RDBMS DataStage has two possibilities. For a Table read, the database server returns a null indicator only, which DataStage converts to its own internal representation (@NULL, if you like). For an SQL query the database server converts the null into a zero-length string, or perh...