Search found 42189 matches

by chulett
Tue Aug 02, 2011 6:28 pm
Forum: General
Topic: Passing current date to to Job Parameter
Replies: 13
Views: 4429

Technically, the correct syntax is:

ErrCode = DSSetParam(JobHandle,ParameterName,ParameterValue)

I'd also be curious if you are checking ErrCode after the call to see if it succeeded and if not, why.
by chulett
Tue Aug 02, 2011 6:22 pm
Forum: General
Topic: Performances Tuning Tips
Replies: 12
Views: 5648

If something must always be "X" I wonder why an option to set it to anything else would even exist? Was that not always the case?
by chulett
Tue Aug 02, 2011 2:11 pm
Forum: General
Topic: where can we find the code for dsjob
Replies: 7
Views: 1899

I assumed they are looking for the C++ code for dsjob (which is actually published) rather than where the executable lives... but I guess we'll see. :wink:
by chulett
Tue Aug 02, 2011 1:32 pm
Forum: General
Topic: FieldToProp: Internal error - Bad number of subobjects
Replies: 10
Views: 2217

Did you try an exact search for "Bad number of subobjects"?
by chulett
Tue Aug 02, 2011 1:28 pm
Forum: General
Topic: where can we find the code for dsjob
Replies: 7
Views: 1899

From what I recall, it's in the same chapter where the various options are explained - the Command Line Interface chapter in the Server Job Developer's Guide pdf in your version.
by chulett
Tue Aug 02, 2011 9:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg the Parallel Job - Transformer compilation problem.
Replies: 12
Views: 5141

I personally can't, no, but my understanding is they are documented. Perhaps someone else can point you to the exact place.
by chulett
Tue Aug 02, 2011 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate Schema with RCP and Timestamp
Replies: 9
Views: 5773

"2010-12-10 17:13:37.0000000001" seems to long to be a valid timestamp to me. What is the precision of your target TIMESTAMP column? Max is 9 and you've got 10 which is (I assume) why you got the 'overrun' error.
by chulett
Tue Aug 02, 2011 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting Long Month Name from Date
Replies: 24
Views: 12124

You need to let us know more than just "none of which worked". Spend some time troubleshooting the individual conversions. What I would do in your shoes to make sure this was working would be either: 1. Use stage variables to break this up into individual conv calls, do this one step at a ...
by chulett
Tue Aug 02, 2011 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Access to DBA_EXTENTS required:But not available
Replies: 4
Views: 1503

The list of objects that need SELECT privledges is fully documented and you are really castrating the product's functionality if your DBA won't allow just the select grants the tool needs to operate. :roll:
by chulett
Tue Aug 02, 2011 7:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg the Parallel Job - Transformer compilation problem.
Replies: 12
Views: 5141

This isn't a license issue, it's a configuration issue. First you need to verify that you installed a supported compiler for your version. Secondly it needs to be configured correctly, something I'm assuming hasn't happened due to all of the "Could not open include file" warnings you are g...
by chulett
Tue Aug 02, 2011 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FIle Patten issue
Replies: 5
Views: 1584

Try adding and setting $APT_IMPORT_PATTERN_USES_FILESET=True in your job.
by chulett
Tue Aug 02, 2011 7:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to load "2011-02-02T14:05:35" to Timestamp co
Replies: 5
Views: 2381

That's... interesting. It would seem it doesn't care what comes between the "dd" and "hh" elements. I thought it would be pickier than that. :wink:
by chulett
Tue Aug 02, 2011 7:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-24374: define not done before fetch or execute and fetch
Replies: 4
Views: 4473

That's not the version - I was looking for something like 10.2.0.1 and I'd be curious if all four segments are exactly the same on all servers.
by chulett
Tue Aug 02, 2011 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting Long Month Name from Date
Replies: 24
Views: 12124

Interesting... I would have just done a substring or a field, never really had much need to figure out what the "Group" conversions do. Is the full syntax for that code documented somewhere? All the Server Job Developer's Guide has are two example calls and nothing else. It seems to be aki...
by chulett
Mon Aug 01, 2011 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting Long Month Name from Date
Replies: 24
Views: 12124

Those aren't dates, those are timestamps which is why the code is not working. You need to ditch the time portion before what I posted will work.