Search found 42189 matches

by chulett
Wed Jan 14, 2009 2:11 pm
Forum: General
Topic: Datastage + FoxPro ?
Replies: 2
Views: 2224

That ".dbf" extension means a dBase file and so yes, you should be able to access it via the ODBC stage using the supplied dBase driver.
by chulett
Wed Jan 14, 2009 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: populate sequential file
Replies: 5
Views: 1355

Rows must flow through the job in order for something to be written to your target sequential file. What I'd suggest is checking the file 'after job' either from the operating system or a custom routine. If should be simple enough to see if the file is empty and if so, cat / echo your "2" ...
by chulett
Wed Jan 14, 2009 11:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data Load in to table partitions.
Replies: 9
Views: 2497

rumu wrote:In our client place DS tool has not been installed and hence we are not in a position to test anything
Just an FYI - this would have been something worth mentioning in your original post.
by chulett
Wed Jan 14, 2009 11:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: executArray is having 1 record - warning
Replies: 7
Views: 1645

Terala - just an FYI. Your "code" and "quote" tags are not working because (I assume) you have checked/enabled the Disable BBCode in this post option for some reason. Uncheck that or change the default in your profile and they'll work as designed.
by chulett
Wed Jan 14, 2009 11:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Editing to Job Control
Replies: 7
Views: 3167

That comes from having the option "Automatically handle activities that fail" turned on as routines that do not return a zero value are considered to have failed. It should also have mentioned the fact that it is an "unhandled" failure and the secret to making it go away is to (i...
by chulett
Wed Jan 14, 2009 10:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Editing to Job Control
Replies: 7
Views: 3167

What exact warning are you receiving? The fact that it doesn't return a zero value? These can be dealt with, there should be no need to go under the covers for something like that.
by chulett
Wed Jan 14, 2009 10:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple sequential file creation?
Replies: 5
Views: 2319

Well... not sure I would have ponied up some of those thoughts if I'd known we were talking about two million files daily. Except perhaps academically. :wink:

I think your "Option 3" is a perfectly valid solution, kudos for coming up with that.
by chulett
Wed Jan 14, 2009 9:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run UV SQL via DataStage
Replies: 11
Views: 5392

In a Server or Sequence job, sure.
by chulett
Wed Jan 14, 2009 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user defined query error
Replies: 21
Views: 8712

Any idea why there's an issue with "complex" sql? What the issue actually is? Does "complex" equal "really really long" here? :?
by chulett
Wed Jan 14, 2009 9:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multiple sequential file creation?
Replies: 5
Views: 2319

Hmmm... not really, unless you know how many max you'll have ahead of time and build that many output stages into your job. Typical answer would be to create a single file and then script something after-job to split the file into multiple files with the names you require. Another answer might be to...
by chulett
Wed Jan 14, 2009 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CREATING PARAMETERS
Replies: 2
Views: 1087

I'm curious, is there a particular problem you are trying to solve? Always best to ask about the bigger picture issue rather than focusing on what you perceive to be the solution to it. We've gone on many chases of the wild gooses here when people go down the wrong path, especially when there's a si...
by chulett
Wed Jan 14, 2009 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter for XML Output File Path
Replies: 6
Views: 2368

In other words, the short answer is "just type it in". :wink:
by chulett
Wed Jan 14, 2009 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: user defined query error
Replies: 21
Views: 8712

Assuming the same number (and datatypes) of columns are being selected, you may simply be running out of room for the query, i.e. there is a maximum length to the query string that can be passed and it may be getting truncated. First suggestion would be to try removing all of the CR formatting, esse...
by chulett
Wed Jan 14, 2009 8:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CREATING PARAMETERS
Replies: 2
Views: 1087

Welcome. :D It will fail. You cannot create job parameters other than at design time using the Designer. That function "sets" or assigns a value to an existing parameter. Besides, what good would the ability to create parameters "on the fly" be as they wouldn't actually be used i...
by chulett
Tue Jan 13, 2009 11:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim on char fields
Replies: 13
Views: 2714

Hmmm... 13? New number here. Sure, leading spaces can be trimmed from a char field. It's the trailing ones being discussed as problematic here, the "padding" that is automatically done for the data type to its full size. Sorry if that wasn't clear.