Discuss how you would maintain this as a materialized view and under what circumstances you would be able to maintain the view without having to access the underlying base tables Part and Supplier.

Assume that we also have a table for suppliers:
Supplier (supplierNo, partNo, price)
and a view SupplierParts, which contains the distinct part numbers that are supplied by at least one supplier:


CREATE VIEW SupplierParts (partNo)
AS SELECT DISTINCT partNo
FROM Supplier s, Part p
WHERE s.partNo = p.partNo;

Computer Science & Information Technology

You might also like to view...

XML stands for

(A) extreme markup language (B) excessive markup language (C) extraordinary markup language (D) extensible markup language

Computer Science & Information Technology

The ____ value of the @media rule is the bits per color of the targeted display, and optionally the minimum or maximum value.

A. monochrome B. chrome C. color D. color-index

Computer Science & Information Technology

All of the following are sections in a medical report except ____.

A. body B. heading C. reference D. conclusion

Computer Science & Information Technology

Whose initials are put in the title block?

What will be an ideal response?

Computer Science & Information Technology