Search found 15603 matches

by ArndW
Tue Apr 11, 2006 3:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to convert input string to ASCII
Replies: 9
Views: 2596

Please open up your DS/Basic manual and search for the conversion codes "MO" and "MO0C" to see how DataStage can convert between octal and numeric/string representations.
by ArndW
Tue Apr 11, 2006 3:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: source file delimiter error
Replies: 6
Views: 967

How about using the attribute for "incomplete column"?
by ArndW
Tue Apr 11, 2006 3:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: convert japan language into english
Replies: 5
Views: 2371

Doing "view" data on Japanese characters does not always show what you expect. In your example, you put in 2 sets of 2 kana characters which are encoded in the extended part of Latin-I and are not necessarily depicted correctly. You will need to cut-and-paste Kanji characters and you will need to kn...
by ArndW
Tue Apr 11, 2006 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting name into title, forename, surname
Replies: 4
Views: 1771

Alex, there is no builtin function to accurately do this in DataStage. There are 3rd party product for name cleansing out there (Trillium software comes to mind). In the past I've programmed my own logic in short routines, using spaces, commas, and periods as delimiters and using a list of known pre...
by ArndW
Mon Apr 10, 2006 7:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stopping process
Replies: 1
Views: 859

Posting an identical request 3 times in as many minutes won't get you a response any faster, nor will it make you any friends.

Moderator - please delete this triplicate post
by ArndW
Mon Apr 10, 2006 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: stopping process
Replies: 2
Views: 590

Isn't this identical to the post just made by bhaskarreddy?

Moderator - please delete this identical post
by ArndW
Mon Apr 10, 2006 7:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stopping process
Replies: 7
Views: 1751

If you re-run a job with the same parameters and inputs/outputs, don't you expect the same results with lots of warnings? Are you looking to get rid of the warnings, or to set the job so it aborts after a given amount of warnings? btw, This quote is attributed to Albert Einstein: Insanity: doing the...
by ArndW
Mon Apr 10, 2006 4:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Stop DS Job sequence
Replies: 10
Views: 6472

If you get that message then the process(es) are probably still active at UNIX. Can you identify the ones running for 10 days and a do a "kill {pid}" on them? The "kill -9 {pid}" should only be done as a last resort, since it leaves locks open in DataStage - perhaps you have already done this and th...
by ArndW
Mon Apr 10, 2006 3:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Stop DS Job sequence
Replies: 10
Views: 6472

Sometimes the Director shows a process as still running when the actual process is no longer active. Have you checked from UNIX to see if there is still a 10-day old running process? If not, a reset or recompile of the job sequence will do the trick for you.
by ArndW
Mon Apr 10, 2006 1:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Log getting filled
Replies: 9
Views: 4394

DB/2 has no turncate table command, when DataStage executes a "CLEAR TABLE" it actually will perform a delete under the covers and this can fill up the rollback. You can use the "import from /dev/null..." DB/2 syntax in a before stgae to quickly truncate the table.
by ArndW
Mon Apr 10, 2006 1:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: VB Cobol file in DS
Replies: 3
Views: 1123

DataStage should be able to handle this type of file, so knowing what errors you are getting would help.
by ArndW
Sun Apr 09, 2006 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: VB Cobol file in DS
Replies: 3
Views: 1123

Could you tell us what the "various errors" are/were? Is a variable block file one with different record types?
by ArndW
Sat Apr 08, 2006 9:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Two-step Look-up design
Replies: 5
Views: 1743

Can you not do your A and B join in the database and live with just one reference?
by ArndW
Sat Apr 08, 2006 8:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Two-step Look-up design
Replies: 5
Views: 1743

What is your source? Is it a database or a sequential source? Are your joins A->B->D 1:1? Is your source number of rows many times the size of the reference, equisized or much smaller? These factors do play a role in the design phase of a job.
by ArndW
Sat Apr 08, 2006 6:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file look up not working
Replies: 10
Views: 3032

Ravindra, I don't know what is wrong with your job, but the design is quite inefficient with the hashed file lookup being performed for each input row {I hope that the hashed file is at least loaded to memory}. You should redesign so that your job is called from a sequence which gets the row count (...