Search found 53125 matches

by ray.wurlod
Wed May 24, 2006 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merging 4 databases table records into 1 database table
Replies: 6
Views: 1332

I dont think you need to merge the records. You need to collect them. Just stick a link collector at the end and collect your records. I dont think you even need a transformer if all that your doing is collecting the records. Just pull the records from the Four DB2 stages, have it go into a link co...
by ray.wurlod
Wed May 24, 2006 2:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing many columns which has null values to a seq. file?
Replies: 4
Views: 1034

You can specify how null is to be represented as a record level property. You can override that at the individual column level using Edit Row (right click on that column in the Columns grid to expose the menu from which you can open the Edit Row dialog).
by ray.wurlod
Wed May 24, 2006 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merging 4 databases table records into 1 database table
Replies: 6
Views: 1332

Probably a Funnel stage.
Or, in SQL, a UNION ALL.

Code: Select all

SELECT * FROM table1
UNION ALL
SELECT * FROM table2
UNION ALL
SELECT * FROM table3
UNION ALL
SELECT * FROM table4

Feed this result through a downstream stages to effect any transformation you need.
by ray.wurlod
Wed May 24, 2006 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDC with single stage
Replies: 19
Views: 4263

In version 8 there is a SCD stage. But version 8 is not yet available, and won't be for some months. And the SCD stage is not/will not be available in server jobs.
by ray.wurlod
Wed May 24, 2006 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSendMail
Replies: 5
Views: 3087

If you are using a Notification activity in a job sequence this error results from not supplying a sender and receiver email address.
by ray.wurlod
Wed May 24, 2006 2:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Custom Routine in Generating a Sequence Number
Replies: 7
Views: 1684

Wherever you installed the DataStage client software go there and look in the Docs folder where you will find all the manuals. For example:
C:\Program Files\Ascential\DataStage\Docs
by ray.wurlod
Wed May 24, 2006 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: start of job to end of job
Replies: 3
Views: 1011

Re: start of job to end of job

chandra wrote:from start of job to end of jobs what are all activites runs in datastage.

Whatever you design in.
by ray.wurlod
Wed May 24, 2006 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can u explainl what is dsadm
Replies: 1
Views: 879

The user ID reserved for DataStage administrator.
by ray.wurlod
Wed May 24, 2006 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: target DRS stage to MSSQL causing corruption.
Replies: 5
Views: 1343

All I can say is that my experience is different. I have never encountered any data corruption attributable to DataStage. Maybe I design differently, maybe I haven't used the DRS enough. Or the Data Direct ODBC driver for SQL Server.
by ray.wurlod
Wed May 24, 2006 2:32 pm
Forum: IBM QualityStage
Topic: QS Job Status
Replies: 3
Views: 2011

I'm not aware of any. Of course, if you invoke QS via the QS stage from DataStage, then DataStage can report the status of the stage. But I don't believe there's an API for interrogating QS jobs directly. If you run QS jobs via the command line interface you could get the exit status of the executab...
by ray.wurlod
Wed May 24, 2006 7:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: target DRS stage to MSSQL causing corruption.
Replies: 5
Views: 1343

No one is forcing you to use it. Hundreds, even thousands, of users are quite happy with it.
by ray.wurlod
Wed May 24, 2006 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LOOP IN A MF INVIROMENT
Replies: 8
Views: 2553

Re: LOOP IN A MF INVIROMENT

Hi, I want to multiply by 40 each row that comes from the input stage to the output stage I'm using the MF edition Thanks' Guy smadga The edition does not really matter. You use a Transformer stage, and build an expression that multplies the input column by 40,in the derivation expression of the ou...
by ray.wurlod
Wed May 24, 2006 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: processing
Replies: 6
Views: 1387

Are you using row buffering of any kind? This can affect the number of processes.
by ray.wurlod
Wed May 24, 2006 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need help for data migration
Replies: 9
Views: 2303

ProfileStage does not perform cleansing - it is only an analysis tool. You need DataStage, and possibly QualityStage, to perform cleansing.

I prefer to use Sequential Files in staging areas, since they are written to and read from faster than anything else.
by ray.wurlod
Wed May 24, 2006 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running the job
Replies: 6
Views: 1459

Determine the process ID under which the job started (for example in the &PH& directory), and use this to determine whether that process is still running. Verify that that process ID no longer exists, then use the DS.TOOLS menu to clean up.