Search found 53125 matches

by ray.wurlod
Fri Jun 18, 2010 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Import Command Line
Replies: 4
Views: 7951

There are two solutions already in this thread.
:roll:
by ray.wurlod
Fri Jun 18, 2010 4:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Balanced Optimizer
Replies: 1
Views: 1631

It's new in 8.1, it's improved in the next version (currently in beta). It's used in DataStage Designer, to suggest opportunities for shifting some of the processing into the database, depending on a cost-based optimizing algorithm. It can then re-design the job to take account of the processing shi...
by ray.wurlod
Fri Jun 18, 2010 4:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sql driver issue
Replies: 14
Views: 9380

You need to configure .odbc.ini in the engine directory.

You also need to configure the DSNs correctly.
by ray.wurlod
Fri Jun 18, 2010 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MD5 CheckSum key generator
Replies: 8
Views: 12779

Any hash or checksum algorithm will have its limitations. For example CRC32 is necessarily limited by its 32-bit result to be accurate only to about one in four million. The greater the number of potentially unique values, the "bigger" the algorithm you need. There are variations on MD5 - ...
by ray.wurlod
Fri Jun 18, 2010 4:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Adding multiple column values into single column
Replies: 7
Views: 1567

laknar wrote:is there any possibility using Modify stage.
No.
by ray.wurlod
Fri Jun 18, 2010 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Slow running job
Replies: 6
Views: 2566

You still need to report what's different (about the system, databases, DataStage, ... anything) between when the job runs fast and when the job runs slowly.
by ray.wurlod
Fri Jun 18, 2010 4:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC SQL SERVER special characters
Replies: 11
Views: 5749

Dump the data into a text file and inspect that text file with a hex editor (such as od -cx command) to determine exactly what these characters are. This will assist in diagnosing where they are coming from.
by ray.wurlod
Fri Jun 18, 2010 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Sort data from sequential file?
Replies: 12
Views: 4110

I like Arnd's answer. If you have a third party sort utility, such as CoSort or SyncSort, then there's also scope for invoking that. If you have a UNIX emulator, such as MKS Toolkit, you could use a UNIX sort command as a filter command in the Sequential File stage itself. You could stick the data i...
by ray.wurlod
Fri Jun 18, 2010 4:38 pm
Forum: General
Topic: Interview Question
Replies: 2
Views: 1057

You could do worse than understanding what it is that needs to be done, in this case a "vertical pivot". Were you to Search DSXchange for that term, you might even get answers!
by ray.wurlod
Fri Jun 18, 2010 4:36 pm
Forum: General
Topic: to remove special characters in a column....
Replies: 2
Views: 1831

Let's begin with "what's 'special' about them?"
by ray.wurlod
Fri Jun 18, 2010 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 64 bit File Size Limit
Replies: 5
Views: 1769

Most operating systems impose a smaller limit than the theoretical limit, typically 1TB or 9TB.
by ray.wurlod
Fri Jun 18, 2010 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to connect to DB2
Replies: 6
Views: 4965

DataStage 8.1 on AIX 6.1 is a 64-bit application. The issue here seems to be that DataStage is destroying the PATH environment variable, and with it reference to all the DB2 executables.

Shades of Mythbusters: "I reject your PATH and substitute my own."
by ray.wurlod
Fri Jun 18, 2010 6:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File warning: Virtual memory information is no
Replies: 2
Views: 2466

There's no problem.

Windows operating system does not support the system calls that the parallel engine makes to determine virtual memory. So you get a warning that it is safe to ignore. Since this is the only warning, your configuration file is good on that server.
by ray.wurlod
Fri Jun 18, 2010 6:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Sort data from sequential file?
Replies: 12
Views: 4110

Not a question at all.
:roll:
by ray.wurlod
Fri Jun 18, 2010 12:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job with "RunJob" is not getting complied
Replies: 1
Views: 1196

There is no RunJob command.

You're probably intending to use a DSRunJob() function.