Search found 53125 matches

by ray.wurlod
Tue Jan 11, 2005 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: database object views
Replies: 1
Views: 592

Your "using an API" means that this is not a DataStage question. You can use DataStage stages to select from views. Simply import the view definition as you would a table definition, and use it the same way. The only difference in operation is that you must wait - as would any other client - for the...
by ray.wurlod
Tue Jan 11, 2005 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job control using parameters
Replies: 1
Views: 787

Use a Failed trigger to detect failure of the first job.

Use a Routine activity (or Command activity or maybe even a Nested Condition) to determine whether the conditions related to the file and its name are satisfied.

On the basis of that, determine whether to run the second job.
by ray.wurlod
Tue Jan 11, 2005 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set up UV account
Replies: 5
Views: 1050

You were in the $DSHOME/bin directory. You should NEVER answer Y to this question.

You need to cd to a project directory before executing this command.

Also, get into the habit of preferring dssh (or ds) to uv. The uv command will be going away one day.
by ray.wurlod
Tue Jan 11, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling/Running a job from a web portal
Replies: 3
Views: 900

What is the impact on your model of a 20-minute refresh being triggered by the button being clicked every minute? What is the impact if there are 400 browsers connecting through the portal and each of them clicks the button? Perhaps the DataStage process needs to set a flag that the web portal can r...
by ray.wurlod
Tue Jan 11, 2005 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call DB2 stored procedure using ODBC stage
Replies: 3
Views: 2461

Change your selection method from "user-defined SQL" to "call stored procedure". Make sure that you have imported the stored procedure definition. Make sure also that your job design specifies the correct number and type of columns, as expected by the stored procedure definition.
by ray.wurlod
Tue Jan 11, 2005 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mapping a Decimal to a Char
Replies: 4
Views: 1110

CSV is, of course, a variable-width format, so DataStage merrily makes use of that fact. If you want to prove that errors can occur, change to a fixed width format; the column width in the text file is determined by the Display Width property of a column definition (not the SQL data type). You will ...
by ray.wurlod
Tue Jan 11, 2005 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Metadata mismatch
Replies: 2
Views: 1477

You would never need to reinstall, only to clear the log file that had become corrupted by an attempt to exceed 2GB. Writing all those entries will, of course, slow your throughput, but they will not otherwise "impact the UniVerse". Ideally, you can change your metadata within DataStage after it's b...
by ray.wurlod
Tue Jan 11, 2005 3:03 pm
Forum: IBM QualityStage
Topic: Command syntax for QS jobs
Replies: 6
Views: 3572

Yes I can. No there isn't.

However, there's no reason not to create a DataStage job that uses QualityStage stage type to invoke whatever it is you're doing in QS, and this you can start with the dsjob command.
by ray.wurlod
Tue Jan 11, 2005 2:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataTypePicComp
Replies: 35
Views: 6789

Not necessarily.

If you scroll to the right in the Columns grid of the Sequential File stage, you will find the ability to inform the stage that a column may contain terminator characters, and thereby incorporate the ability to handle them gracefully.
by ray.wurlod
Tue Jan 11, 2005 2:28 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: SDK
Replies: 1
Views: 2040

The document that describes the APIs for communicating with the RTI services is supplied when the RTI Services are purchased. It is called Real Time Integration Services User Guide (DS_RTI_User.pdf), and is accompanied by a technical bulletin called Text Over JMS Binding (RTI_TOJMS.pdf). I put these...
by ray.wurlod
Tue Jan 11, 2005 1:21 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Can anybody explain about DS RTI Services and purpose &
Replies: 4
Views: 3507

Almost certainly NOT an appropriate use for RTI Services, there's no "real time" requirement, is there?
by ray.wurlod
Mon Jan 10, 2005 8:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX 6.0 String to Decimal
Replies: 12
Views: 5155

Its an hourly rate, so i am expecting it to be small...

Have you no ambition?!! :lol:
by ray.wurlod
Mon Jan 10, 2005 8:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Lookup
Replies: 3
Views: 1736

How is the key defined? It is just the two values with no space between?

Use the PX expression editor to construct your expression, rather than assuming that ":" is the concatenation operator.
by ray.wurlod
Mon Jan 10, 2005 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage release versions
Replies: 1
Views: 846

1.0 There are substantial changes when the major number changes. Probably the biggest change in version 6.0 is that DataStage is no longer built on UniVerse as its engine. There are enhancements to hashed file processing (particularly caching). For a complete list view the readme that accompanies th...
by ray.wurlod
Mon Jan 10, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Routine
Replies: 5
Views: 1779

Arnd's post makes the point that you need the generic specification of how you are defining your start and end dates. For example "start date is the first day of the calendar month following the calendar month following the calendar month in which the current date occurs". With such a specification,...