Search found 53125 matches

by ray.wurlod
Thu Apr 28, 2005 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Implicit columns & transform question
Replies: 3
Views: 1009

That would be the DMNS* stage, which was proposed for version 6.1 but never made it through beta.

* DMNS = do what i mean not what I say
by ray.wurlod
Thu Apr 28, 2005 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: splitting the column
Replies: 3
Views: 998

I answered the second question, about how to handle the input being a single row. You may need more than one output from a Transformer stage to handle different record types. As to adding data to the output record, you have to tell us where you're getting those other data from, then - and only then ...
by ray.wurlod
Thu Apr 28, 2005 12:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MergeStage
Replies: 6
Views: 2559

Access Violation means an attempt to access a memory location that doesn't belong to the application. This can occur, for example, by trying to put a character string N characters long into a buffer smaller than N characters (e.g. you've used a Char data type). It can also occur when there are unexp...
by ray.wurlod
Thu Apr 28, 2005 12:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: splitting the column
Replies: 3
Views: 998

Presumably, if you're going to read it as a single column, the data type of that column will be a character string of some kind (Char or VarChar).

So you can use substring techniques to split out different substrings from the original string.

For example, YEAR would be InLink.TheColumn[1,4]
by ray.wurlod
Thu Apr 28, 2005 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with BASIC transformer in parallel job
Replies: 8
Views: 3932

OK. If the problem is with a BASIC Transformer stage (as per your subject), then you ARE hitting it every row. But, of course, you're not even getting to process row #1. Yet the log file is telling us that the runLocally() function associated with the operator generated by compiling the BASIC Transf...
by ray.wurlod
Wed Apr 27, 2005 8:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: based on previous record how to update record
Replies: 14
Views: 3387

Welcome aboard! :D
Run the input through an Aggregator stage, grouping by Column 1 and specifying Last as the aggregate function for the other columns. If the input is sorted, note on the Input link to the Aggregator stage that this is the case; the job will run much more efficiently.
by ray.wurlod
Wed Apr 27, 2005 8:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Purging deleting data from batch job
Replies: 5
Views: 1218

You could invoke your BAT file through ExecDOS as a before/after subroutine. In the Input Values field build a string of job parameters that corresponds to the required command line arguments of the BAT file. For example:

Code: Select all

#Server# #User# #Password# #Database# #Query# #Month# #Day# #Year#
by ray.wurlod
Wed Apr 27, 2005 8:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LIBPATH DSENV
Replies: 6
Views: 3997

DataStage won't work on UNIX unless $DSHOME/lib is in SHLIB_PATH. The dsenv file guarantees that this is the case.
On Windows shared libraries are found via Registry entries, so that there is no dsenv file required.
by ray.wurlod
Wed Apr 27, 2005 8:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: account hash files usage
Replies: 8
Views: 2142

Use the operating system (or the BASIC STATUS statement) to examine the date/time modified of the hashed files? Date/time accessed, even.
by ray.wurlod
Wed Apr 27, 2005 8:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Control
Replies: 3
Views: 796

A search on this Forum is likely to prove productive. For example you will turn up the knowledge that one of the better sources for error codes is the UniVerse InterCall User's Guide.
by ray.wurlod
Wed Apr 27, 2005 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: VOC DELETE ERROR 39125
Replies: 17
Views: 6466

It might be worth trying the following. 1. Copy VOC, D_VOC, VOCLIB and D_VOCLIB from another project, using operating system command ( cp on UNIX, COPY on Windows). 2. Change to the project directory and enter the dssh environment. . $DSHOME/dsenv $DSHOME/bin/dssh 3. Execute the DataStage command: C...
by ray.wurlod
Wed Apr 27, 2005 8:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trying to use REPORT ASSISTANT in the Data Stage ( 7.1V)
Replies: 7
Views: 2664

Reporting Assistant is deprecated in favour of MetaStage from version 7.x.

And please eschew "urgent" - everyone here is a volunteer who posts when possible. If you really want urgent, sign up for high priority 24x7 support, and learn the true cost of "urgent".
by ray.wurlod
Wed Apr 27, 2005 8:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Setup
Replies: 3
Views: 1485

If there is a firewall, you ("they") will need to open it to port number 31538, which is the port number on which dsrpcd listens.
by ray.wurlod
Wed Apr 27, 2005 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use of the following commands
Replies: 9
Views: 3119

You won't, of course, find any information about the ds... executables in UniVerse documentation, though there are uv... equivalents for some of them. dsrpcd is the DataStage RPC daemon, that listens for connection requests from DataStage clients and instantiates the dscs (DataStage common server) f...
by ray.wurlod
Wed Apr 27, 2005 5:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with BASIC transformer in parallel job
Replies: 8
Views: 3932

I assumed, because it was in the first two lines of your code, that you were specifying @ID FIELD ( TRANS ( RT_LOG109 , //JOB.STARTED.NO , 1 , X ) , ( char ( 252 ) ) , 1 ) as an (the?) expression in the BASIC Transformer. So can you advise what you ARE doing in the BA...