Search found 53125 matches

by ray.wurlod
Wed Jun 21, 2006 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 issue with SQLTABLES
Replies: 7
Views: 2277

SQLTables is a function used by the API to retrieve a list of available tables in a database. Looks like, perhaps, its name is being translated to upper case by the (?) database server or the (?) calling mechanism. Or maybe there is a system function that you don't have privilege to execute. Check w...
by ray.wurlod
Wed Jun 21, 2006 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to create the Stage editor Object?
Replies: 6
Views: 8468

I suspect you had an intermittent/transient OLE Automation issue in Windows, which may or may not recur.
by ray.wurlod
Wed Jun 21, 2006 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create a XML output
Replies: 4
Views: 977

Have you tried to? Is there one on the Palette for parallel jobs?
by ray.wurlod
Wed Jun 21, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job status code
Replies: 5
Views: 1082

If it "has finished with a status of 2" then you don't need to stop it - it has already finished. The Job Activity through which you invoked the job needs to have an OK trigger leading to the next activity. That is sufficient to meet your stated need. I suspect you need some more thought, and anothe...
by ray.wurlod
Wed Jun 21, 2006 2:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to see for the Environment variable defined for project
Replies: 2
Views: 682

Every job that runs posts an event in the log (usually the second event for the job run) that reports the environment variable values actually used. The first event posts the parameter values used, so you can check which ones, if any, were altered.
by ray.wurlod
Wed Jun 21, 2006 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage 8.0 API Question
Replies: 3
Views: 1197

I can't see them taking out COMMON - there are too many SDK routines that depend on it. But, then, I haven't played with version 8.x yet either.
by ray.wurlod
Wed Jun 21, 2006 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Installation of DataStage Server/Enterprise Edition
Replies: 4
Views: 937

If licensed, server jobs will continue to run quite happily. You may need to consider the actual migration process, however. For example do any hashed files (or a directory for them) need to be created on the new machine?
by ray.wurlod
Wed Jun 21, 2006 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning in XML
Replies: 5
Views: 1392

What is your business rule? That is, what should be the "numeric equivalent" of ""?
by ray.wurlod
Wed Jun 21, 2006 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how load balancing will work
Replies: 2
Views: 1506

This thread is closed. The OP has posted the question in the RTI forum.
by ray.wurlod
Wed Jun 21, 2006 2:27 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: how load balancing will work
Replies: 2
Views: 2719

You can set up N instances of an always-running job. The web services will simply allocate any of the "free" resources. There is no more control than that, certainly no active load balancing.
by ray.wurlod
Wed Jun 21, 2006 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run time
Replies: 3
Views: 873

Create the base file name then use an after job subroutine (perhaps ExecSH) to rename it.

Code: Select all

mv #filename# #filename#`date +"%YYYY-%MM-%DD %HH:%MM:%SS"`
by ray.wurlod
Wed Jun 21, 2006 1:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Proc/Unix Script/DS Routine : which is better ?
Replies: 1
Views: 1094

Fourth, and best, option is to use DataStage. A standard lookup will not only determine existence but also return any columns from that row that you specify. Based on the success of failure of the lookup, you can make any further decision required such as setting a value in an IsValid variable or co...
by ray.wurlod
Wed Jun 21, 2006 12:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the records from SQL server Table through routine
Replies: 2
Views: 964

Welcome aboard. :D You need to access SQL Server through the ODBC driver. Problem is, the one you have is not licensed for your use in code, only for use from the ODBC and Dynamic RDBMS stages. You will find that it works for 30 days, then fails with a message telling you to buy a licence from Data ...
by ray.wurlod
Wed Jun 21, 2006 12:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Values within some limit
Replies: 8
Views: 1647

Use a Column/Row Generator stage with job parameters for the limits.
by ray.wurlod
Wed Jun 21, 2006 12:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between stopped, aborted and crashed
Replies: 1
Views: 959

Aborted is caused by some operational condition such as execution of the DSLogFatal subroutine or an appropriately severe condition being detected in the processing of data. Stopped is "stopped by operator", for example from Director or a call to the DSStopJob subroutine or Terminator activity. Cras...