Search found 53125 matches

by ray.wurlod
Mon Jul 18, 2011 11:44 pm
Forum: General
Topic: Need Help in UNIX script
Replies: 7
Views: 3119

1. You need backquotes to capture the output of a command.

2. You are doing way too much work. Your entire solution is possible in a single command, such as

Code: Select all

split -b 200m $full-file
by ray.wurlod
Mon Jul 18, 2011 10:16 pm
Forum: General
Topic: Routine for encryption
Replies: 14
Views: 5320

Here are some examples of a simple substitution encryption (and associated decryption) server routine. The Base string should consist of sixteen unique printable characters, ideally all the same case. These routines are intended to handle 7-bit ASCII (that is, Char(0) through Char(127)). FUNCTION En...
by ray.wurlod
Mon Jul 18, 2011 9:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: record is splitting into two rows
Replies: 3
Views: 1066

This suggests that there's a line terminator in your actual data.
by ray.wurlod
Mon Jul 18, 2011 9:53 pm
Forum: IBM QualityStage
Topic: physical location of the standardization rule set files in t
Replies: 12
Views: 4297

Maybe you don't have read, write, execute permission to the Classic folder and therefore can't create the QS_TEMP folder.

(I answered about the server because you asked about the server.)
by ray.wurlod
Mon Jul 18, 2011 5:13 pm
Forum: General
Topic: Routine for encryption
Replies: 14
Views: 5320

Maybe not every codepoint value is two digits long. Try something like this in the first loop:

Code: Select all

 val1 := Fmt(Seq(Arg1[temp,1]),"3'0'R")
Then decode in threes not twos in the second loop.
by ray.wurlod
Mon Jul 18, 2011 5:07 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: IA Data Connection passwords
Replies: 3
Views: 1977

You've already researched more deeply than I have. That they're stored in an XMETA table seems reasonable, since only the services use them.
by ray.wurlod
Sun Jul 17, 2011 9:42 pm
Forum: General
Topic: Restartability of User Variables
Replies: 4
Views: 1701

Inspecting the Job Control code generated by compiling the sequence will answer this question for you. Please post the results of your deliberations.
by ray.wurlod
Sun Jul 17, 2011 8:41 pm
Forum: General
Topic: DBMS.CODE=20548 [DataStage][SQL Client] [UNIVERSE] Aborting!
Replies: 2
Views: 2567

SELECT MESSAGE FROM SYS.MESSAGE WHERE @ID = '020548'; reveals that this code is the generic message "Aborting", which doesn't help very much. My guess is that the total of your field display widths exceeds the device width. Reduce the FMT values or increase the width parameter using the S...
by ray.wurlod
Sun Jul 17, 2011 2:54 pm
Forum: General
Topic: not getting mails
Replies: 2
Views: 992

Check the sequence log to determine whether the Notification activity was executed. If it was, there's a problem with sendmail(). If it was not, there's a problem with the sequence logic.
by ray.wurlod
Sat Jul 16, 2011 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CreateMapfile Failed issue
Replies: 4
Views: 2314

Have you tried ensuring that TMPDIR is a local disk?
by ray.wurlod
Fri Jul 15, 2011 5:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Join Stage
Replies: 2
Views: 1400

It looks to me like there's only one combination of keys that match. Any other nodes will be idle for this link.
by ray.wurlod
Fri Jul 15, 2011 5:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Newbie question regarding a debugger
Replies: 12
Views: 4693

DataStage server jobs do have an interactive debugger. Creating one for parallel jobs is on IBM's roadmap, but it's a huge technical exercise - just imagine some of the challenges - for example tracing a row that may suddenly jump to a different machine on the network.
by ray.wurlod
Fri Jul 15, 2011 5:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning :field not present in the output interface
Replies: 5
Views: 17126

... or the other way around - you're selecting the fields (maybe because RCP is enabled) but the fields are not named on the output link of the stage.
by ray.wurlod
Fri Jul 15, 2011 3:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to load special char. into Oracle from Sybase
Replies: 5
Views: 1815

If NLS is not installed then all you can work with is ASCII.
by ray.wurlod
Fri Jul 15, 2011 3:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Stage - ORA 1406
Replies: 12
Views: 79681

Try using VarChar(96) in your job design.