I tried it and it works just fine. Can you verify that materialized views are returned in the all_objects view? Note that Oracle 8.1.7 had a bug that would hide all materialized views from the all_objects view.
SELECT *
FROM all_objects
WHERE owner = 'AEO'
AND object_type LIKE '%VIEW%';
Doesn't list the materialized views from this schema. We're running 10g, release 1.
I recreated one of those materialized views in my schema and I can definitely see it with this:
Code:
SELECT *
FROM user_objects
WHERE object_type = 'MATERIALIZED VIEW'
It's interesting to me that the Browser can those mat views IF I change the filter to be that AEO schema. So I'm thinking:
It's not a grants issue that prevents me from seeing objects in that schema,
Developer is using a different query than above.
I'm also guessing if I could copy the standard browser folder object for Materialized View and then add the schema qualifier it should work. But I don't know if I can do that?