When using these joint tables I still only get a few more results -
SQL> select count(*) from
2 epmdocumentmaster edm,
3 epmdocument ed
4 where
5 upper(edm.name) like '%.PRT' and
6 upper(edm.ida2a2) = ED.IDA3MASTERREFERENCE;
COUNT(*)
----------
10284
SQL> select count(*) from
2 epmdocumentmaster edm,
3 epmdocument ed
4 where
5 upper(edm.name) like '%.DRW' and
6 upper(edm.ida2a2) = ED.IDA3MASTERREFERENCE;
COUNT(*)
----------
233
SQL> select count(*) from
2 epmdocumentmaster edm,
3 epmdocument ed
4 where
5 upper(edm.name) like '%.ASM' and
6 upper(edm.ida2a2) = ED.IDA3MASTERREFERENCE;
COUNT(*)
----------
2787
When using Ben's method of pressing the next button I get the following results
(I personally think these results look about the right values)
.drw = 3026
.prt = 4780
.asm = 3695
So which are the accurate results? Why are these different?
Thanks for the quick replys!