Search found 53125 matches

by ray.wurlod
Sat Apr 01, 2006 2:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Event: PRINTER memory segment removed (...)
Replies: 5
Views: 3033

You didn't ask a question. If you search the forum you will find that this message is perfectly proper behaviour of DataStage.
by ray.wurlod
Sat Apr 01, 2006 2:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Char 1 To Binary type
Replies: 5
Views: 1264

Are you trying to view unconverted EBCDIC value?
by ray.wurlod
Fri Mar 31, 2006 11:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Combining 2 files
Replies: 4
Views: 2020

Welcome aboard. :D

The Merge stage in server jobs performs a standard join between two sequential files based on a common key. Sounds ideal for what you require.

Makes more efficient use of memory if the two files can be pre-sorted.
by ray.wurlod
Fri Mar 31, 2006 11:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo returns a -1 in my routine...
Replies: 25
Views: 5354

A standard, local (not in COMMON), scalar variable in each case.
by ray.wurlod
Fri Mar 31, 2006 11:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS and ? Problem
Replies: 5
Views: 1370

"?" is NOT the invalid character. "?" is a special Unicode character that DataStages uses when it can not convert the invalid character into Unicode (its own UTF-8 encoding of Unicode) based on your assertion of how the external character set is encoded. You must determine precisely under what stand...
by ray.wurlod
Fri Mar 31, 2006 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API
Replies: 7
Views: 2513

Most likely more physical memory, or more virtual memory, or higher ulimit setting for the executing user.
by ray.wurlod
Fri Mar 31, 2006 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo returns a -1 in my routine...
Replies: 25
Views: 5354

Without DSDetachJob, the fact that the job handle variable is in COMMON will cause an attempt to "remember" the job to which it was attached. I would recommend not using COMMON variables for job handle variables, and always to detach any attached job before exiting from a routine that attaches it, s...
by ray.wurlod
Fri Mar 31, 2006 5:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS and ? Problem
Replies: 5
Views: 1370

Different sets of characters are encoded according to different standards. For example, Chinese characters may be encoded according to standards called BIG5 or GB2312. There are many different standards for encoding Japanese characters. DataStage provides maps for most of the commonly-encountered st...
by ray.wurlod
Fri Mar 31, 2006 5:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NLS and ? Problem
Replies: 5
Views: 1370

"?" represents a character that could not be mapped.

The correct way to get rid of it is to choose a map that correctly maps all the characters in your data.
by ray.wurlod
Fri Mar 31, 2006 5:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo returns a -1 in my routine...
Replies: 25
Views: 5354

Do you DSDetachJob near the end of the routine? The fact that you have the job handles as COMMON variables may cause a failed attach on the next run. As a general rule, never have white space between a function name and its left parenthesis. It sometimes works but is never guaranteed to do so. You d...
by ray.wurlod
Fri Mar 31, 2006 5:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unknown Fatal Error
Replies: 10
Views: 2020

How large is the hashed file? Have you checked that it is structurally intact?
by ray.wurlod
Fri Mar 31, 2006 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLinkInfo returns a -1 in my routine...
Replies: 25
Views: 5354

You can run them anywhere. Post your routine code and we'll take a look.

For example if you'd used DSJ.ME as the job handle, that would have returned -1 if run in a Routine activity. But you've already said you attach the job.
by ray.wurlod
Fri Mar 31, 2006 4:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File error
Replies: 34
Views: 8630

The ulimit setting for the user ID under which DataStage jobs run must be set to unlimited by the UNIX Sys Admin.
by ray.wurlod
Fri Mar 31, 2006 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Vs Routine...Performance Question ?
Replies: 4
Views: 904

Why not build both and publish your results?

How good are you at writing efficient DataStage BASIC routines?
by ray.wurlod
Fri Mar 31, 2006 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem running a job from DOS
Replies: 2
Views: 1392

Welcome aboard. :D

I have found that it's sometimes necessary to re-boot the Windows server after changing an environment variable for that change to take effect for background processes (such as those that run DataStage jobs).