Search found 42189 matches

by chulett
Fri Oct 30, 2009 7:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Preventing tags from being written into an XML file
Replies: 6
Views: 1238

Your example is a little messed up. Did you actually mean something more like? <Department> <DepartmentId>112</DepartmentId> <EmployeeName>John</EmployeeName> <EmployeeId>101</EmployeeID> <EmployeeName>ZZ</EmployeeName> <EmployeeId>00</EmployeeId> </Department> And you need to suppress the 'ZZ' name...
by chulett
Fri Oct 30, 2009 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lkp_1,0: Operator terminated abnormally: received signal SIG
Replies: 11
Views: 5780

What version do you have? I vaguely recall issues with the Range Lookup that may require a patch from your official support provider. :?
by chulett
Fri Oct 30, 2009 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delay during DSX import and Exports
Replies: 4
Views: 1802

What kind of delays? Do they generally run smoothly but slowly, or do they pause at certain points for a period of time? Any pattern you've seen? I can't say what impact the VMWare is having, never used it for a Server install. You may want to ping your official support provider to see if there are ...
by chulett
Fri Oct 30, 2009 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help DataStage Problem C Stage PlunIn function
Replies: 9
Views: 1813

What stages are you using in your job? I've seen the error before, but not in a 'scheduled v. unscheduled' context that I recall. :?
by chulett
Fri Oct 30, 2009 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DATE FORMAT
Replies: 7
Views: 2206

That's not an Oracle DATE, but rather a TIMESTAMP. While the former can hold a time, only the latter can hold milliseconds. That is the root of your 'conversion error'.
by chulett
Fri Oct 30, 2009 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performing join in server edition
Replies: 7
Views: 1896

If by 'filtering out the null values' you mean 'checking the lookup for success or failure' there is a Link Variable for that: LinkName.NOTFOUND which is simple enough to leverage.
by chulett
Thu Oct 29, 2009 9:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Constraint
Replies: 3
Views: 1805

There should be a NullToValue transform in there, if not it would be easy enough to create one. Check NullToEmpty and NullToZero for inspiration.
by chulett
Thu Oct 29, 2009 6:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel job reports failure ERROR
Replies: 4
Views: 2204

As you are suspecting, it is probably a resource issue. Are there any other warnings logged when you see this?
by chulett
Thu Oct 29, 2009 3:46 pm
Forum: General
Topic: Auto purge settings - what is max days
Replies: 4
Views: 1892

Didn't really want to encourage that approach... but that setting would need to be per job rather than per project. DSParams would just have the project level defaults for new jobs, so... ??
by chulett
Thu Oct 29, 2009 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different validations we can do on Flat files
Replies: 2
Views: 1203

Start by declaring it as a string in the file, then validate and convert (or vice versa) as appropriate.
by chulett
Thu Oct 29, 2009 3:41 pm
Forum: General
Topic: Auto purge settings - what is max days
Replies: 4
Views: 1892

Yes, that's the maximum. If your jobs don't run very often, perhaps purging based on the number of runs would be more appropriate?
by chulett
Thu Oct 29, 2009 3:39 pm
Forum: General
Topic: Description as comment in tables
Replies: 4
Views: 1411

Yes, it would be. DataStage is an ETL tool, not a database management tool like Enterprise Manager.
by chulett
Thu Oct 29, 2009 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Web Services - Abnormal Termination
Replies: 10
Views: 5621

Connection timed out... firewall, perhaps? :?
by chulett
Thu Oct 29, 2009 3:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performing join in server edition
Replies: 7
Views: 1896

Right, didn't say you needed to, just that you could. :wink: And I believe the OP's issue is specific to 'joining' tables in separate databases. If we just mean schemas here, then join away, separate database instances would require either a dblink of some kind (and the performance and security cons...