Search found 53125 matches
- Wed Feb 10, 2010 2:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Teradata Plug-in requirements
- Replies: 4
- Views: 1881
- 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
- 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
- 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...
- 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)- 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...
- 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)- 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...
- 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
- 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.
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;Code: Select all
select * from DS_JOBS;- 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
- 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
- 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.
- 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)?
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)?
- 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