Search found 15603 matches

by ArndW
Thu Mar 18, 2010 3:18 am
Forum: General
Topic: oracle EE Load - call failed: Too many open files
Replies: 14
Views: 5592

Changing the absolute path of your DataStage directory is not practicable after installation; you need to change several internal settings, few of which are documented. Your only recourse if you need to change the path is to de-install and then re-install. Luckily, in UNIX you have the 'ln' command ...
by ArndW
Thu Mar 18, 2010 3:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unicode Error
Replies: 1
Views: 981

What happens if you remove the unicode extended attribute setting? Are you 100% certain that you have unicode data coming in?
by ArndW
Thu Mar 18, 2010 3:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with loading "few" non english characters in
Replies: 6
Views: 9569

What does the director log show for the runtime value of NLS_LANG (no dollar sign prefix)?
by ArndW
Thu Mar 18, 2010 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with ABS and MOD Function in Parallel Extender Job
Replies: 17
Views: 12577

The MOD function uses integer divisors and returns an integer value.
by ArndW
Wed Mar 17, 2010 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read oracle data
Replies: 19
Views: 6241

A very odd problem indeed - are you 100% certain that your job uses the Oracle userid 'NSO_REF' - if passed as a parameter then check the runtime values in the director log. Everything else looks perfectly OK. Perhaps you could try to create your own dummy table and see if you can connect to that on...
by ArndW
Wed Mar 17, 2010 11:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple errors using Server Shared Container
Replies: 8
Views: 6062

Problem 1. You have a field defined in the output link of your shared container which does not exist in your main job. Field names need to be identical. This means that your "SAR_SPEC_USE_1" field isn't defined in the link coming out of the shared container stage. Problem 2. You have the ...
by ArndW
Wed Mar 17, 2010 11:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read special characters
Replies: 4
Views: 1583

<sigh> Since the characters are undefined in UTF-8 you cannot resolve the issue. Those two characters are not UTF-8 and that is why you are getting your error message. Perhaps your source file is another character set. What glyphs are those characters supposed to represent? Could you have an ISO-885...
by ArndW
Wed Mar 17, 2010 11:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job aborts with "Input data not sorted" error
Replies: 7
Views: 5576

Write a test job where you use the sort stage but actually sort the data and write to a sequential file, then compare your original with the sorted data and you'll see the difference.
by ArndW
Wed Mar 17, 2010 6:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read oracle data
Replies: 19
Views: 6241

Very strange, I would have bet that you would have gotten an error message. Could you do the same select on: DBA_EXTENTS DBA_DATA_FILES DBA_TAB_PARTITONS DBA_TAB_SUBPARTITONS DBA_OBJECTS ALL_PART_INDEXES ALL_PART_TABLES ALL_INDEXES This will ensure that all necessary grants are actually working. Als...
by ArndW
Wed Mar 17, 2010 5:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read oracle data
Replies: 19
Views: 6241

I've marked the previous posts as non-premium, just this once since the information is available elsewhere.
by ArndW
Wed Mar 17, 2010 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage function
Replies: 4
Views: 1679

Page 164 of the [u][i]BASIC Programmers Guide[/i][/u] details what you want to know. The R format is right-justified. the % shows zeroes. I can't check now, but I think the format clause is wrong, the length (8) should be first. i.e. '8%R'
by ArndW
Wed Mar 17, 2010 4:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read oracle data
Replies: 19
Views: 6241

Did the SELECT work?
by ArndW
Wed Mar 17, 2010 2:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read oracle data
Replies: 19
Views: 6241

The grants are given to a user (or role). Try logging into Oracle using your favorite tool (sql developer, TOAD, or the like) and the user that you are using from DataStage. Then do a 'SELECT COUNT(*) FROM sys.dba_tab_partitions;'. What happens?
by ArndW
Wed Mar 17, 2010 2:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read oracle data
Replies: 19
Views: 6241

Did you ensure that all of the access grants were given: CREATE ROLE DSXE; GRANT SELECT on sys.dba_extents to DSXE; GRANT SELECT on sys.dba_data_files to DSXE; GRANT SELECT on sys.dba_tab_partitions to DSXE; GRANT SELECT on sys.dba_tab_subpartitions to DSXE; GRANT SELECT on sys.dba_objects to DSXE; ...
by ArndW
Wed Mar 17, 2010 2:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage limitation for phantoms processes
Replies: 4
Views: 1951

If you don't get a response from your sysadm, please post your platform and someone here will know the command to execute to find out your settings. All UNIXes are unfortunately not alike.