Search found 53125 matches

by ray.wurlod
Fri Oct 30, 2009 6:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data set
Replies: 2
Views: 1124

A Data Set is the fundamental unit of data container in DataStage parallel jobs. A Data Set is the only structure which Orchestrate operators - and that effectively means stages in DataStage jobs - can deal. Every link in every parallel job (unless optimized out) has a virtual Data Set associated wi...
by ray.wurlod
Fri Oct 30, 2009 6:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSGetLogDetail syntax
Replies: 5
Views: 2089

DSGetLogEntry is the one you want.

There is no direct API equivalent to dsjob -logdetail command, which makes multiple DSGetLogEntry calls when it executes.
by ray.wurlod
Fri Oct 30, 2009 6:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() error with a valid value
Replies: 9
Views: 3832

Is this table created by a Hashed File stage, a UniVerse stage, a CREATE.FILE statement in TCL, a CREATE TABLE statement in TCL or a mkdbfile command? Check that there is no non-printing character as part of the key value. The id column has an inferred data type of Integer, but a non-printing charac...
by ray.wurlod
Fri Oct 30, 2009 5:53 pm
Forum: General
Topic: Information on Demand 2009 news
Replies: 16
Views: 5728

St Jude were there, and even presented. So at least some of them are probably up to speed.

I think, for whatever reason, everyone comes away from the conference exhausted. It'll take a couple of days for everything to settle.
by ray.wurlod
Fri Oct 30, 2009 5:51 pm
Forum: General
Topic: Auto purge settings - what is max days
Replies: 4
Views: 1892

For individual jobs you would need to change the //PURGE.SETTINGS control record in the RT_LOGnnn hashed file. This can be done with SQL but there are a couple of tricks required around data types. And I can't guarantee that days > 99 is supported (but can't think of a good reason why not).
by ray.wurlod
Thu Oct 29, 2009 3:42 pm
Forum: General
Topic: Auto purge settings - what is max days
Replies: 4
Views: 1892

The GUI only allows 99 (the spin control is limited to two digits).

More would not really be sensible, but might be possible by editing the auto purge setting the the DSParams file.
by ray.wurlod
Thu Oct 29, 2009 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to write date in csv file.
Replies: 7
Views: 1993

Doesn't just CurrentDate() alone do it? If not, convert its data type to string.
by ray.wurlod
Thu Oct 29, 2009 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How big is your DataStage machine?
Replies: 2
Views: 1090

Attended an IOD 2009 session on capacity planning for Information Analyzer last night, some of the numbers are just plain scary! In terms of DataStage, it really does matter how you organize the tiers. In development it's a good plan to separate the DataStage engine from the WAS and repository tier,...
by ray.wurlod
Thu Oct 29, 2009 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different validations we can do on Flat files
Replies: 2
Views: 1203

Welcome aboard. Numeric(38,2) can contain at most 36 digits to the left of the decimal point. You might use the Num() function.
by ray.wurlod
Thu Oct 29, 2009 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between fileset and file
Replies: 6
Views: 2759

What I posted. What was incorrect were your two "unlike" phrases.
by ray.wurlod
Thu Oct 29, 2009 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: performing join in server edition
Replies: 7
Views: 1896

You don't need to load it into a hashed file at all, unless you're interested in best performance. Both inputs to the Transformer stage can connect to database stage types. However, do consider shifting the join to the database if possible (the database server is not overloaded). That way DataStage ...
by ray.wurlod
Thu Oct 29, 2009 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Special Characters
Replies: 2
Views: 1312

Make the record delimiter "DOS format" might work. Or are the 0D0A pairs within quoted strings? Otherwise, to convert the NUL characters to space, define a stage variable svNUL initialized to Char(0) then: Convert(svNUL, " ", InLink.TheColumn) To replace the CRLF pairs, define a ...
by ray.wurlod
Thu Oct 29, 2009 3:13 pm
Forum: General
Topic: Information on Demand 2009 news
Replies: 16
Views: 5728

There's another cool tool called (tentatively) Watchdog for InfoSphere that can set up and monitor events of various kinds all over the InfoSphere range of products. This one is still very much in the requirements gathering phase (one good reason to come to IOD is to have a play with, and provide in...
by ray.wurlod
Wed Oct 28, 2009 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Loader Error while uld: OCIStmtExecu while loading
Replies: 5
Views: 3791

Ordinarily that would mean that MESSAGE_NUM is not a valid column name in the table that you're loading. Do check that you specified the correct table name.