please see the following link this might help
http://www.psoug.org/refer
Main Topics
Browse All TopicsI created 3 materialized views that are not complex and do not have any depencies. I created log tables on all of the views. However, when I execute the refresh command on 2 of the mv I get the following error:
ERROR at line 1:
ORA-12004: REFRESH FAST cannot be used for materialized view
"TEMS_ADM_ORIG"."SINGLE_PA
ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2251
ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2457
ORA-06512: at "SYS.DBMS_SNAPSHOT", line 2426
ORA-06512: at line 1
There is no errors when I create the mv and their associated log table. I have been trying to refresh the views as the owner of the views.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
please see the following link this might help
http://www.psoug.org/refer
ORA-12004: REFRESH FAST cannot be used for materialized view "string"."string"
Cause: The materialized view log does not exist or cannot be used. PCT refresh is also not enabled on the materialized view
Action: Use just REFRESH, which will reinstantiate the entire table. If a materialized view log exists and the form of the materialized view allows the use of a materialized view log or PCT refresh is possible after a given set of changes, REFRESH FAST will be available starting the next time the materialized view is refreshed.
It seems that there are no MV LOGs in your definition.
The ID field is the primary key in the master table and I did not have it in the list of fields for the materialized views. When I created the materialized view log I have the with primary key clause. So not having the PK in the mv caused the error. It allowed me to create the mv but it wouldn't allow me to refresh it.
Business Accounts
Answer for Membership
by: HainKurtPosted on 2009-08-28 at 13:27:00ID: 25211302
what command are you using to refresh them?