Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Materialized Views name
darkeagle wrote:
> Hi,
> I have a question.
> Suppose we create many materialized view as this example:
> CREATE MATERIALIZED VIEW A [ ... ]
> CREATE MATERIALIZED VIEW B [ ... ]
> CREATE MATERIALIZED VIEW C [ ... ]
> Etc
>
> Exists a procedure that obtain a list of the names of all materialized view
> presents in the db?
> For this example the procedure output will be like this:
> A, B, C
>
> Thank you.
SELECT owner, mview_name
FROM dba_mviews;
Learn your data dictionary.
Daniel Morgan Received on Wed Jul 14 2004 - 20:29:17 CDT
![]() |
![]() |