Search found 53125 matches

by ray.wurlod
Mon Nov 10, 2008 10:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Week Number in Quarter
Replies: 8
Views: 3063

There are usually 13 weeks in a quarter, but it still depends on how you define "week". I can not stress how important it is to get this (business rule) right.
by ray.wurlod
Mon Nov 10, 2008 10:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To getTable Counts for multiple tables using DataStage job
Replies: 1
Views: 1566

Download EtlStats from Kim Duke's website and let it gather the statistics for you.
by ray.wurlod
Mon Nov 10, 2008 10:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deployment rights
Replies: 5
Views: 1340

Does that user still need to be a developer?
by ray.wurlod
Mon Nov 10, 2008 10:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Obtaining the stats of the run jobs
Replies: 1
Views: 916

Each job's statistics are kept in a separate table. You could write a routine to check all of these but why re-invent the wheel? Download EtlStats from Kim Duke's website - this will gather the data you require and more, and load it into a database table of your choice.
by ray.wurlod
Mon Nov 10, 2008 10:23 pm
Forum: General
Topic: How to protect a project/projects
Replies: 22
Views: 5904

What's hard about it?

Code: Select all

uv -admin -stop

Wait till there are no connected client processes before restarting.
by ray.wurlod
Mon Nov 10, 2008 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX:Transformer error
Replies: 8
Views: 3000

No. Must be 2005.
by ray.wurlod
Mon Nov 10, 2008 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence
Replies: 15
Views: 2819

Craig would be even happier were you to spell his name correctly. It's Craig Hulett. One "L", two "T"s.
by ray.wurlod
Mon Nov 10, 2008 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to request the job (parallel, sequence) version?
Replies: 11
Views: 2722

The local Repository is still used (in conjunction with XMETA) in version 8.0 so this query will work. As noted, the identifiers in the SQL are case sensitive.
by ray.wurlod
Mon Nov 10, 2008 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion from IST to PST timezone
Replies: 5
Views: 5159

Welcome aboard. You need to detect time zone, because it is not a fact that the difference is always the same; when the USA switches to or from summer time the difference changes. After that it's a simple matter of decomposing your timestamp into its components and performing appropriate arithmetic ...
by ray.wurlod
Mon Nov 10, 2008 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem when inserting records outside partition range!
Replies: 2
Views: 5124

And does your stage have a reject link to capture rows that the database would not accept? DataStage only sends rows to the database (and if it can send them, it will finish OK); you have to (design) manage detection of failures within the database.
by ray.wurlod
Mon Nov 10, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge Rejection Handling
Replies: 1
Views: 820

How are your Merge stage properties set?
by ray.wurlod
Mon Nov 10, 2008 4:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Week Number in Quarter
Replies: 8
Views: 3063

Where are you going to put weeks 49 through 53? You need to think more carefully about your business rules. How is week #1 in any year defined? Is it necessary that every week has 7 days? (It should be, if you're planning to summarize/aggregate by week.)
by ray.wurlod
Mon Nov 10, 2008 4:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can we use routines of datastage in unix script
Replies: 4
Views: 1986

Yes you can, albeit inefficiently, by invoking yet another shell. For example (assuming PATH is correctly set)

Code: Select all

SH -c "dsjob -logsum MyProject MyJob"
by ray.wurlod
Mon Nov 10, 2008 4:28 pm
Forum: General
Topic: How to protect a project/projects
Replies: 22
Views: 5904

Stopping dsrpcd will do it even in version 8.x.
by ray.wurlod
Mon Nov 10, 2008 4:27 pm
Forum: General
Topic: Is there any impact on perf while calling external routines
Replies: 3
Views: 1423

Compared to what?

Naturally there is an overhead in making the initial call, but it's negligible and only occurs on the first row (on each node). After that the routine's code is in memory and its entrypoint address is known.