Search found 53125 matches

by ray.wurlod
Thu Mar 03, 2011 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LastRowInGroup
Replies: 13
Views: 12289

There is a Migration Assistant tool that, among other things, looks after merging modified DSParams files.
by ray.wurlod
Thu Mar 03, 2011 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Subtract days from a given date
Replies: 2
Views: 2007

Look at the entire error message. Which stage is throwing it?
by ray.wurlod
Thu Mar 03, 2011 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Some jobs in Designer have unplugged wall outlet Icon
Replies: 1
Views: 1946

Welcome aboard.

A search of DSXchange would have revealed that this behaviour is usually the result of insufficient memory being available on the client machine. Try closing a few windows/applications, re-open Designer and try again.
by ray.wurlod
Thu Mar 03, 2011 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Does DataStage 7.5.1 run fine on 64-bit Linux?
Replies: 4
Views: 2377

In general no. I believe the Sort stage may use a multi-threaded approach.
by ray.wurlod
Thu Mar 03, 2011 3:13 pm
Forum: General
Topic: Datastage 7.5.1A Migration From Solaris to AIX
Replies: 39
Views: 16310

The easiest question to ask is whether Solaris is running on SPARC or x86 chipset.

Another way is to look at the first four bytes of a hashed file with a hex viewer such as od.

Code: Select all

od -cx VOCLIB | head -1
by ray.wurlod
Thu Mar 03, 2011 3:10 pm
Forum: General
Topic: Code/Impact analysis tools: IN-COM's Smart TS XL
Replies: 10
Views: 3737

Once you get to version 8, such tools are directly available in DataStage.
by ray.wurlod
Thu Mar 03, 2011 3:08 pm
Forum: IBM QualityStage
Topic: Provision Standardization rules
Replies: 1
Views: 1586

I am not aware of any such command. And does it make any sense to provision components that you're never going to use?
by ray.wurlod
Thu Mar 03, 2011 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert String to Integer without using OCONV & ICONV
Replies: 2
Views: 2908

Two alternatives, off the top of my head.

1. Just do nothing. There are no data types in server jobs anyway.

2. Add zero to it (or perform any other arithmetic operation such as multiplying or dividing by 1). That will also remove leading and trailing non-significant zeroes.
by ray.wurlod
Thu Mar 03, 2011 5:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Truncate table before insert in ODBC Stage
Replies: 1
Views: 2225

If you have a mysql client on your DataStage server, you can execute a mysql command as a before-job subroutine (or from an Execute Command activity in a sequence) that specifies the remote mysql database using command line options, and issue a TRUNCATE statement through that means.
by ray.wurlod
Thu Mar 03, 2011 5:40 am
Forum: General
Topic: Datastage 7.5.1A Migration From Solaris to AIX
Replies: 39
Views: 16310

Waiting to hear about byte-order before advising on transferring files. The repository files are export/import, as earlier advised.
by ray.wurlod
Thu Mar 03, 2011 3:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: I need to implement the below logic
Replies: 9
Views: 4685

That could be an infinite loop. Please re-think the logic, or at least assure us that there will always be a reference date less than any date on the stream input, as a "catch all" case.
by ray.wurlod
Thu Mar 03, 2011 3:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scenario: splitting a field
Replies: 3
Views: 1421

That IS the answer.

And Q retired when they stopped making James Bond movies.
by ray.wurlod
Thu Mar 03, 2011 3:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DCLGEN has 2 fields but only 1 VARCHAR column to load in DB2
Replies: 7
Views: 4331

Just ignore it. You will get a VarChar of the correct length.
by ray.wurlod
Thu Mar 03, 2011 3:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 8.5 : Automate migration of MVS jobs to PX jobs
Replies: 2
Views: 2351

You have to do a lot more than that. Mainframe jobs use an almost totally different set of stages than parallel jobs. You are going to need to analyze what each mainframe job does and implement that logic afresh using parallel jobs.
by ray.wurlod
Thu Mar 03, 2011 3:17 am
Forum: General
Topic: Datastage 7.5.1A Migration From Solaris to AIX
Replies: 39
Views: 16310

What chipset is being used in the Solaris machine. If it's x86, you'll have byte order issues. In any case, the recommended method is to export projects from the old system, create projects on the new system and import into those newly-created projects. Cut-and-paste is definitely NOT the correct way.