Search found 6797 matches

by DSguru2B
Fri Feb 02, 2007 11:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding exporting datamodel
Replies: 53
Views: 13005

Deep thoughts Kim, deep thoughts. Well said, well written, deeply motivated, or shall I say, excellent. I agree with whatever you have to say, especially in your last para. Folks like Ray, Ken, Arulan, Craig and yourself are true gurus in the field of DataStage and DW, have a keen eye on excellence ...
by DSguru2B
Fri Feb 02, 2007 10:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Equivalent CHAR
Replies: 11
Views: 3265

sylvan_rydes wrote:Hi Craig,

Suppose the number is 5489275482321009. Then what will be the equivalent char to this number. Isn't it simple?

Sylvan

I still did not get what you wanted :?
Do you want that number to be represented in words? Kinda lost with your terminology.
by DSguru2B
Fri Feb 02, 2007 10:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Equivalent CHAR
Replies: 11
Views: 3265

Give us an example. What it looks like and what you want? If you want a number to be converted to words, then clickhereto get the routine Craig is talking about.
by DSguru2B
Fri Feb 02, 2007 10:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting the job status to raise warning signal
Replies: 12
Views: 3810

chulett wrote:Me thinks the young Padawan means DSLogWarn, DSLogEvent is used to do the equivalent in a different job from the current job.

My fault in mis-interpretting your statement there. But as you said, all aspects are covered :wink:
by DSguru2B
Fri Feb 02, 2007 9:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rejecting records with invalid data type
Replies: 9
Views: 5296

MetaData mismatches are often the result of "Human" entered metadata, which is, usually, the case with flat files and datasets. For databases, we import. And hence my hunch that its either a dataset or a flat file.
No mention about it by the OP.
by DSguru2B
Fri Feb 02, 2007 8:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Get The status of the job
Replies: 9
Views: 3323

Or simply check JOBINTERIMSTATUS rather than JOBSTATUS. From the online help: DSJ.JOBINTERIMSTATUS. Returns the status of a job after it has run all stages and controlled jobs, but before it has attempted to run an after-job subroutine. (Designed to be used by an after-job subroutine to get the sta...
by DSguru2B
Fri Feb 02, 2007 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extract records with most recent date
Replies: 2
Views: 926

Re: Extract records with most recent date

select A.col1, A.col2, A.col3 From myTable A Inner Join (select col1, Max(col3) As MaxCol3 from myTable group by col3) As Temp ON A.col1 = Temp.col1 AND A.col3 = Temp.MaxCol3 Pass the above query in your database stage. Depending upon what database it is, the syntax might vary, but ...
by DSguru2B
Fri Feb 02, 2007 8:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rejecting records with invalid data type
Replies: 9
Views: 5296

Dont datasets support rejected links. So do sequential files. You dont need to check for it inside the transformer. The reject links will take care of it. As far as I know.
by DSguru2B
Fri Feb 02, 2007 8:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting the job status to raise warning signal
Replies: 12
Views: 3810

For the current job yes, but Log a warning in the log of another job, no. That was because we were guessing if the warning was to be launched for only the current job or all the job at the "same level" as per the OP's question. If the latter was to be done, it would not have been possible from with...
by DSguru2B
Fri Feb 02, 2007 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting the job status to raise warning signal
Replies: 12
Views: 3810

DSLogEvent() was to be wrapped in a routine. But no need, UtilityWarningToLog() is what you needed. You can mark the post as "Resolved" now.
I know Ray, me a grasshopper :roll:
by DSguru2B
Fri Feb 02, 2007 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting the job status to raise warning signal
Replies: 12
Views: 3810

ray.wurlod wrote:UtilityWarningToLog() is doable from the current job.

For the current job yes, but Log a warning in the log of another job, no.
by DSguru2B
Fri Feb 02, 2007 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting the job status to raise warning signal
Replies: 12
Views: 3810

chulett wrote:Me thinks the young Padawan means DSLogWarn, DSLogEvent is used to do the equivalent in a different job from the current job.

That wont be do-able from the current job. What is do-able is to log a warning using DSLogEvent() and leverage the execution at the sequence level. :roll: Right?
by DSguru2B
Fri Feb 02, 2007 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Setting the job status to raise warning signal
Replies: 12
Views: 3810

Look into DSLogEvent().
by DSguru2B
Fri Feb 02, 2007 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DateTime Metadata Mismatch Warnings
Replies: 17
Views: 10401

ray.wurlod wrote:Then clearly you must demand that Microsoft and IBM get their act together so that you can!

If only we were in wonderland [sigh]
by DSguru2B
Fri Feb 02, 2007 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Datastage engines
Replies: 3
Views: 1274

Re: Multiple Datastage engines

gup wrote: IBM stated it is possible -

Is that all that IBM said? Is that all you accepted from IBM?