Search found 53125 matches

by ray.wurlod
Tue Mar 15, 2011 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read €,£ characters from sequential file
Replies: 2
Views: 1891

This may be an issue with the internal representation of the Euro symbol clashing with DataStage's internal representation of NULL (Char(128)). Can you please check your file to see whether that symbol is 0xA0 ?
by ray.wurlod
Tue Mar 15, 2011 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: issue on Type30 files
Replies: 13
Views: 7029

Then you're probably on an operating system that does not support the DataStage shared memory interrogation commands (even though use is still made of shared memory by the software).
by ray.wurlod
Tue Mar 15, 2011 4:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenate Rows in Single Column
Replies: 5
Views: 8768

Or just do the appending in a Transformer stage. Follow the Transformer stage with an Aggregator stage that captures the last row of each group.
by ray.wurlod
Tue Mar 15, 2011 4:01 pm
Forum: General
Topic: DSParams routine & TNS name
Replies: 5
Views: 4148

Forget about parameters. They're not relevant here. Your issue is purely one of resolving a host name to its IP address, probably via gethostbyname() function internally.
by ray.wurlod
Tue Mar 15, 2011 3:57 pm
Forum: General
Topic: dsjob command domain name issue in windows
Replies: 10
Views: 9257

What happens if you execute C:\IBM\InformationServer\Server\DSEngine\bin\dsjob
(a) alone
(b) with only the -run option
(c) with -domain, -user, -password, -hostname and -lprojects options
(d) with -domain NONE, -user, -password, -hostname and -lprojects options
by ray.wurlod
Tue Mar 15, 2011 12:48 am
Forum: General
Topic: Fast Track
Replies: 3
Views: 1513

Welcome aboard. This particular forum is about ideas for the DSXchange site itself - your question probably should have been posted in the General forum. That said, we (I, at least) will not answer questions when the complete answer is readily available in the public domain, in this case the IBM web...
by ray.wurlod
Tue Mar 15, 2011 12:45 am
Forum: General
Topic: Connecting to Sql server 2008 from Server routine
Replies: 24
Views: 12484

There should be no trailing backslash on the executable name.
by ray.wurlod
Tue Mar 15, 2011 12:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between DB2 Connect and DB2 Connector for Infosph
Replies: 1
Views: 1148

One is part of InfoSphere, the other isn't.

When's the interview?
by ray.wurlod
Tue Mar 15, 2011 12:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: row delimiter in column values
Replies: 3
Views: 2248

Use a server job, or a server Sequential File stage in a server Shared Container that you can put into a parallel job. This stage has a "contains newlines" property that's not available in its parallel equivalent.
by ray.wurlod
Mon Mar 14, 2011 10:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling multiple delimiters
Replies: 5
Views: 3030

What do you need to DO with a,b,c,d[,e,f] ?

For example, if you need to generate a new row for each value in the list, this is a great candidate for the (new at 8.5) Transformer stage looping feature.
by ray.wurlod
Mon Mar 14, 2011 10:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: row delimiter in column values
Replies: 3
Views: 2248

Are the columns quoted?
by ray.wurlod
Mon Mar 14, 2011 10:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Auto purged
Replies: 1
Views: 1110

If auto-purge is enabled, then the job log is purged according to the auto-purge specifications whenever the job finished successfully (with no errors). Warnings are not errors. An event is logged if this occurs, reporting the number of items that were purged from the log. These have gone forever. Y...
by ray.wurlod
Mon Mar 14, 2011 10:35 pm
Forum: General
Topic: Training for certification
Replies: 11
Views: 4960

The sample test was there - indeed still is - for the DataStage 7.5 certification exam. For the newer versions you can do a "ten dollar" trial exam - more items, taken under proper exam conditions (through Prometric).
by ray.wurlod
Mon Mar 14, 2011 10:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orcadmin utility
Replies: 4
Views: 2654

The solution is to resist stupid requirements. This is not what the orchadmin utility (note spelling) is intended to do. Yes, of course, it can be done, but it is going to cost double the volume of data in disk space compared to the volume of data to be merged (a total of three times the volume at o...
by ray.wurlod
Mon Mar 14, 2011 8:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reqire logical assistance
Replies: 3
Views: 1619

Looks to me also like Aggregation, grouping on the first three columns and then min/max on the other two.

Don't forget to get your partitioning (and sorting, if you need it) correct.