Search found 6797 matches

by DSguru2B
Tue Feb 21, 2012 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Setting Null to a nullable decimal column
Replies: 5
Views: 3772

Sometimes the database columns have default values set. Maybe thats in play here.
by DSguru2B
Fri Feb 17, 2012 9:59 am
Forum: General
Topic: When you need to take a break
Replies: 6
Views: 4324

Thanks Paul.
by DSguru2B
Fri Feb 17, 2012 8:54 am
Forum: General
Topic: Deleting the Logs in director for instance jobs
Replies: 4
Views: 3950

But I would suggest saving the logs in a flat file or table which will help during debugging. You dont want to be without your joblog when trying to debug your job.
by DSguru2B
Fri Feb 17, 2012 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: current time stamp
Replies: 6
Views: 2154

Did not know there was a function for timestamp with milliseconds. Good to know.
by DSguru2B
Fri Feb 17, 2012 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: current time stamp
Replies: 6
Views: 2154

Millisecs huh. Ping the database and grab it as a string.
by DSguru2B
Fri Feb 17, 2012 7:31 am
Forum: General
Topic: When you need to take a break
Replies: 6
Views: 4324

Thanks Ernie. During sunset the hue in the sky is amazing, filled with colors, combine that with calm waters and there you go.
by DSguru2B
Thu Feb 16, 2012 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture the timestamp when job Delivers Zero Recs..
Replies: 10
Views: 2852

Either do a count(*) so that you have an incoming row or use row generator. Bottom line is, you need an input row for there to be an output row. I have done this in the past by doing count(*). If the result is 0, I would put the current timestamp else I would branch the execution to run my appropria...
by DSguru2B
Thu Feb 16, 2012 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture the timestamp when job Delivers Zero Recs..
Replies: 10
Views: 2852

And when you have records you are just getting max timestamp or timestamp for each row?
by DSguru2B
Thu Feb 16, 2012 2:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture the timestamp when job Delivers Zero Recs..
Replies: 10
Views: 2852

O. Sorry about that. Missed that.
But if there are no records there is no timestamp right? So you have to decided what timestamp value you need to put if there are no records.
by DSguru2B
Thu Feb 16, 2012 2:05 pm
Forum: General
Topic: When you need to take a break
Replies: 6
Views: 4324

When you need to take a break

Just thought id share my gallery with you folks. Whenever you guys need to give your upper left brain a rest, check out my snaps at

http://n0mi.500px.com
by DSguru2B
Thu Feb 16, 2012 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture the timestamp when job Delivers Zero Recs..
Replies: 10
Views: 2852

Sure, drag another link from the database stage doing a count. I like to keep it separate, hence my advice.
by DSguru2B
Thu Feb 16, 2012 1:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture the timestamp when job Delivers Zero Recs..
Replies: 10
Views: 2852

Have a seperate job do a count(*). This way you will always have a single row output regardless.
by DSguru2B
Thu Feb 16, 2012 1:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert Binary to bit
Replies: 2
Views: 2085

Boolean is just a TRUE or FALSE. If you extract as varchar you will see a 0 or 1. Try doing that.