A materialized view is a database object that contains the results of a query. They can be 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.
-9
votes
0answers
45 views
Refresh group not working in materialized view [closed]
Refresh group does not update materialized view. My question is that do I have to have materialized view group to use refresh group. Do I have to include any file to use refresh group?
Secondly how ...
1
vote
0answers
21 views
What to use: Change Data Capture or Materialized View?
Objective: I want to replicate table from one oracle DB to another asynchronously.
Please advice, which one of the two, Change Data Capture or Materialized View , is better option with benefit ...
0
votes
1answer
44 views
Update materialized view in oracle 11g
I want to update materialized view every 5 min such that it does a delta update not a full update. Can i use last modified date, and just update data that has been updated? my question is:
1) how to ...
0
votes
2answers
46 views
Oracle materialized view computational cost
Is the computational cost of updating a stored procedure materialized view, in Oracle, based on the query execution or the result set? More specifically, does Oracle store the results of the query in ...
2
votes
1answer
112 views
Table replication (materialized view) Oracle
I'm trying to configurate table replication, which is located on remote database (db) using materialized view (mw) and database link (dblink).
There is the point:
I'm creating table on the 1st db ...
-2
votes
2answers
63 views
java web security [closed]
Let me explain the problem. So, there is a data base which is pivotal for many app and I need to keep it safe. Also, I do not want to access that data base directly. I think of using materialized ...
3
votes
0answers
85 views
Change materialized view to on commit
I have a materialized view I would like to alter to on commit (from on demand) using fast refresh.
However I constantly get
ora-32337 cannot alter materialized view with pending changes refresh on ...
0
votes
2answers
406 views
materialized view creation is fast but refresh takes hours
I am using a materialized view, and I cant set it to fast refresh because some of the tables are from remote database which does not have materialized view log.
When I create the materialized view, ...
0
votes
1answer
121 views
TOAD-Modify Materialized View Select Query without dropping
Is there any way I can edit the MVIEW query without dropping it in TOAD.I am not sure if we can do it?If not how Can I do it in a way that does not affect the table contents?
Thanks in advance
2
votes
2answers
162 views
Comparing Date column to sysdate yields: a non-numeric character was found where a numeric was expected
I've been having a strange issue where the comparison of a date column to SYSDATE yields the following error:
01858. 00000 - "a non-numeric character was found where a numeric was expected"
*Cause: ...
0
votes
2answers
178 views
Query performance on materialized view vs master tables
I am afraid of strange behavior in db, on my master tables UDBMOVEMENT_ORIG (26mil.rows) and UDBIDENTDATA_ORIG (18mil.rows) is created materialized view TMP_MS_UDB_MV (UDBMOVEMENT is synonym to this ...
0
votes
0answers
72 views
Feasibility of Updateable Materialized views for many remote users
My question is about the feasibility of using Materialized Views to replicate data to about 10 separate remote laptops with users that just expect it to work.
I know this will work from a Technical ...
1
vote
2answers
112 views
Orcle Script -Materialized View & synonym
I've a question about script in Oracle!
I'have a materialized view on a prebuilt table, in my BBDD,
(this MV is of the user DAT_OWN, other 2 user (APP & BO) have synonym on this MV)
I have to ...
1
vote
1answer
126 views
How to determine whether a table is used to store materialized view logs?
I have table with created on her materialized view log:
create table T1(A number primary key);
create materialized view log on T1 with primary key;
Oracle created two tables for materialized view ...
0
votes
1answer
91 views
how to get the refresh job id by mview name?
I'm using something like
SELECT JOB FROM DBA_JOBS WHERE WHAT LIKE '%NAME_OF_MVIEW%'
to get the id of refresh job which refreshes the materialized view by the name of mv.
(the content of 'WHAT' is ...
0
votes
1answer
134 views
Oracle Materialized View: update MVs in the remote db?
I created a fast refresh MV in a remote db by using a syntax like follows:
CREATE MATERIALIZED VIEW MV_TAB1
REFRESH FAST WITH PRIMARY KEY
START WITH SYSDATE NEXT SYSDATE+(5/1440) /* 5 MINUTES */
...
0
votes
1answer
140 views
Unity 3d - Material Selection for Rendering
I am trying to change the Material of wall at run time. I import the model of house from Google Sketchup, which has different materials all in one object (this is shown in the inspector). Whenever I ...
3
votes
1answer
638 views
Create new materialized view without the materialized view log being purged
I'd like to use materialized view on prebuilt table to keep a table in sync before a migration. The data is changing constantly, so the changes between export start and import finish need to be ...
0
votes
0answers
52 views
Deleting From Updatable Materialized Views Violating Master Site's Constraints
I have 2 database sites, A and B. B has updatable materialized views of A's emp table, using Oracle Advanced Replication.
Other tables in A refrences emp's primary key.
The refresh was working ...
0
votes
1answer
109 views
Truncate oracle mview without affecting queries
I have a couple of MVs in an Oracle 11g database which full-refresh swiftly when not atomic.
A new requirement means that they must be.
I understand that when not-atomic DBMS_MVIEW.REFRESH performs a ...
2
votes
1answer
258 views
Difference between steams and materialized views oracle
What are the differences between streams and materialized views for the data replication with oracle?
What are the advantages and disadvantages of these solutions?
thx!
2
votes
0answers
44 views
Query too complex for a simple join [duplicate]
Possible Duplicate:
Oracle - How to create a materialized view with FAST REFRESH and JOINS
I have one mv UTIL_MONTH and table MET_MONTH both table have 1 million rows per month. I am ...
2
votes
1answer
92 views
How to create a hierarchical query as a materilized view with refresh on commit in oracle
Could anyone please tell me if there is a possibility to create a hierarchical query in oracle 10g as a materialized view with REFRESH ON COMMIT?
I tried using CONNECT_BY but this doesn't work with ...
0
votes
1answer
115 views
Quering Oracle materialized view - column ambiguously defined
I have a trouble querying view in Oracle.
Here is the view (my_cool_view) definition:
SELECT *
FROM mview1 JOIN
mview2 USING(col_id)
where mview1 and mview2 is materialized views. ...
3
votes
1answer
128 views
PostgreSQL efficiency of count query, materialized views [duplicate]
Possible Duplicate:
Optimization of count query for PostgreSQL
Using PostgreSQL 9.2, we are trying to figure out if there is a way to keep track of the number of results for a query, and ...
1
vote
2answers
894 views
How to refresh materialized view using trigger?
create or replace TRIGGER REFRESH_REST_VIEW
AFTER
INSERT OR UPDATE
ON tbl_contract
BEGIN
execute DBMS_MVIEW.REFRESH('REST_VIEW');
END REFRESH_REST_VIEW;
commit;
This is my sql trigger i am ...
0
votes
2answers
469 views
PL/pgSQL CREATE or REPLACE within EXECUTE
I have the following script to dynamically create views into a PostgreSQL database.
CREATE OR REPLACE FUNCTION cs_refresh_mviews() RETURNS integer AS $$
DECLARE
mviews RECORD;
query text;
...
1
vote
1answer
157 views
Life cycle of an Oracle Materialized view
I am looking for the life cycle of an Oracle materialized view. For example the statement:
Create materialized view foo
Refresh On Commit
...
Will this view be updated every time there is a ...
0
votes
1answer
582 views
Oracle 11g Replication - Using refresh on commit with remote database (database links)
Good afternoon,
I have 3 databases; the SIDs are config, prod1 and prod2.
I am using Materialized Views to replicate data on 11 tables in the config database onto the other two databases. The ...
1
vote
2answers
2k views
How to grant rights to materialized view in Oracle11g
I'm very new to oracle and trying to grant rights to some materialized views I created.
What I've done (all from sqlplus command line):
sqlplus "/ as sysdba
>create tablespace ...
0
votes
1answer
182 views
Checking snapshots out of refresh groups in Oracle
I have an Oracle Database with a schema A, which has select privilege on DBA_* views.
I also have an schema B that doesn't have these privilege, but it has a lot of materialized views.
In schema A, ...
0
votes
1answer
211 views
Refresh in Materialized Views
I have been trying to understand Materialized Views concept from a long time but was unable to get the exact functioning of it except that it is a physical table(replica) for the tables in different ...
1
vote
2answers
13k views
How to refresh materialized view in oracle
Iam trying to refresh the materialized view by using:
DBMS_MVIEW.REFRESH('v_materialized_foo_tbl')
But it's throwing invalid sql statement.
Then I have created a stored procedure like this:
...
0
votes
2answers
831 views
Automatically refreshing Materialized view at Irregular time intervals
I need to automatically refresh a Materialized view at irregular intervals, like 0800hrs, 1200hrs 1800hrs and 2200hrs. I am only able to get as far as scheduling the refresh at regular intervals, like ...
0
votes
1answer
142 views
RefrMaterialized View
I'm trying to get my materialized view to automatically refresh daily at 8:00 AM in the morning. I have written the below code but am not getting desired output:
CREATE MATERIALIZED VIEW empl_M_V
...
1
vote
1answer
684 views
getting Oracle materialized view to refresh
I've traced a bug in my JEE application to the Oracle database: there is a materialized view which is not refreshing correctly. If I do a query against the MV, it gives me foreign keys which are bad ...
1
vote
1answer
592 views
Create materialized view with non-atomic refresh?
According to documents, non-atomic refresh of a materialized view uses truncate instead of delete in complete refresh. Is there any way to say oracle to use truncate instead of delete when creating a ...
1
vote
1answer
530 views
How to list indexes on materialized views (Oracle)
Am I correct to think that listing indexes for materialized views is the same as listing indexes for tables? In other words:
select *
from ALL_IND_COLUMNS
where TABLE_OWNER='SOME_OWNER'
and ...
0
votes
1answer
135 views
Can't see Materialized Views from a Linked Server in SQL Server
I have an SQL Server 2008 Express Edition and added an Oracle DB as a linked server with the OraOLEDB.Oracle provider. The connection works but I can only see the views from the Oracle server, no ...
2
votes
1answer
751 views
ORA-01722: invalid number when creating materialized view
I am creating a view and the same view converted into materialized view in the same system. But doing the same thing in another system I got error ORA-01722: invalid number when creating the ...
0
votes
1answer
744 views
Oracle materialized views or aggregated tables in datawarehouse
Is the materialized views of oracle(11g) are good practice for aggregated tables in Data warehousing?
We have DW processes that replace 2 month of data each day. Some time it means few Gigs for each ...
2
votes
2answers
266 views
Is PCT (Partition Change Tracking) possible for list-range partitioned tables?
I've created list-range partitioned table:
CREATE TABLE WHREST_PRT(
RCNUM NUMBER NOT NULL,
WHNUM NUMBER NOT NULL,
WARE VARCHAR2(10 CHAR) NOT NULL,
DATEM DATE ...
0
votes
1answer
85 views
When are imidiate materialized views updated
I use SQL Anywhere 11.
I have the following view:
CREATE MATERIALIZED VIEW "DBA"."PointsAcc"( /* view_column_name, ... */ )
IN "SYSTEM" AS
select sum(PL.Points) AS Sum, DP.UserUID, COUNT(*) AS cnt
...
2
votes
2answers
262 views
PostgreSQL script execution every night
I am trying to mimic snapshot materialized view based on this article on valena.com and have created the materialized views that I need.
My next task is to execute the refresh materialized view ...
4
votes
1answer
1k views
Materialized Views: how can I find the number of updates, inserts, and deletes applied during refresh?
I have a data mart mastered from our OLTP Oracle database using basic Materialized Views with on demand fast refresh capability. Refresh is working fine. What I am interested in adding are some ...
1
vote
2answers
519 views
Using public synonyms inside oracle materialized views
Is it possible to have public synonims inside materialized view query?
1
vote
2answers
359 views
Create materialized view much slower than create table
I've got a query that I'd like to use to back a materialized view.
When I use this syntax to create a regular table from the view, it executes very quickly (5 seconds):
create table my_table as ...
0
votes
1answer
39 views
Query only the required mview from the union
I have materialized view manually partitioned by month
create materialized view MV_MVNAME_201001 as
select MONTH_ID, AMOUNT, NAME
from TABLE_NAME_201001
201002, 201003, ..., 201112, 2012, 2009
Now ...
1
vote
1answer
195 views
Does it make sense to create materialized view for table that updates few times in second?
I have a big table and view bulds with complex query. The main problem that retrieving data from view is slow (6 rows for 2 sec).
I have heard that materialised view is super fast. But my table is ...
4
votes
1answer
103 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 ...