|
-
That's very little data, you shouldn't be experiencing such an ordeal.
Just to see if we can lure Oracle to do something different please try altering a little your session environment by adding commands below before your CREATE MATERIALIZED VIEW command...
alter session set db_file_multiblock_read_count = 64;
alter session set sort_area_retained_size = 250331648;
alter session set sort_area_size = 250331648;
alter session set sort_direct_writes = true;
if it doesn't work, you can try to pre-build your MVIEW table.
1- Create table brands_trans_all_v with all columns you need.
2- Refurbish you mview creation script to insert into table brands_trans_all_v all the data you want to have in your MView
3- Issue a create materialized view brands_trans_all_v on prebuilt table... command
At this point you should be the happy owner of mview brands_trans_all_v
Pablo (Paul) Berzukov
Author of Understanding Database Administration available at amazon and other bookstores.
Disclaimer: Advice is provided to the best of my knowledge but no implicit or explicit warranties are provided. Since the advisor explicitly encourages testing any and all suggestions on a test non-production environment advisor should not held liable or responsible for any actions taken based on the given advice.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|