Greetings all
ASE 15.5
I have a user owned table (datapage locking scheme)
that gets dropped and re-created by the same name (but obviously with different object id) every night.
There are two indexes on the table visible by sp_helpindex tablename.
These are also created after the table is populated by an insert .... select...
However in monOpneObejctActivity I find only one entry for the main table (index id 0) only.
Is it correct to expect three entries (one for table index id 0 and one each for the indexes ) when I do the following
select count(*) from table(index 0) -- force table scan indid 0
select count(*) from table(index 2) -- force index scan indid 2
select count(*) from table(index 4) -- force index scan indid 4
I do get matching row counts returned by the above three queries
But I still see only one entry in monOpenObjectActivity.
exec sp_monitorconfig "all" does NOT show any resuse.
TIA and cheers
Avinash