Search found 3045 matches

by vmcburney
Thu Jul 21, 2005 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: overwriting the DSParam file
Replies: 3
Views: 2386

A safer bet may be to copy and paste just the user defined section of the DSParams rather then the full set of values. Developers can change other settings at will such as turning on debug variables such as APT_DUMP_SCORE. There are also file location settings such as APT_ORCHHOME and APT_CONFIG_FIL...
by vmcburney
Thu Jul 21, 2005 5:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help needed for Join Stage
Replies: 8
Views: 2519

I am not discounting the possibility that you found a bug however somebody may have experimented with different partitioning settings in the remove duplicates and sort stage and caused the problem, or the stages might have been copied in from another job with incorrect settings, and the unlinking an...
by vmcburney
Wed Jul 20, 2005 7:56 pm
Forum: General
Topic: Impact analysis
Replies: 3
Views: 2558

DataStage Manager Usage Analysis on saved table definitions can be unreliable as it depends on programmer discipline. If the developers only entered column information by loading the same table definition into all jobs that needed it then it will work. If they took a different route, such as enterin...
by vmcburney
Wed Jul 20, 2005 7:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Error
Replies: 6
Views: 1271

Test your code in a routine. Put your compare statement into a new routine and use the Test button to see if it works. Call the routine direct from your transformer if it is a complex statement that you want to use in multiple locations or copy it into your transformer if it is a one off.
by vmcburney
Wed Jul 20, 2005 6:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No color change in link
Replies: 13
Views: 4087

It's on the Diagram menu - Show performance statistics.
by vmcburney
Wed Jul 20, 2005 6:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null Key Specifiers
Replies: 3
Views: 1562

The Aggregation stage makes a Group field mandatory which means you do have to create a column with a constant value in order to group by one field. The column generator should be the most efficient way to add this column unless you already have a transformer in your job. The underlying group operat...
by vmcburney
Wed Jul 20, 2005 6:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simple BuildOp
Replies: 3
Views: 3665

Good on you Brad, I missed that thread first time around and it is very good to see real examples of buildop code. Anyone else has buildops examples out there please post. :D
by vmcburney
Wed Jul 20, 2005 6:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Attempting to Clean up after Abort
Replies: 1
Views: 727

Is this problem specific to this job or is it affecting all your parallel jobs? If it is just the one job you can use a process of elimination to find the culprit. Take a copy of the job and replace the target stage with a copy stage and run the job. If you still get the error replace the filter sta...
by vmcburney
Wed Jul 20, 2005 5:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: migration
Replies: 3
Views: 1019

An upgrade from 6.x to 7.x is very easy and there are a few threads you can uncover in a forum search on the subject. You just export your projects to a backup location and run the upgrade. It helps to have a system integration test environment on another server - or turn your development server int...
by vmcburney
Wed Jul 20, 2005 1:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How different are user defined SQL and the generated SQL
Replies: 12
Views: 4215

I think you should use any type of SQL you are comfortable with from generated to SQL builders to user defined as long as you don't transform your data within the select statement. I always try to use generated first, when it becomes too complex I move to a SQL builder, my last resort is user define...
by vmcburney
Wed Jul 20, 2005 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OLE Server Has Failed Error
Replies: 8
Views: 6330

Some large organisations push software out to desktops overnight to keep them standardised. You can have a happy DataStage at the end of the day and come in the following morning to find OLE automation errors. The standardised changes being pushed out are not tested against DataStage client software...
by vmcburney
Tue Jul 19, 2005 11:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Eliminating Duplicates in an Excel file
Replies: 13
Views: 5690

The transformer stage method with stage variables is the fastest method if you can get your input data sorted quickly. It will also let you output discarded duplicates quite easily. See the remove duplicates FAQ.
by vmcburney
Tue Jul 19, 2005 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting and DataSets
Replies: 3
Views: 946

A parallel job will automatically add sorting and partitioning to certain stages such as the remove duplicates and join stages. If you know the data is already sorted, let's say you have a sorted sequential file or a database source with an ORDER BY statement, you can turn off this sort insertion by...
by vmcburney
Tue Jul 19, 2005 9:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pipeline paralleslism in PX Vs IPC in server
Replies: 2
Views: 856

A sequential file as a source or target needs to be repartitioned as it is (as the name suggests) a single sequential stream of data. A dataset can be saved across nodes using the partitioning method selected so it is always faster when used as a source or target.
by vmcburney
Tue Jul 19, 2005 9:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designer vew Vrs. actual run
Replies: 2
Views: 686

Generally I prefer generated SQL up front with WHERE clause filters to restrict the number of rows coming back. I join tables where there is a simple foreign key link with proper indexing and the SQL performs well. The new SQL Builder let's you join tables together and automatically synchronises the...