Search found 53125 matches

by ray.wurlod
Tue Dec 18, 2007 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg:Data validation using DB2 Load Utility
Replies: 2
Views: 1479

I fully agree. The load utility for DB2 does not have this kind of functionality. Do it in a Transformer stage.
by ray.wurlod
Tue Dec 18, 2007 2:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Macro
Replies: 2
Views: 1114

You would need to create a small executable (probably in Visual Basic) that invoked Excel and ran the macro. DataStage itself can only access Excel via ODBC, and there is no mechanism within ODBC for running Excel macros. DataStage can, however, invoke the executable via ExecDOS as a before/after su...
by ray.wurlod
Tue Dec 18, 2007 2:24 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Reading a text file from profile satge with selected columns
Replies: 2
Views: 1987

Either use the ODBC driver for text files and mention only the desired columns in the SELECT statement, or within ProfileStage identify those columns that are to be excluded from analysis.
by ray.wurlod
Tue Dec 18, 2007 2:20 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: How to view analysis result of a analysed column
Replies: 1
Views: 1730

The same way you would if doing it the same day. On the ProfileStage Menu Map choose Analysis Reports (it's in the top right hand corner). Or choose Reports from the main menu, and Column Analysis from there.
You can export these reports into a number of different formats.
by ray.wurlod
Tue Dec 18, 2007 5:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multi row lookup
Replies: 2
Views: 1025

Simply check the Multiple Row Return check box in the Transformer stage (reference) input link properties.
by ray.wurlod
Tue Dec 18, 2007 5:08 am
Forum: General
Topic: DataStage Plug in guide for PX
Replies: 3
Views: 1314

In this context "plug-in" really means "non Enterprise". For parallel jobs there are Enterprise stage types, with inherent parallelism, and "plug-in" or "API" stage types which are modelled on their server job counterparts and have limited parallel capability.
by ray.wurlod
Tue Dec 18, 2007 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Simultaneously appending data to same dataset
Replies: 8
Views: 3573

Never assume anything about sorting or partitioning. Design it in explicitly.

As to whether you can simultaneously append to the same Data Set, do let us know. Also open the Data Set management tool and tell us whether each job has created a separate physical data file on each partition.
by ray.wurlod
Tue Dec 18, 2007 4:56 am
Forum: General
Topic: After Job subroutine, DSGetLinkInfo()
Replies: 13
Views: 11429

An after-job subroutine has only a single input argument, containing anything from the Input Value field. You need to parse out the names from the InputArg argument. You can use DSJ.LINKROWCOUNT to get the total rows across all partitions - you don't need to add the separate partitions as in the cod...
by ray.wurlod
Tue Dec 18, 2007 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to implement a loop function
Replies: 14
Views: 3974

I'm afraid I don't understand this latest question in the context of the earlier posts in this thread. What temp? What is Stu? What is the significance of line 4?
by ray.wurlod
Tue Dec 18, 2007 4:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading value of job parameter from a flat file
Replies: 4
Views: 929

What have you already searched for?
by ray.wurlod
Tue Dec 18, 2007 4:25 am
Forum: General
Topic: DataStage Plug in guide for PX
Replies: 3
Views: 1314

It's a different concept in parallel jobs. You don't have a separate concept of plug-in stages. Rather, you right click on Stage Types in the Repository and create new Build or Custom or Wrapped stages. All is explained in the Parallel Job Advanced Developer's Guide
by ray.wurlod
Tue Dec 18, 2007 4:16 am
Forum: General
Topic: IsNumeric function
Replies: 2
Views: 4396

Why do you claim that the IsNumeric() function is not available? Are you using the expression editor to construct your expression?
If it truly is unavailable, you might like to explore the IsValid() function.
by ray.wurlod
Mon Dec 17, 2007 11:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: copy metadata
Replies: 5
Views: 1131

No. It's a manual process. Follow Craig's instructions.
by ray.wurlod
Mon Dec 17, 2007 11:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to implement a loop function
Replies: 14
Views: 3974

The first job in a sequence runs, and processes zero or more rows. In a routine activity you determine, probably via a call to DSGetLinkInfo(), whether the row count was zero or otherwise. A custom trigger on the routine activity then determines whether the second job, which generates the "all zeroe...
by ray.wurlod
Mon Dec 17, 2007 11:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Shared Container Mystery
Replies: 1
Views: 1307

In these jobs did you use a copy of, or a reference to, the shared container?