Search found 4605 matches
- Fri Dec 22, 2006 4:33 pm
- Forum: General
- Topic: Oracle stage
- Replies: 2
- Views: 2242
- Fri Dec 22, 2006 7:22 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Re-Build Repository
- Replies: 5
- Views: 3016
The reindex command requires exclusive access to whatever it is indexing. You may have corrupted the hashed file you are trying to reindex. If so then the reindex command will never work. Try this command: COUNT DS_JOBS COUNT DS_JOBOBJECTS If you can count these hashed files then maybe they are not ...
- Wed Dec 20, 2006 8:50 pm
- Forum: General
- Topic: Help on Datastage earlier versions
- Replies: 14
- Views: 7068
- Wed Dec 20, 2006 8:46 pm
- Forum: General
- Topic: The Data Warehousing Institute(TDWI) - membership
- Replies: 6
- Views: 3716
- Wed Dec 20, 2006 7:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: EtlStats question
- Replies: 20
- Views: 7112
You got it correct. You need to write a job which moves the tables above to load them into hashed files of the same name. You need to create these hashed files somehow before running this job. If you want you can write a job to pass these from the hashed files into the real tables if you need them t...
- Wed Dec 20, 2006 7:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: EtlStats question
- Replies: 20
- Views: 7112
- Tue Dec 19, 2006 8:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: EtlStats question
- Replies: 20
- Views: 7112
- Tue Dec 19, 2006 8:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To get count(*) from tables
- Replies: 10
- Views: 3425
Most of these jobs in EtlStats were built in my spare time. A lot of these the customer said no and I built it anyway because I knew it had value but I could not explain it well enough for them to want to pay for it. After a while they just turn me loose knowing I am better at delivering than explai...
- Tue Dec 19, 2006 7:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To get count(*) from tables
- Replies: 10
- Views: 3425
This is a very complicated process. It is hard to explain. I have tried many times to explain. If you get it working then please let us know.
I can also sum fields. So fact tables can be QA'd.
I can also sum fields. So fact tables can be QA'd.
Code: Select all
select sum(AMT_BILLED) from invoices;
select sum(AmountBilled) from INVOICE_FACT;
- Tue Dec 19, 2006 7:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To get count(*) from tables
- Replies: 10
- Views: 3425
The QA jobs in EtlStats are designed to count records in source and target and compare them. I have posted links to the reports which are generated from this type of automated QA process. The way it works is it requires you to out SQL statements you want run in a table called ETL_QA_SQL. There is a ...
- Tue Dec 19, 2006 7:31 pm
- Forum: General
- Topic: Getting Job Names from Sequences
- Replies: 11
- Views: 4585
- Tue Dec 19, 2006 7:58 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: To get count(*) from tables
- Replies: 10
- Views: 3425
EtlStats will do this. In the QA jobs it can count both the source and target tables and email you a report of both compared together. This is called a completeness report. You could use EtlStats just to get the row counts of all the jobs ran. There are jobs within EtlStats which can extract the tab...
- Tue Dec 19, 2006 7:53 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: EtlStats question
- Replies: 20
- Views: 7112
You could modify DSJobReportDbDriver and strip out what you do not want. I would rename it so you can upgrade to the next version of EtlStats. You do not have to call DSJobReportDbDriver at all if you want. You can run DSJobReportDb directly. DSJobReportDbDriver was created so at the end of a sequen...
- Mon Dec 18, 2006 9:09 pm
- Forum: General
- Topic: Getting Job Names from Sequences
- Replies: 11
- Views: 4585
I have no idea what you mean by: what sequence they are called like 1) Extract 2) Transform 3) Insert 4) Update This would help me in showing the status of the sequence jobs in the same sequence they are called. The sequence name is in the same row as each job that it runs. You would need to add pro...
- Sat Dec 16, 2006 1:06 am
- Forum: General
- Topic: Getting Job Names from Sequences
- Replies: 11
- Views: 4585