Search found 53125 matches

by ray.wurlod
Fri Sep 03, 2004 7:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I use administrator commands on hash not in project?
Replies: 9
Views: 1868

The resize command is available from the operating system. Its executable is in the DataStage Engine's bin directory.

I believe hash_help is also available from the operating system, but will have to check after the weekend.
by ray.wurlod
Fri Sep 03, 2004 7:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection Refused Abnormally
Replies: 6
Views: 1357

From your description it sounds like a problem in the client. Did all client PCs manifest this behaviour? Did re-booting the client (which you probably should have tried first) fix the problem? Did you minimize all windows on the client machine to see if there is a hidden DataStage client window (su...
by ray.wurlod
Fri Sep 03, 2004 7:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write Cache Behavior
Replies: 2
Views: 891

There are two or three separate kinds of caching: private link caching, shared caching (it's this that's enabled in uvconfig) and public link caching (from version 6.0 onwards). Read the Hashed Stage Disk Cache technical bulletin (dsdskche.pdf in the DataStage manuals set) to get an understanding of...
by ray.wurlod
Thu Sep 02, 2004 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Sequential File with Header and Footer
Replies: 9
Views: 6774

but since this file is in this format even i cannot read it becoz it is giving errors like this and job gets failed controlDfile..Sequential_File_0.DSLink40: nls_read_delimited() - row 1, column Field003 Within the Sequential File stage on the Columns grid there is scope for setting "missing column...
by ray.wurlod
Thu Sep 02, 2004 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading and writing arrays to and from sequential files
Replies: 5
Views: 1644

Isn't the CFF stage limited to a single OCCURS? :cry:
by ray.wurlod
Wed Sep 01, 2004 9:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP and code page questions
Replies: 4
Views: 1941

Are you extracting from SAP R/3 or loading into SAP BW (or both)? I have no experience working with SAP from Parallel jobs; hopefully someone else will be able to answer. Certainly the SAP Extract PACK and SAP Load PACK are for use with server jobs. Without them you have to negotiate your own way ar...
by ray.wurlod
Wed Sep 01, 2004 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting to Instance on Multiple Instance Machine
Replies: 8
Views: 1782

Is it possible to manage this through environment variables? The job parameter can access an environment variable. Just a thought.
by ray.wurlod
Wed Sep 01, 2004 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Windows XP SP2 and DataStage
Replies: 9
Views: 3495

Morney, at least, seems to have major issues. See today's post from Morney for example.
by ray.wurlod
Wed Sep 01, 2004 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tracing
Replies: 2
Views: 840

Server-side tracing (the one turned on in the Administrator or via the DS.TOOLS menu) captures everything that occurs on the server, including servicing DataStage clients. Its trace files can grow very large, very fast. Server-side trace files are stored in the &COMO& directory in the project and ar...
by ray.wurlod
Wed Sep 01, 2004 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SAP and code page questions
Replies: 4
Views: 1941

You should not need any difference to the logic, except where explicit character comparisons (including sorting) is being performed. There are NLS character maps at the boundaries between DataStage and all external data sources so, provided you get these correct, everything inside DataStage should b...
by ray.wurlod
Wed Sep 01, 2004 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Job Statistics
Replies: 6
Views: 4028

Mandy's code can be implemented either in job control (in a server job), or in a Routine, preferably of before/after genre. It can not be implemented directly in a parallel job. Typically you run the parallel job, then use this kind of processing from job control (or through a Routine Activity in a ...
by ray.wurlod
Wed Sep 01, 2004 12:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding head and tail recs
Replies: 4
Views: 1230

What's the format of the target which, because of "their" requirement, I am assuming is a text file? You don't need to write any BASIC for the header row. You could use ExecSH as the before-job subroutine, to execute a command such as echo H`date +"%Y%m%d"` > #FileName# where #FileName# is...
by ray.wurlod
Tue Aug 31, 2004 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error connection refused or rpc daemon not running
Replies: 2
Views: 1689

The obvious ones. The DataStage RPC daemon listens on port number 31538 for connection requests from DataStage clients. If this daemon (dsprcd) is not running, there is no way you will be able to connect. Use ps -ef | grep dsrpcd | grep -v grep to find out. If dsrpcd is running on the server, then c...
by ray.wurlod
Tue Aug 31, 2004 9:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DATATYPE CHECK
Replies: 4
Views: 1300

On the topic of using private messages or private email (I was also sent one) please read this item from the February 2004 Newsletter.
by ray.wurlod
Tue Aug 31, 2004 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi valued Column in Hash File
Replies: 20
Views: 12482

Welcome aboard! :D How you create multi-valued columns depends on how you create the hashed file. If you're using a Hashed File or UV stage to create the hashed file, specify M in the Type column in the Columns grid. If you're using a CREATE TABLE statement, you specify that the column is MULTIVALUE...