Search found 53125 matches

by ray.wurlod
Fri Jul 27, 2007 7:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration & Version Control
Replies: 16
Views: 6198

Provided they are relevant there's no such thing as too many comments.
by ray.wurlod
Fri Jul 27, 2007 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unbounded NUMBER Oracle datatype import warning
Replies: 4
Views: 1647

You're not missing anything. (!) DataStage itself uses float or dfloat internally, for example in the Aggregator stage to prevent arithmetic overflow. There's nothing available in the Oracle Enterprise stage to allow you to change the behaviour I described - though you could use an upstream Modify o...
by ray.wurlod
Fri Jul 27, 2007 4:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unbounded NUMBER Oracle datatype import warning
Replies: 4
Views: 1647

Floating point potentially has more than 10 decimal places. DataStage alerts you to that fact with this message. Create a message handler to demote or suppress it, or stop using float (or dfloat) as the data type, or provide an explicit conversion. With SQL the conversion is automatic, so there's no...
by ray.wurlod
Fri Jul 27, 2007 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential Files in Parallel Extender
Replies: 1
Views: 648

One word: SEQUENTIAL

It's a bottleneck. Also, data have to undergo export when being written and import being read.

Prefer Data Set, where none of the above apply. The operator generated by a Data Set stage is copy - which should speak volumes. Partitioning and sorting are preserved.
by ray.wurlod
Fri Jul 27, 2007 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential_File
Replies: 5
Views: 2467

Sequential files do not have data types. Export is the process of converting data to human-readable format. You need to do this when writing to a sequential file. Because they have no data types, sequential files don't have a NULL. Therefore you have to tell it how to represent NULL. You do this thr...
by ray.wurlod
Fri Jul 27, 2007 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Flat Files
Replies: 6
Views: 2341

The first error message relates to the default value for the decimal type - technically 0.00 ("all zeroes") is not permitted. There is an environment variable - whose name I don't recall at the moment - to allow "all zeroes". The second error is mysterious - the field does exist in the schema, thoug...
by ray.wurlod
Fri Jul 27, 2007 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: split data row
Replies: 1
Views: 874

Pre-process the file (with tr perhaps) to convert all the ";" characters to line terminators - that way you will have one value:data pair per line. If you use tr as the filter command on a Sequential File stage, the stage will read stdout from the tr command as the source.
by ray.wurlod
Fri Jul 27, 2007 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help getting values back from Stored Proc in Oracle
Replies: 5
Views: 1113

There's a separate option on the Import > Table Definitions menu for importing stored procedure definitions.
by ray.wurlod
Fri Jul 27, 2007 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Routine Sql to list all jobs linked to specific table-fails
Replies: 15
Views: 6588

What are the quote characters in (@RECORD,':vTableName',1 meant to be doing? Since it's still inside the backquotes it's within the string. You're also missing a concatenation operator. Try cmd = \SELECT EVAL DS_JOBOBJECTS."IF INDEX(@RECORD,\ : vTableName : \,1) > 0 THEN 'FOUND' ELSE 'N...
by ray.wurlod
Fri Jul 27, 2007 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Administrator
Replies: 4
Views: 1897

Kunal, please don't do that. This site is not an SMS recipient, it is a community of professionals. Professional standards of language are expected. Document here in the same fashion that you would document a DataStage application.
by ray.wurlod
Fri Jul 27, 2007 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Managing sequential unique keys
Replies: 11
Views: 3671

DataStage can use the sequence. Specify user-defined SQL in which you provide sequencename.NEXTVAL rather than a parameter marker for the key column.
by ray.wurlod
Fri Jul 27, 2007 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hai could you help me
Replies: 2
Views: 953

The vendor offers a range of training classes. Consult their website. Some third party providers also offer training classes.
by ray.wurlod
Fri Jul 27, 2007 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Looking for some advice on Preload file to memory
Replies: 24
Views: 7071

How about this for a theory? Your 1100MB file fills 999MB of cache but is not finished populating the cache before the 700MB hashed file checks and finds that there is no room left in the cache. I don't know for sure that this is the mechanism - it's more difficult to get advice about internal mecha...
by ray.wurlod
Fri Jul 27, 2007 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage internal error
Replies: 4
Views: 1826

Time to mark the thread as Resolved, then.
by ray.wurlod
Fri Jul 27, 2007 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: strange login error
Replies: 3
Views: 996

What precisely is your question? Or are you just letting us know? What precisely are you doing, and what messages are displayed? Are you getting a list of server B's projects when you authenticate to server A? (If so, I would suggest that you check very carefully that you are indeed connecting to se...