Search found 15603 matches

by ArndW
Wed Aug 04, 2010 4:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To remove previous job logs
Replies: 11
Views: 3126

The purge settings are read when a job is run; thus your logs will remain until the next run. You can export all the jobs, delete them, then re-import them to clear all the log files if manually doing a "clear log" for each job is too much work.
by ArndW
Wed Aug 04, 2010 2:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Missing character sets on DS server
Replies: 7
Views: 7083

Odd, as far as I know, the 3 environment variables NLS_LANG, LANG, and LC_ALL are ORACLE values and are not used by the DataStage server engine.

Could it be that the production server was not installed with NLS enabled? This would explain the missing character set definitions.
by ArndW
Wed Aug 04, 2010 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to connect the database
Replies: 21
Views: 6133

What happens if you test it without hardcoded parameter values, perhaps make a copy and manually type in the values - does it work then? If yes, then you can start to track back the error.
by ArndW
Wed Aug 04, 2010 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connector behavior on connection parameter
Replies: 7
Views: 3341

That is great news. Because of bureaucracy at my current site it will be weeks before I can get a valid support ID at IBM in order to do the same. It would be very nice if you could post the results here so that I can "piggyback". I've now had to manually go through many jobs and check all...
by ArndW
Wed Aug 04, 2010 2:19 am
Forum: General
Topic: Regarding Testing of CheckPoint in Sequence
Replies: 2
Views: 1473

That is an interesting question that I haven't seen posed before, but unfortunately I think that the answer to your question will be that the only way to test checkpointing is to force errors into your tests.
by ArndW
Wed Aug 04, 2010 2:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Needed the hint to logic values converting into words
Replies: 3
Views: 1267

There is nothing built into DataStage that does this. There are a number of freeware/public domain entries to be found for "convert integer to words c++" on Google, and the documentation shows how to create buildops and call them from DataStage.
by ArndW
Wed Aug 04, 2010 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Duplicates of logical key loaded into dimension table
Replies: 13
Views: 5083

What you are looking into doing is "historization" of data. Depending upon your rules it can be simple or quite complex. I have just implemented program code for doing exactly this - the specifications were over 50 pages long and peppered with terms such as "temporal irreducibility&qu...
by ArndW
Tue Aug 03, 2010 9:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to Read from/Write to OMD.XML.DIR
Replies: 1
Views: 3940

The warning message isn't the problem, it occurs on Windows 8.1 installations and is, as far as I know, reported to support. After the first run of the job after a compile the warning won't occur again.

Search elsewhere for the hang condition.
by ArndW
Tue Aug 03, 2010 9:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to connect the database
Replies: 21
Views: 6133

That should tell you that the entries you are putting into your job aren't the ones that DB2 is getting.
How are you declaring the userid/password in the job?
by ArndW
Tue Aug 03, 2010 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to connect the database
Replies: 21
Views: 6133

Just to test that you are actually using the userid/password combination that you think, take another userid/password and use those as parameters to the database job. Is the error message the same or is it working?
by ArndW
Tue Aug 03, 2010 6:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Tranformer stage proframance is not good.
Replies: 4
Views: 1518

I would increase the commit frequency, doing this every 2000 rows means you are doing 30000000/2000 = 15,000 commits. If your database has sufficient space, consider upping this number significantly. Just for comparison, how long does the job run if you replace the ODBC write stages with a PEEK or C...
by ArndW
Tue Aug 03, 2010 6:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: run time job warning
Replies: 5
Views: 2408

Your select contains DML logic which turns "LEGACY_MEMBER_ID" from non-nullable to nullable.
by ArndW
Tue Aug 03, 2010 6:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to connect the database
Replies: 21
Views: 6133

Could it be that you are connecting to different databases in DataStage and from the command line? That is the simplest explanation. Could you also post the exact error message, please?
by ArndW
Tue Aug 03, 2010 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to trim the data -loading into db2 bulk load stage
Replies: 11
Views: 5076

My point is that after the API stage inserts the data into the DB it will have the exact same value as with the bulk stage.