Search found 53125 matches

by ray.wurlod
Mon Nov 03, 2003 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSExecute
Replies: 8
Views: 4342

To be more helpful, we would need to see the exact syntax of your call to DSExecute, along with prior statements that assign values to any variables used within the call, and subsequent statements that access values returned by subroutine arguments.
by ray.wurlod
Mon Nov 03, 2003 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BASIC routine is not cataloged
Replies: 5
Views: 8139

The "DSU" prefix indicates that ForceFail is a user-written routine of some kind. The error "not cataloged" usually indicates that the routine has not successfully been compiled. If you imported from an export file in which the executable code had not been exported, this is an equivalent situation. ...
by ray.wurlod
Mon Nov 03, 2003 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine not cataloged - what does this mean?
Replies: 3
Views: 3453

The "DSU" prefix indicates that ForceFail is a user-written routine of some kind. The error "not cataloged" usually indicates that the routine has not successfully been compiled. The process of compiling a server Routine also causes an entry to be placed in the "catalog" (actually the VOC file) cont...
by ray.wurlod
Mon Nov 03, 2003 12:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC list doesnt display all DSN
Replies: 5
Views: 1446

The only two choices are
the import via Manager of ODBC table definitions (you only need to get as far as populating the drop-down list of DSNs) :) , or
manual edit of the uvodbc.config file in the project directory on the DataStage server :cry:
by ray.wurlod
Mon Nov 03, 2003 12:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how put I job information from director into database?
Replies: 4
Views: 1495

You can create a DataStage job to do it! Not too many days ago I posted the column names from the DataStage log table. (Metadata from the DataStage repository tables is deliberately hidden during import of table definitions for UniVerse tables from localuv.) The only tricky bit is mapping the job na...
by ray.wurlod
Fri Oct 31, 2003 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extracting Data from a Hash File
Replies: 9
Views: 2521

Dennis and the site team are currenly resolving some issues that Ascential's legal folks have about publication of their trademarks and copyright material.
Negotiations have been in progress for about five months thus far. :shock:
by ray.wurlod
Fri Oct 31, 2003 5:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQLServer Timestamp compare to Date String
Replies: 5
Views: 1986

Your problem really is that the form "June 30 1999" is not actually a date, but a character string. So you're not comparing apples with apples. In string terminology, you're trying to compare, for example: "1999-08-31 15:03:40.024" > "June 30 1999" Ask yourself, what is the result of this string com...
by ray.wurlod
Fri Oct 31, 2003 5:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Before/After routines for checking job completion
Replies: 2
Views: 1629

Re: Before/After routines for checking job completion

I am trying to use before/after routines to set the UserStatus depending on the JobStatus of a job (am using UserStatus as requested by our support people so they can check jobs within our scheduling software). From reading the manuals I get the impression that I could set the UserStaus at the star...
by ray.wurlod
Fri Oct 31, 2003 5:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job hangs - Hashfiles populated, not Transformations
Replies: 6
Views: 2038

There really isn't enough information for diagnosis here, Tobbi. What does your job do? What are your sources, what are your targets? Does the Transformer stage have constraint expressions? Are the hashed files loaded in the same job that refers to them? I suspect that you've tried something like th...
by ray.wurlod
Fri Oct 31, 2003 5:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error: ODBC and Parameter array size
Replies: 3
Views: 3923

This job would be improved by ensuring that you aren't trying to insert rows that already exist. This would mean that the "duplicate key value" error messages would not be generated. It's probably a surfeit of error information attached to the ODBC connection or statement handle (when you're sending...
by ray.wurlod
Thu Oct 30, 2003 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data source does not support transactions.
Replies: 10
Views: 3459

This won't help. DataStage sends a COMMIT. There is no transaction isolation level that bypasses this. Therefore an Informix database created without logging will still generate the error message when it receives the COMMIT.
by ray.wurlod
Thu Oct 30, 2003 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML with DS 6/7 and Oracle 9i
Replies: 6
Views: 1675

Could you consider using a (perhaps multi-instance) server job, using the XML Reader stage?
by ray.wurlod
Thu Oct 30, 2003 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Outer Joins....
Replies: 3
Views: 1016

Another way to detect whether the lookup failed is to interrogate the link variable NOTFOUND for the reference input link. Thus, for example, the constraint expression on the output link that handles those rows for which the reference lookup (on input link RefInput) would be simply RefInput.NOTFOUND...
by ray.wurlod
Thu Oct 30, 2003 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Logging log in a file
Replies: 3
Views: 1804

You could create a DataStage job to do it!
Column names in the log are found by executing LIST DICT RT_LOG at the command level. Your job will need to determine the job number, to form the name of the actual log table (RT_LOGnn).
by ray.wurlod
Thu Oct 30, 2003 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Admin tasks
Replies: 4
Views: 2810

The Administrator's primary role is installation and setting project-wide defaults, basically the tasks on the Administrator client's tabs. After that, the DataStage engine is designed to look after itself reasonably well, though there are a few minor housekeeping tasks, such as deleting old files f...