create a Materialized View without having any data in it (merged) [message #357421] |
Wed, 05 November 2008 05:16 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
intel_neeraj@hotmail.com
Messages: 1 Registered: November 2008
|
Junior Member |
|
|
Can anybody let me know how I can create a Materialized View without having any data in it.
For e.g I create a Materialialized View based on a View.
CREATE MATERIALIZED VIEW test_mv
REFRESH FORCE ON DEMAND
AS
SELECT * FROM test_view
In the above case the data fetched by the view test_view gets stored in the Materialized View test_mv.
Suppose I want materialized view test_mv to get created with all the columns of test_view but not the data.
I will refresh the materialized view test_mv later for data as and when required.
What shall I do for immidiate formation of materialized view test_mv without data.
|
|
|
|
|
|
|