Search found 53125 matches

by ray.wurlod
Mon Feb 18, 2008 9:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Prefetch memory setting 0 array size 100 - slow performance
Replies: 4
Views: 3716

Investigate how well this "complex join" is supported by indexes.

Also make sure that it does not need to materialize unnecessarily large views before joining those; always work with, and constrain as much as possible, base tables.
by ray.wurlod
Mon Feb 18, 2008 9:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP to Windows server using FTP Enterprise or FTP PlugIn stg
Replies: 2
Views: 3046

Windows operating systems that are based in NT are perfectly happy to accept forward slashes in pathnames.

This includes all the Windows operating systems that are supported for DataStage servers.
by ray.wurlod
Mon Feb 18, 2008 9:16 pm
Forum: General
Topic: Server Jobs to Parallel Jobs
Replies: 2
Views: 1333

Try a Search around the forum. The first question is which jobs you really need to convert, and which will run perfectly well - maybe even better - as server jobs. There is NO automatic mechanism. You can not, as you seem to be asking, export as server and import as parallel. That would be a really ...
by ray.wurlod
Mon Feb 18, 2008 9:12 pm
Forum: General
Topic: Lookup help or Join
Replies: 14
Views: 3875

Welcome aboard. Load the max date into a Lookup File Set with Entire partitioning. This has a constant (say "X") as its key, and the max date as a non-key field. Use a Lookup stage to lookup the record whose key is "X" from the Lookup File Set. You need a Column Generator stage upstream of the Looku...
by ray.wurlod
Mon Feb 18, 2008 6:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String to time Conversion
Replies: 3
Views: 2112

StringToTime() requires that the format string show what the string looks like, not what you want the time to look like. StringToTime( DSLink.Input_col, "%h%nn%ss") You probably need to be a bit more careful, with an If..Then..Else testing whether the length of the string is 5 or 6...
by ray.wurlod
Mon Feb 18, 2008 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use of Table Definitions
Replies: 2
Views: 1070

If you manage your table definitions in the Repository, like you ought to, then it's simply a matter of clicking the Load button or dragging the table definition onto the link. What could be easier?
by ray.wurlod
Mon Feb 18, 2008 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion
Replies: 2
Views: 1006

Code: Select all

Right("000000" : InLink.QT, 6)
by ray.wurlod
Mon Feb 18, 2008 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: getting start date and end date
Replies: 4
Views: 1681

There are DataStage macros that will return these values. You can also use DSGetJobInfo() function in a routine, or the dsjob -jobinfo command from the operating system.
by ray.wurlod
Mon Feb 18, 2008 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UserStatus warning
Replies: 4
Views: 1186

I suspect that the problem is more likely related to the "#" character in your invocation ID. Can you try it with a different invocation ID, one that does not have a "#" character?
by ray.wurlod
Mon Feb 18, 2008 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Read the dataset file outside of Datastage
Replies: 4
Views: 10820

The Data Set descriptor file is not interesting - all it contains is the record schema and the locations of the actual data. Why do you want to read that?
by ray.wurlod
Mon Feb 18, 2008 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generation of Surrogate Key
Replies: 20
Views: 12959

On the other hand, repairing the damage is a potential source of revenue for consultants such as KBA - on that basis you could understand Ken's glee.
by ray.wurlod
Mon Feb 18, 2008 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading file: sysdate -1
Replies: 2
Views: 1042

You could create a Routine activity from a job sequence that returned the date/time created/modified/accessed for a file. Use OpenSeq, Status and CloseSeq statements. Or use an Execute Command activity and the appropriate command for your particular operating system.
by ray.wurlod
Mon Feb 18, 2008 3:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Working day of last month
Replies: 6
Views: 1312

How about using the RMM stage?
:lol:
by ray.wurlod
Mon Feb 18, 2008 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need guidance for IBM WebSphere IIS DataStage certification
Replies: 3
Views: 1375

There is also a "certification preparation" class offered by IBM, but this is usually offered only in conjunction with the Information on Demand conference.
by ray.wurlod
Mon Feb 18, 2008 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: JoinStageProblem
Replies: 12
Views: 4813

The Join keys must not only have the same name, they must also have the same data type.