Search found 53125 matches

by ray.wurlod
Wed Nov 15, 2006 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage
Replies: 13
Views: 4924

Code: Select all

select * from users where clue > 0;

0 rows returned.
by ray.wurlod
Wed Nov 15, 2006 9:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete Project in administrator
Replies: 9
Views: 3229

Deleting the record from UV.ACCOUNT is only half the story. You also need to remove the entries from the SQL Catalog. The command for doing this properly is VERIFY.SQL SCHEMA projectname This will report that the physical objects do not exist. You must then log in as a user who has DBA privilege (us...
by ray.wurlod
Wed Nov 15, 2006 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Phantom problem
Replies: 6
Views: 1433

The "DSU." says that there is an Nvl() function in your Repository. Check which Routines ARE in your job design, and whether any of these might invoke the Nvl() function. Don't forget to check in any before/after subroutines and/or job control routines also.
by ray.wurlod
Wed Nov 15, 2006 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we install the datastage server without database?
Replies: 9
Views: 3267

Another way to look at it is from the database server's perspective.

A running DataStage job, or a metadata import or View Data request from DataStage, is just another client application as far as the database server is concerned.
by ray.wurlod
Wed Nov 15, 2006 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to clear RT_LOG****
Replies: 6
Views: 10852

The "Clear" utility in Director is a DELETE transaction which does not delete the control records, followed by some UPDATE transactions that correct values in those control records. Director must wait until those transactions are completed.
by ray.wurlod
Wed Nov 15, 2006 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pass parameter to DSSendmail Subroutine
Replies: 8
Views: 2194

The code is already provided, in a routine called DSSendMailTester (under Routines\Built-In\Utilities in your Repository).
by ray.wurlod
Wed Nov 15, 2006 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: root - installation of Datastage server
Replies: 3
Views: 2844

In your ps command it was clear that dsrpcd was not running. You needed to determine why, either by starting it in debug mode, or checking with netstat for processes bound to its port. Search the forum for details. Reinstallation was probably unnecessary.
by ray.wurlod
Wed Nov 15, 2006 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we code to call the bat files inside batch file?
Replies: 7
Views: 1749

From a Job Control routine (in any version from 1.0 onwards) Shell = "NT" Command = "Deltxtfiles.bat" ; * or pathname of BAT file Output = "" ExitStatus = -999 Call DSExecute(Shell, Command, Output, ExitStatus) Message = "Executed command: " : Quote...
by ray.wurlod
Wed Nov 15, 2006 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_LOGxxx Not Found
Replies: 9
Views: 3033

In the meantime, a manual purge (up to the last run) would help you to get up and running again.
by ray.wurlod
Wed Nov 15, 2006 8:55 am
Forum: General
Topic: Job Server dosent started
Replies: 8
Views: 4596

Welcome aboard. :D

Is it the jobs that stop, or the DataStage services? ("DS stop with a strange error" does not let us know which of these things is happening.) Can you please post the full message from that error? Double click on the event in the job log to view the full message.
by ray.wurlod
Wed Nov 15, 2006 8:53 am
Forum: General
Topic: Data.30 - Size of File
Replies: 4
Views: 3105

DS_JOBOBJECTS/DATA.30 is espected to be large, as it contains every object in every job and job sequence design in the project. If can grow towards 2GB before you should become alarmed. As it approaches that size (say, if it exceeds 1.5GB) then you should schedule some down time for maintenance. You...
by ray.wurlod
Wed Nov 15, 2006 8:48 am
Forum: General
Topic: How to delete IsMultiInstance?
Replies: 5
Views: 3766

I must hasten to add that it is not my routine itself that is giving the error! It is the security setting on the routine in its table.
by ray.wurlod
Tue Nov 14, 2006 11:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join stage
Replies: 13
Views: 4924

Have you provided a reproducible example to your support provider? If so, what feedback did you get?
by ray.wurlod
Tue Nov 14, 2006 11:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RT_LOGxxx Not Found
Replies: 9
Views: 3033

Find out who's deleting them. Castigate them.
by ray.wurlod
Tue Nov 14, 2006 11:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage server directory running out of space
Replies: 17
Views: 5263

Run the find command suggested earlier. Something is growing rapidly. Note that auto-purge does not occur for jobs that abort. Auto-purge is triggered only by successful completion (status DSJS.RUNOK or DSJS.RUNWARN).