Search found 53125 matches
- Fri Sep 07, 2007 5:52 am
- Forum: General
- Topic: Problem with Bigint when getting Nulls
- Replies: 3
- Views: 1422
- Fri Sep 07, 2007 5:49 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to Capture rejects through Oracle Load Option
- Replies: 7
- Views: 1644
Yes there is. Research the properties of the stage carefully (particularly the available properties to add in each of the properties folder). Report back with your research findings.
You might also Search the forum; I'm fairly sure this has been answered before.
You might also Search the forum; I'm fairly sure this has been answered before.
- Fri Sep 07, 2007 5:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: TDBMS failure code 3704 : Not a valid Teradata sql token
- Replies: 1
- Views: 4283
- Fri Sep 07, 2007 5:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error on dual installation(DS 7.5.1 & 8.0V) with dshome
- Replies: 4
- Views: 1401
- Fri Sep 07, 2007 5:42 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Importing metadata for xls files
- Replies: 1
- Views: 849
1. If you can find a UNIX-based ODBC driver for Excel you can import the table definition through that. No such driver ships with DataStage. 2. An XLS file is not a delimited file. It's more akin to a database schema, except that every worksheet is presented by the driver as a system table. And work...
- Fri Sep 07, 2007 5:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error in routine- not in VOC
- Replies: 13
- Views: 5416
- Fri Sep 07, 2007 5:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Inter processes job aborted
- Replies: 2
- Views: 1194
And Search for clues about owning mutex locks.
- Fri Sep 07, 2007 5:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: not able to write to flat file
- Replies: 6
- Views: 1424
- Fri Sep 07, 2007 5:29 am
- Forum: General
- Topic: Problem with Bigint when getting Nulls
- Replies: 3
- Views: 1422
- Fri Sep 07, 2007 1:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: not able to write to flat file
- Replies: 6
- Views: 1424
Check also whether the file already exists but is (a) owned by someone else and (b) their permissions don't allow your job to overwrite it. Check, too, that you still have write permission to the parent directory. Finally, make sure that all users in the project are in a common group and have a umas...
- Fri Sep 07, 2007 1:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to find the count of Sequencer jobs?
- Replies: 4
- Views: 1038
- Fri Sep 07, 2007 12:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to find the count of Sequencer jobs?
- Replies: 4
- Views: 1038
There is a 'job indicator' column called JOBTYPE.
0 = server job
1 = mainframe job
2 = job sequence
3 = parallel job
Substitute COUNT(*) in the SELECT clause if all you want is the count.
0 = server job
1 = mainframe job
2 = job sequence
3 = parallel job
Code: Select all
SELECT NAME FROM DS_JOBS WHERE NAME NOT LIKE '\%' AND JOBTYPE = '2';Substitute COUNT(*) in the SELECT clause if all you want is the count.
- Thu Sep 06, 2007 10:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Job geting hanged
- Replies: 12
- Views: 2309
Wrap your job design in [Code] tags so we can see it properly. Add Peek stages on relevant links so you can truly verify where data are and are not flowing. And you need to check the DB2 database (not the DB2 stage) to determine whether anything is locked. Are you, for example, updating one or both ...
- Thu Sep 06, 2007 10:40 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: related to log table in TPUMP Stage
- Replies: 3
- Views: 1212
- Thu Sep 06, 2007 10:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Automizing DS design flow
- Replies: 3
- Views: 984
A master job sequence is the one that runs the other job sequences. Within any job sequence a Job activity can run a job sequence (or a server job or a parallel job). So, if your two job sequences are JS1 and JS2, the master job sequence would have two job activities to execute these, together with ...