Search found 53125 matches

by ray.wurlod
Tue Sep 06, 2005 8:29 pm
Forum: IBM QualityStage
Topic: QualityStage Ruleset problem
Replies: 5
Views: 2936

Welcome aboard! :D
At a guess, you lack write permission in the folder for your output file from the STAN
by ray.wurlod
Tue Sep 06, 2005 8:25 pm
Forum: Enhancement Wish List
Topic: Resynchronize Table Definitions
Replies: 0
Views: 1357

Resynchronize Table Definitions

An extra button on the Columns tab in all passive stage types that allows the columns in the grid to be resynchronized against the table definition in the Repository from which they were drawn. This would be useful, for example, after changes to data type, precision, scale, etc. Name changes are per...
by ray.wurlod
Tue Sep 06, 2005 6:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: constraint performane
Replies: 1
Views: 726

Fewer rows in the same amount of time means a lower rate of rows per second.
The first stage constraints its input, so that fewer rows are output.
It's simple arithmetic. Don't worry about it. Rows/sec is fairly meaningless as a general indicator of performance in any case.
by ray.wurlod
Tue Sep 06, 2005 5:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: command line functins that import and export the DS jobs
Replies: 23
Views: 9944

Now show us with dscmdexport command. This is the command about which it is asserted that individual jobs can not be exported, not dsexport.
by ray.wurlod
Tue Sep 06, 2005 5:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find usage of particular flat files throughout DS jobs
Replies: 4
Views: 1355

Export, then conduct a search on the export file. It's ugly, but it's about all you've got. You (they?) have failed to maintain the linkages upon which Usage Analysis relies. You could, of course, search DS_JOBOBJECTS, looking for an OLETYPE of SeqInput or SeqOutput. But that won't help you to find ...
by ray.wurlod
Tue Sep 06, 2005 5:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COUNT Problem
Replies: 12
Views: 2623

Found it! The problem is the mixed case table name. UniVerse (DataStage) puts the quotes on when there's a non-all-upper-case name. This also occurs through the Command window of the Administrator client. Can't find a solution using COUNT verb, but you can use quoted identifiers in SQL. For example ...
by ray.wurlod
Tue Sep 06, 2005 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Wise
Replies: 4
Views: 1064

Alas there are no silver bullets. You need to analyze what the job is doing and find the hot spots (that is, those parts of the job that consume the most resources). Capturing performance statistics (see Tracing tab in Job Run Options dialog) can help here. Closing the Director and not showing perfo...
by ray.wurlod
Tue Sep 06, 2005 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Format 195,231 (char) to 195231 (Numeric)
Replies: 24
Views: 4308

Code: Select all

Oconv(inlink.TheNumber, "MCN") 
removes all non-numeric characters. Beware that this will remove any sign from the number.
by ray.wurlod
Tue Sep 06, 2005 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use "LIKE" functionality in transformer
Replies: 4
Views: 1468

The Transformer stage uses non-SQL pattern matching. Read about pattern matching in the on-line help or the DataStage BASIC manual. Example: inlink.Desc Matches "...T..." (the three dots is a wildcard matching any number of characters) inlink.ProdCode Matches "2A3N..." (ProdCode must begin with two ...
by ray.wurlod
Tue Sep 06, 2005 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe Tables
Replies: 2
Views: 1078

Yes.

Even faster would be to use sequential files for staging.

Do all your validation checking within DataStage.
by ray.wurlod
Tue Sep 06, 2005 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: fixed width columns and the default null string
Replies: 4
Views: 1333

Because you're using fixed width, the representation of NULL will differ in different columns (since it has to be the same width as the column). In the Columns grid you can specify column-specific representations of NULL; scroll right until you find it.
by ray.wurlod
Tue Sep 06, 2005 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Find usage of particular flat files throughout DS jobs
Replies: 4
Views: 1355

Yes, provided your metadata management has been disciplined and you have table definitions in the Repository for these sequential files and that the linkages between these and the jobs that used them have not been broken, then you can use Usage Analysis in the Manager client.
by ray.wurlod
Tue Sep 06, 2005 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Running Shell Script Though DataStage
Replies: 5
Views: 1993

Where's the error? You have posted two informational messages.
by ray.wurlod
Tue Sep 06, 2005 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COUNT Problem
Replies: 12
Views: 2623

Command = "COUNT " : Arg1 Call DSExecute("UV", Command, Output, Code) Call DSLogInfo("Command = ": Command, "CountHashedFile") Call DSLogInfo("Output = " : Quote(Output) : @FM : "Code = " : Code, "CountHash...
by ray.wurlod
Tue Sep 06, 2005 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: command line functins that import and export the DS jobs
Replies: 23
Views: 9944

But you can't do it with the client-based dscmdexport command. If you disagree with that assertion, please supply the method.