If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ANSI SQL > Materialized views

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-09-03, 08:47
sosure sosure is offline
Registered User
 
Join Date: Dec 2003
Location: U.S.
Posts: 3
Materialized views

Hi,
Can one table have two materialized views?
1. Count(*)
2. Freq of one column (select column_name, count(*) from table_name
group by column_name

And approximately how many rows table can have materialized views?

Thanks.
Reply With Quote
  #2 (permalink)  
Old 12-11-03, 17:13
joebednarz joebednarz is offline
Registered User
 
Join Date: Dec 2003
Location: Oklahoma, USA
Posts: 354
Yes, you can have more than one materialized view on a table. You can even have the different materialized views have the same query, just using different names, and it will work as well.

As to the number of rows possible using materialized view, I don't think there is a limit just because it is a materialized view. The only limits posed (I believe, correct me if I'm wrong) are that of space.... run out of space to store the table, run out of rows you can add. Remember, a materialized view has similar properties to a regular table.

Hope this helps.

JoeB
Reply With Quote
  #3 (permalink)  
Old 12-11-03, 20:22
sosure sosure is offline
Registered User
 
Join Date: Dec 2003
Location: U.S.
Posts: 3
Thank u

Thanks for the reply.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On