Search found 53125 matches

by ray.wurlod
Wed Feb 10, 2010 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Teradata Plug-in requirements
Replies: 4
Views: 1881

Is the Teradata client software (TUF) installed on the DataStage server machine?
by ray.wurlod
Wed Feb 10, 2010 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running datastage job through Unix shell script
Replies: 19
Views: 18342

There were three questions...
by ray.wurlod
Tue Feb 09, 2010 11:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running datastage job through Unix shell script
Replies: 19
Views: 18342

Probably. What are the differences between the users' profiles? What permissions might be affected? Did you execute the dsenv script before running from the command line?
by ray.wurlod
Tue Feb 09, 2010 10:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 14298

Or, for the truly paranoid function developer. FUNCTION Doze(aInterval) Begin Case Case UnAssigned(aInterval) Or IsNull(aInterval) NULL ; * do nothing Case Not(Num(aInterval)) NULL ; * do nothing Case aInterval <= 0 NULL ; * do nothing Case @TRUE * We have a positive number as the argument SLEEP aIn...
by ray.wurlod
Tue Feb 09, 2010 7:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 14298

Even better is to leave out the Perform statement.

Code: Select all

FUNCTION Doze(aInterval) 
SLEEP aInterval 
Ans = 0 
RETURN(Ans)
by ray.wurlod
Tue Feb 09, 2010 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SELECT not in your VOC
Replies: 4
Views: 3824

That's because you are in an account that is not a project, therefore there is no DS_JOBS table. LOGTO any project account and you will find that the query succeeds. It works in Administrator because there you have already chosen (and invisibly connected to) a project. Quoting the entire SQL makes n...
by ray.wurlod
Tue Feb 09, 2010 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 14298

Commands can not be executed from the Transformer. If you need to sleep while in a Transformer then you need a Routine that the Transformer stage can call.

Code: Select all

FUNCTION Doze(aInterval)
Perform "SLEEP " : aInterval
Ans = 0
RETURN(Ans)
by ray.wurlod
Tue Feb 09, 2010 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access Vioaltion Error
Replies: 3
Views: 2134

The problem has occurred slightly after line 148 (line numbers can be out by a few particularly if INCLUDE directives appear in the code). It has occurred while trying to close the connection to the database (DSP.Close is an internal routine used by stage types that employ ODBC protocols.) There's n...
by ray.wurlod
Tue Feb 09, 2010 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compiled job list from project
Replies: 1
Views: 959

DataStage Director.

Disable Show Folders in the View menu.

Sort by Status.

(You can use the Filter to exclude Not Compiled.)

Print to file.
by ray.wurlod
Tue Feb 09, 2010 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SELECT not in your VOC
Replies: 4
Views: 3824

Type the command in upper case.

Code: Select all

SELECT * FROM DS_JOBS;
The parser has actually reported it incorrectly; the problem is with the table name, which is case sensitive. Reserved words from SQL are not actually case sensitive. So the following would have worked.

Code: Select all

select * from DS_JOBS;
by ray.wurlod
Tue Feb 09, 2010 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype problem while reading
Replies: 3
Views: 1264

And, if that works, please mark the thread as Resolved using the green button at top.
by ray.wurlod
Tue Feb 09, 2010 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sending multiple records as Single Message using MQ Connecto
Replies: 3
Views: 1427

Are you the same person? If not, can you please post the script so that Apotluri may have an answer to the original question?
by ray.wurlod
Tue Feb 09, 2010 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGBUS Error
Replies: 9
Views: 7301

Please delete your duplicate post before anyone responds to it.
by ray.wurlod
Tue Feb 09, 2010 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGBUS Error
Replies: 9
Views: 7301

Does your PATH environment variable when the job runs include the parent directory of the sqlldr command?

Does the executing user ID have write permissions to whatever directory you specified for the control and data files, and to the scratchdisk (where the log and bad files are written by default)?
by ray.wurlod
Tue Feb 09, 2010 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error While saving a Job in V8.1
Replies: 6
Views: 2366

Curiously one of my clients also ran out of space for XMETA yesterday. However it was DB2, auto-extend was ON. They actually ran out of disk space. So they'll be adding 30GB to that file system overnight.