Search found 53125 matches

by ray.wurlod
Fri Sep 03, 2010 6:21 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: How to delete the tables from the meta data repository?
Replies: 6
Views: 2264

That new Repository Management functionality in the Web Console for Information Server that Ernie mentioned has specific function for identifying and removing duplicate table definitions from the repository.
by ray.wurlod
Fri Sep 03, 2010 6:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal to String conversion in modify stage
Replies: 5
Views: 13675

string[20] is Char(20) - DataStage will right pad. If you use string[max=20] (which is VarChar(20)) the trailing pad characters will not be applied. You will always get leading and trailing non-significant zeroes that indicate the full precision and scale of the decimal number - you can remove these...
by ray.wurlod
Fri Sep 03, 2010 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset
Replies: 13
Views: 4578

At least one file per resource disk mentioned in the node pool that the Data Set stage is using from the configuration file. More than one file if the operating system limits file size (for example to 2GB). More than one file (potentially) if you append to the Data Set.
by ray.wurlod
Fri Sep 03, 2010 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NullToEmtpy Issue
Replies: 3
Views: 1898

Please explain more fully, with examples, what "does not work" means in this context.
by ray.wurlod
Fri Sep 03, 2010 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration file
Replies: 3
Views: 1647

Re: Configuration file

you can find the configuration file in the following path "opt\IBM\InformationServer\Server\Configurations" This is not correct on two counts. First, UNIX interprets the backslash character as escaping the next character, so opt\IBM\InformationServer\Server\Configurations would become opt...
by ray.wurlod
Fri Sep 03, 2010 6:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Logic in Datastage
Replies: 14
Views: 8662

What ever happened to the requirement for RANK?
by ray.wurlod
Fri Sep 03, 2010 6:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email Error
Replies: 4
Views: 1497

Can you make sure that the routine is compiled?
by ray.wurlod
Thu Sep 02, 2010 9:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: while reading from MQ need to remove header
Replies: 2
Views: 1502

I'm not sure that that's possible. Look at the Data Elements associated with MQ Series. I suspect what you'll have to do is to read the entire message, identify and discard the header and keep the payload. But you will also need to make sure that the message is of the appropriate type.
by ray.wurlod
Thu Sep 02, 2010 9:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NullToEmtpy Issue
Replies: 3
Views: 1898

The only limitation of which I am aware is that the target column must be VarChar data type.
by ray.wurlod
Thu Sep 02, 2010 8:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage (aggregator stage)
Replies: 6
Views: 3196

Cue "Twilight Zone" theme... An IPC stage (theoretically at least) is no more than a visual manifestation of inter-process row buffering - it's only there to allow you to use buffer sizes and timeouts different from the job default. So why one of your jobs works and the other doesn't is a ...
by ray.wurlod
Thu Sep 02, 2010 7:15 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: How to Merge Changed Metadata
Replies: 1
Views: 1112

How to Merge Changed Metadata

Some column names and other properties have changed in the database tables. Attempting to re-import the table definitions does not appear to pick up the changes. Is there a way to pick up the changes without deleting the existing table definitions in XMETA? We have a lot of FastTrack mappings and In...
by ray.wurlod
Thu Sep 02, 2010 5:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Replace DataStage Administrator ID by Others
Replies: 5
Views: 2858

Andy, that's the Information Server administrator.

Changing DataStage administrator is simply a matter of giving the suite component role "DataStage and QualityStage Administrator" to the new user (and maybe revoking it from the old).
by ray.wurlod
Thu Sep 02, 2010 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changing the Data format - Columns to Rows
Replies: 9
Views: 3542

Only if you combine the triplets of columns into single columns (then back again into separate columns after pivoting if needed).
by ray.wurlod
Thu Sep 02, 2010 5:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: APT_PHYSICIAL_DATASET_BLOCK_SIZE=?
Replies: 11
Views: 6868

This parameter does not affect server jobs.
by ray.wurlod
Thu Sep 02, 2010 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Re Naming DataSets
Replies: 5
Views: 1473

Sainath.Srinivasan wrote:If you are only interested on the .ds file, you can rename it in Unix itself.
That is ill-advised, because the segment files' names on the resource disk include the descriptor file name.