Search found 53125 matches

by ray.wurlod
Wed Jul 20, 2011 3:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Flat File - Multiple Record IDs
Replies: 1
Views: 1412

Differentiate the detail records types in a downstream Transformer stage.
by ray.wurlod
Wed Jul 20, 2011 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job unable to read EBCDIC file
Replies: 1
Views: 1076

Have you changed the First Line is Column Names setting?
by ray.wurlod
Wed Jul 20, 2011 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference Stage
Replies: 5
Views: 2607

They don't provide the same output. Look at the other fields that are output, rather than focusing only on the ChangeCode.
by ray.wurlod
Wed Jul 20, 2011 3:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Fileset with Schema Def
Replies: 5
Views: 1776

How have you defined where the data files ("segment files") of the File Set are?
by ray.wurlod
Wed Jul 20, 2011 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job gives warning in one environment and runs fine on other
Replies: 5
Views: 1229

Should the passive stage that has two output links have one of them converted to a reject link?
by ray.wurlod
Wed Jul 20, 2011 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sql server NVARCHAR
Replies: 4
Views: 2630

Try using ODBC stage for SQL Server.
by ray.wurlod
Wed Jul 20, 2011 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning Data stage jobs for performance
Replies: 2
Views: 2341

Not really. Which environment variables are different between development (where I assume you regard performance to be satisfactory) and production?
by ray.wurlod
Wed Jul 20, 2011 3:46 pm
Forum: General
Topic: Scheduling the dependant jobs from different projects
Replies: 2
Views: 819

Welcome aboard.

One way is to execute the remote job via the dsjob command in an Execute Command activity in your sequence.
by ray.wurlod
Wed Jul 20, 2011 3:44 pm
Forum: General
Topic: Removing user from datastage
Replies: 3
Views: 1223

Use the Permission tab in the Project Properties of the Administrator client.
by ray.wurlod
Wed Jul 20, 2011 3:41 pm
Forum: General
Topic: Routine for encryption
Replies: 14
Views: 5320

Do a pencil-and-paper test of a couple of values. The problem with your logic will jump out at you.
by ray.wurlod
Wed Jul 20, 2011 3:39 pm
Forum: General
Topic: How to can we get the details of a stage via unix
Replies: 12
Views: 2627

Code: Select all

SELECT NAME FROM DS_JOBOBJECTS WHERE OBJNAME LIKE 'V%S%' AND OBJNAME NOT LIKE 'V%S%P%' AND OBJIDNO = (SELECT JOBNO FROM DS_JOBS WHERE NAME = '<<JobName>>');
by ray.wurlod
Wed Jul 20, 2011 3:33 am
Forum: General
Topic: How to can we get the details of a stage via unix
Replies: 12
Views: 2627

Read about DSGetJobInfo() in the DataStage BASIC manual. There are different options to return different sets of stages; the default gives only the active stages. The dsjob -lstages command gives effect to this default. You can always modify the dsjob code.
by ray.wurlod
Wed Jul 20, 2011 3:31 am
Forum: General
Topic: Routine for encryption
Replies: 14
Views: 5320

StringToDecimal is not part of the DataStage BASIC programming language - it belongs only in parallel Transformer stage expressions.
by ray.wurlod
Tue Jul 19, 2011 11:20 pm
Forum:
Topic: Column Definition not saving correctly
Replies: 6
Views: 2530

The order of columns is irrelevant. They are accessed by name.
by ray.wurlod
Tue Jul 19, 2011 9:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup issue
Replies: 14
Views: 5622

James's questions are pertinent, for all that you seem to want to avoid them. For example 22 million rows can be quite small (for example two bytes per row) or huge in terms of memory demand. But you do not provide guidance, even though memory demand is the principal determinant of what I believe yo...