Search found 42189 matches

by chulett
Sat Aug 18, 2012 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype conversions
Replies: 17
Views: 8493

He did. At least for the "days" part, the month he left up to you.
by chulett
Sat Aug 18, 2012 8:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype Issue
Replies: 12
Views: 5632

You have a "size mismatch"... fix that. How much data did you think would fit into a DECIMAL(1,0) field?
by chulett
Sat Aug 18, 2012 7:50 am
Forum: General
Topic: Routine DSJ LINKROWCOUNT Error
Replies: 11
Views: 3459

Yup. :wink:
by chulett
Sat Aug 18, 2012 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype Issue
Replies: 12
Views: 5632

Decimal.
by chulett
Sat Aug 18, 2012 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype conversions
Replies: 17
Views: 8493

So... you are thinking that you can subtract the two month numbers regardless of the year? Unfortunately, it's not as simple as that. Another game you can play, if you don't want to worry about how many days are in any given month, is to do some math on the components. Take the year and month from e...
by chulett
Sat Aug 18, 2012 7:39 am
Forum: General
Topic: Routine DSJ LINKROWCOUNT Error
Replies: 11
Views: 3459

It is available while the job is running.
by chulett
Fri Aug 17, 2012 11:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype conversions
Replies: 17
Views: 8493

Do the calculation in the job, not the SQL. That or talk to a SQL Server guru there to get the proper SQL syntax, whatever that may be.
by chulett
Fri Aug 17, 2012 11:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype Issue
Replies: 12
Views: 5632

Don't use Float.
by chulett
Fri Aug 17, 2012 11:41 pm
Forum: General
Topic: Routine DSJ LINKROWCOUNT Error
Replies: 11
Views: 3459

So out of all that code you just need the call to DSGetLinkInfo and the log function. Why "DSLogWarn"? Why not simply "DSLogInfo"? :?
by chulett
Fri Aug 17, 2012 4:03 pm
Forum: General
Topic: Routine DSJ LINKROWCOUNT Error
Replies: 11
Views: 3459

There's no actual attaching going on here, it is just querying the current job so not quite clear how one would get a "BADHANDLE".
by chulett
Fri Aug 17, 2012 7:43 am
Forum: General
Topic: Use of DSJ.ERRFATAL
Replies: 2
Views: 1241

Let me conject for a moment. :wink: As noted, it is being passed to a "user defined" a.k.a a custom routine that is unknown to us. However, certain functions include an "Error Code" argument that tell the function how to handle any errors it encounters. From the documentation for...
by chulett
Fri Aug 17, 2012 12:06 am
Forum: General
Topic: MFT file transfer in unix
Replies: 1
Views: 1033

So... a Managed File Transfer? Using what tool / utility? :?
by chulett
Thu Aug 16, 2012 10:37 pm
Forum: General
Topic: Pass date parameter
Replies: 12
Views: 5549

OK... sorry but here are my problems. One is that I don't "do SQL Server" so the nuances of handling DATETIME fields there rather than say in Oracle are not something I'm familiar with. That means I don't how implicit conversions of things like dates or timestamps are handled internally th...
by chulett
Thu Aug 16, 2012 3:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Does IBM support server jobs with IS 8.7 version officially
Replies: 5
Views: 1614

And please don't think it is any kind of a Good Idea to convert Server jobs to Parallel en masse. Pick and choose. Convert those that need to be converted, ones that would benefit from it.
by chulett
Thu Aug 16, 2012 2:44 pm
Forum: General
Topic: Pass date parameter
Replies: 12
Views: 5549

Get rid of the "select", it is not needed. If you can get your parameter in DD/MON/YYYY format, try: > CONVERT(DATETIME,'#p_MaxDate#') otherwise match the Style Code to the format. You picked 111 which is for a Japanese date.