A materialized view is a database object that contains the results of a query. They can by local copies of data located remotely, or can be used to create summary tables based on aggregations of a table's data. Materialized views are also known as snapshots.
22
votes
6answers
78k views
What is the difference between Views and Materialized Views in Oracle?
What is the difference between Views and Materialized Views in Oracle?
11
votes
3answers
236 views
Oracle materialized view error: code included
When I run the following code on Oracle 10g:
drop materialized view test4;
drop materialized view test3;
drop table test2;
drop table test1;
create table test1
(
x1 varchar2(1000),
constraint ...
8
votes
3answers
6k views
Is it possible to have an indexed view in MySQL?
I found a posting on the MySQL forums from 2005, but nothing more recent than that. Based on that, it's not possible. But a lot can change in 3-4 years.
What I'm looking for is a way to have an index ...
6
votes
1answer
92 views
Remove tablespace info from Materialized View DDL
Using the following SQL, the DDL for a given materialized view can be obtained.
BEGIN
DBMS_METADATA.SET_TRANSFORM_PARAM(DBMS_METADATA.SESSION_TRANSFORM, 'STORAGE', FALSE);
...
5
votes
1answer
238 views
Oracle - Materialized View still accessible during complete refresh. How does this work?
In one of our applications, we have a massive Materialized View that refreshes three times a day, and takes seven hours to refresh. (Not ideal, I know). This perplexed me, because I surely thought ...
5
votes
1answer
294 views
Materialized View Refresh On Commit
Suppose I have a table TABLE with two columns COL_1 and COL_2.
I have a materialized view that simply reads TABLE.COL_1, and is set for: REFRESH FAST ON COMMIT.
If I update TABLE.COL_2, does the ...
5
votes
1answer
446 views
Business Reporting on an OLTP Application
We have an OLTP application using Oracle Database 10g Enterprise Edition,
and plan to build a business reporting layer to meet the following needs.
Sheilding complexity of the current OLTP database ...
5
votes
1answer
556 views
Oracle query rewrite with virtual columns in the source table
I have a table, demo_fact in Oracle 11g and it has several virtual columns defined as such:
ALTER TABLE demo_fact ADD (demo_measure_from_virtual NUMBER GENERATED ALWAYS AS
(CASE WHEN ...
5
votes
2answers
348 views
Is it possible to set a primary key to a view?
Is it possible to set a primary key to a view in SQLServer 2008?
5
votes
2answers
295 views
Why use NoSQL over Materialized Views?
There has been a lot of talk recently about NoSQL.
The #1 reason why I hear people use NoSQL is because they start to de-normalize their DBMS data so much so, to increase performance, that they end ...
4
votes
1answer
42 views
Is there a way to query the changes made by a materialized view fast refresh in Oracle?
Say that you have two Oracle databases, DB_A and DB_B. There is a table named TAB1 in DB_A with a materialized view log, and a materialized view named SNAP_TAB1 in DB_B created with
CREATE SNAPSHOT ...
4
votes
6answers
2k views
Materialized View vs. Tables: What are the advantages?
It's clear to me why a materialized view is preferable over just querying a base table. What is not so clear is the advantage over just creating another table with the same data as the MV. Is the ...
4
votes
1answer
164 views
Can materialized views be used as a fast denomalized big table?
Can Oracle Materialized views be used to join multiple related tables having foreign keys to create a larger denormalized big table which is refreshed instantaneously?
On some investigations, it says ...
4
votes
1answer
742 views
How can a materialized view be created in sqlite?
I've done countless searches on materialized views and SQLite. Of what I can find there seems to be mentions in 2004 and 2006 that SQLite DOES NOT have materialized views. Followed immediately by ...
3
votes
1answer
103 views
Oracle - FAST REFRESH Materialized views with LEFT JOINS updates very slow
I have a Materialized view in Oracle that contains a LEFT JOIN which takes a very long time to update. When I update the underlying table it takes 63914.765 s to run (yes that is almost 17 hours).
I ...
3
votes
1answer
177 views
Gather statistics on materialized views as part of gather_schema_stats
We use the following to refresh statistics for all tables in a given schema:
exec dbms_stats.gather_schema_stats(ownname => 'some_schema', estimate_percent => dbms_stats.auto_sample_size, ...
3
votes
1answer
110 views
Tablespaces used to create a materialized view?
I'm trying to create a view as such:
CREATE MATERIALIZED ReasonableSizedView
TABLESPACE MyMediumTS
AS
select COUNT(something) AS allsomethings,
thetype AS thing,
status
from SomeMassiveTable
...
3
votes
1answer
130 views
Oracle materialized view question
I have a table that holds information about different events, for example
CREATE TABLE events (
id int not null primary key,
event_date date, ...
)
I realized that 90% of all queries ...
3
votes
1answer
426 views
Oracle - What happens when refreshing a 'REFRESH FORCE ON DEMAND' view with DBMS_MVIEW.REFRESH
I have the following materialized view -
CREATE MATERIALIZED VIEW TESTRESULT
ON PREBUILT TABLE WITH REDUCED PRECISION
REFRESH FORCE ON DEMAND
WITH PRIMARY KEY
AS
SELECT...
FROM...
WHERE...
This ...
3
votes
1answer
403 views
Oracle - Materialized View confusion (is Toad IDE wrong in displaying MV in Tables section?)
I'm confused about Materialized views. Either it is the Toad IDE that I am using that is confusing me, or its that I don't understand MVs enough.
I created a materialized view in Oracle by ...
3
votes
2answers
279 views
Oracle - Materialized View alter structure so slow
I have a huge materailized view that I have to adjust. It's a simple adjustment as I'm just adding an NVL function to the select statement.
I.e. Original...
Select this,
that.....
I.e. ...
3
votes
1answer
513 views
Materialized Views - Identifying the last refresh
I presently access a series of views and materialized views. The materialized are maintained by a third party who offers little information regarding the frequency and success of the materialization. ...
3
votes
1answer
844 views
Oracle: how to create a fast refresh materialized view that extracts data from XMLType?
I have a table xml_documents with two columns: a document_id column (primary key) and an xml column with some XML data, which is a schema-less XMLType. I can create a materialized view with just the ...
3
votes
1answer
228 views
Can I set up materialised views on oracle for a SQL Server table over sqllink?
I have a table in a SQL Server database that needs to be visible to an oracle database. We have tried using a normal view over sqllink, but we are not able to create an onUpdate triggers on that view.
...
3
votes
2answers
2k views
Update materialized view when urderlying tables change
I have a materialized view defined this way:
CREATE MATERIALIZED VIEW M_FOO
REFRESH COMPLETE ON COMMIT
AS
SELECT FOO_ID, BAR
FROM FOO
WHERE BAR IS NOT NULL
GROUP BY FOO_ID, BAR
/
...
3
votes
2answers
4k views
MySQL not using index with JOIN, WHERE and ORDER
We have two tables resembling a simple tag-record structure as follows (in reality it's much more complex but this is the essance of the problem):
tag (A.a) | recordId (A.b)
1 | 1
2 | ...
3
votes
3answers
2k views
Why does DBMS_MVIEW.REFRESH have an implicit commit?
I noticed recently that calling dbms_mview.refresh(...), which refreshes materialized views in Oracle, has an implicit commit.
Any ideas - other than "because it does" - why this action has an ...
3
votes
2answers
3k views
Does MySQL view always do full table scan?
I'm trying to optimize a query which uses a view in MySQL 5.1. It seems that even if I select 1 column from the view it always does a full table scan. Is that the expected behaviour?
The view is just ...
2
votes
1answer
52 views
How to maintain updates to summary tables after some sorce data is deleted
I came across materialized views, which look great:
http://en.oreilly.com/mysql2011/public/schedule/detail/17146
However there is too much "detail" data, and I'm forced to delete it at the end of ...
2
votes
2answers
67 views
Materialized View - Oracle
I have materialized view for which i want to alter its refresh time:
REFRESH FORCE START WITH SYSDATE NEXT SYSDATE +1 DISABLE QUERY REWRITE
I want to know few things in this.
What does NEXT ...
2
votes
1answer
42 views
Nested materialized views find out actions on commit?
I'd like to find out what actions (i.e. selects, inserts, updates) a database does in response to say:
insert into T (col_x, col_y, col_z) values (val_x, val_y, val_z);
T in this case is a table ...
2
votes
1answer
61 views
Oracle's materialized view: How to determine whether original tables were changed?
I've created a MV, on many tables. I don't want to auto-refresh it. I just want to know whether original tables were changed or not. What is the best way to do that?
2
votes
2answers
93 views
What's the difference between compiling and refreshing a materialized view?
We just ran into a problem where materialized views weren't refreshing, and giving a compile error. One of the senior developers says he just figured out how to fix it -- by telling toad to compile ...
2
votes
2answers
90 views
Fast refresh materialized view based on non-fast refresh view
I've found that I can have two tables and create a fast refresh on commit materialized view based on those tables joined.
What I would like to do however is to make a fast refresh on commit ...
2
votes
2answers
120 views
Oracle - Materialized View, can this MV be fast refreshable?
I have a materialized view that looks somewhat like the following and I'm wondering if there is anyway to have this materialized view 'fast' refreshable? Basically, I'm asking the following:
Can a ...
2
votes
2answers
244 views
materialized views on external database fail to refresh at specified time - SQL*Net more data from dblink
We use a web-based service that runs on Oracle. They are strict about only allowing SELECT-only ODBC access. Some of the reporting that we do isn't well accounted for by the views that the company ...
2
votes
2answers
178 views
Do Oracle materialized view records get timestamp automatically?
Do Oracle materialized view records get timestamp automatically?
2
votes
1answer
368 views
ORACLE - Materialized View LOG
I have a table with a MVIEW Log, i would like to know if its suspicious to have :
SELECT count(*) from Table
8036132 rows
and
SELECT count(*) from MLOG$_Table
81657998 rows
Im asking this ...
2
votes
1answer
177 views
SQL Server indexed view matching of views with joins not working
Does anyone have experience of when SQL Servr 2008 R2 is able to automatically match indexed view (also known as materialized views) that contain joins to a query?
for example the view
select ...
2
votes
3answers
1k views
Select distinct … inner join vs. select … where id in (…)
I'm trying to create a subset of a table (as a materialized view), defined as those records which have a matching record in another materialized view.
For example, let's say I have a Users table with ...
2
votes
3answers
1k views
How to implement Materialized View with MySQL?
How to implement Materialized Views?
If not, how can I implement Materialized View with MySQL?
Update:
Would the following work? This doesn't occur in a transaction, is that a problem?
DROP TABLE ...
2
votes
2answers
3k views
CREATE TABLE AS SELECT killing MySQL
We run a MySQL server with moderate load (200-300 QPS) on quite powerful hardware (HP DL360 with 8 Xeon cores, 8Gb RAM and RAID10). All the tables are innodb and the active dataset fits within the ...
2
votes
4answers
6k views
oracle materialized view refresh time
anyone able to tell me how often a materialized view is set to refresh with the following setting plz?
REFRESH FORCE ON DEMAND START WITH sysdate+0 NEXT (round(sysdate) + 1/24) + 1
i think i read it ...
1
vote
0answers
20 views
+50
Refreshable on commit materialized view using MAX()
I'm being hit hard by the entity-attribute-value antipattern. Some day, years ago, a guy decided that DDL wasn't sexy, and wanted to develop something "flexible enough" to keep information about ...
1
vote
1answer
34 views
Oracle refresh throws a table not found exception
Having simple refresh script:
BEGIN
DBMS_SNAPSHOT.REFRESH(
LIST => 'SCHEMA_NAME.TABLE_NAME',
PUSH_DEFERRED_RPC => TRUE,
REFRESH_AFTER_ERRORS => FALSE,
PURGE_OPTION => 1,
...
1
vote
1answer
35 views
Oracle materialized view log
If I have table T with 10 columns and create materialized view log with only 3 of them as well as materialized view with those 3, why when I updated ANY column in the table (besides those in the log) ...
1
vote
2answers
55 views
Why does a ORA-12054 error occur when creating this simple materialized view example?
ALTER TABLE RECORDINGS ADD PRIMARY KEY (ID);
CREATE MATERIALIZED VIEW LOG ON RECORDINGS TABLESPACE USERS NOLOGGING;
DROP MATERIALIZED VIEW REC_SEARCH_TEST;
CREATE MATERIALIZED VIEW REC_SEARCH_TEST
...
1
vote
1answer
33 views
Refreshing Materialzed View in Oracle
I have created materialized view (MV) on a table which is updated once in a month..
Do we have any automatic way to refresh my MV...
I mean how refresh of MV is done is it manual or
Automatic how ...
1
vote
1answer
97 views
Alternatives to Unions in SQL Server
I have a number of schema bound views that I'd like to add indexes to for performance purposes.
The problem is that they have multiple union alls in them.
I'm looking for some general refactoring ...
1
vote
2answers
65 views
Does a “union all” materialized view take space?
Does a refresh fast on commit union all materialized view (in Oracle) copy all the underlying data, or does it just have a reference to it?
If this materialized view does copy all the data is there ...