Search found 4605 matches
- Mon May 01, 2006 5:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Audit counts
- Replies: 7
- Views: 1956
- Mon May 01, 2006 5:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem in Job Report XML File Creation
- Replies: 4
- Views: 996
- Fri Apr 28, 2006 9:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HOw to create arrays in datastage basic routines
- Replies: 5
- Views: 5481
- Thu Apr 27, 2006 8:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How long has DataStage been in the market?
- Replies: 4
- Views: 1767
- Thu Apr 27, 2006 10:11 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How long has DataStage been in the market?
- Replies: 4
- Views: 1767
Several us started with the beta version 1.0. Some before that. That was back in 1997. VMark was the company that originally wrote DataStage. VMark made their money off a database called uniVerse. Many of us were employees of VMark. I have been using uniVerse since 1986. There are several good posts...
- Thu Apr 27, 2006 8:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parameters on Execute Command Activity in a Sequence
- Replies: 8
- Views: 3903
- Thu Apr 27, 2006 8:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parameters on Execute Command Activity in a Sequence
- Replies: 8
- Views: 3903
By the way DwNav only brings in sequences to get the relationship between sequences and the jobs they run. It always annoys me to try to figure out what sequence controls the job I need to change. Usually you have to do a search like the above which I have a cool routine JR Hines wrote or I go to pr...
- Thu Apr 27, 2006 8:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parameters on Execute Command Activity in a Sequence
- Replies: 8
- Views: 3903
It is easier to do this at TCL. You need to search for TCL commands. TCL is the way to talk to Universe directly or what is now called the DataStage Engine. You get a TCL prompt ">" when you telnet into a DataStage server. This is equivalent to sqlplus for Oracle. The quickest way to find these reco...
- Thu Apr 27, 2006 8:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Query Stage Names from Universe
- Replies: 10
- Views: 2595
Code: Select all
SELECT
DS_JOBOBJECTS.OLETYPE as StageType,
DS_JOBS.NAME as JobName,
DS_JOBOBJECTS.NAME as StageName
FROM
DS_JOBOBJECTS,
DS_JOBS
WHERE
OBJIDNO = JOBNO
and DS_JOBOBJECTS.OLETYPE like '%Stage%'
Group by
StageType,
JobName,
StageName
;
- Wed Apr 26, 2006 3:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Parameters on Execute Command Activity in a Sequence
- Replies: 8
- Views: 3903
- Wed Apr 26, 2006 3:51 pm
- Forum: Site/Forum
- Topic: Categories for Favorites and lists for watched forums
- Replies: 5
- Views: 3542
- Wed Apr 26, 2006 3:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Issues regarding Notification Activity
- Replies: 7
- Views: 2195
The status of DSJ.ME should always be "Running". If you look at job control generated for sequences. Then you can see how to get job status. You may need to leave off the job run and the wait for job routine calls but you need to attach to a job first. There is lots of code posted by me and others w...
- Wed Apr 26, 2006 8:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: error reading data from universe
- Replies: 3
- Views: 843
- Wed Apr 26, 2006 5:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Query Stage Names from Universe
- Replies: 10
- Views: 2595
- Tue Apr 25, 2006 10:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Query Stage Names from Universe
- Replies: 10
- Views: 2595
EtlStats has a script named DsJobLinksAll.sql. Here is the SQL: SELECT DS_JOBOBJECTS.OLETYPE as LinkType, DS_JOBS.NAME as JobName, DS_JOBOBJECTS.NAME as LinkName, DS_JOBS.CATEGORY as Category FROM DS_JOBOBJECTS, DS_JOBS WHERE OBJIDNO = JOBNO and DS_JOBOBJECTS.OLETYPE like '%put' Group by LinkType, J...