214k views
2 votes
The following data structure and constraints exist for a magazine publishing company:

a. The company publishes one regional magazine in each of four states: Florida (FL), South Carolina (SC), Georgia (GA), and Tennessee (TN).
b. The company has 300,000 customers (subscribers) distributed throughout the four states.
c. On the first day of each month, an annual subscription INVOICE is printed and sent to each customer whose subscription is due for renewal. The INVOICE entity contains a REGION attribute to indicate the customer's state of residence (FL, SC, GA, TN):

CUSTOMER (CUS_NUM, CUS_NAME, CUS_ADDRESS, CUS_CITY, CUS_ZIP, CUS_SUBSDATE)
INVOICE (INV_NUM, INV_REGION, CUS_NUM, INV_DATE, INV_TOTAL)

The company is aware of the problems associated with centralized management and has decided to decentralize management of the subscriptions into the company's four regional subsidiaries. Each subscription site will handle its own customer and invoice data. The management at company headquarters, however, will have access to customer and invoice data to generate annual reports and to issue ad hoc queries such as:

• Listing all current customers by region
• Listing all new customers by region
• Reporting all invoices by customer and by region

Given these requirements, how must you partition the database?

User Kowsalya
by
5.5k points

1 Answer

3 votes

The answer & explanation for this question is given in the attachment below.

The following data structure and constraints exist for a magazine publishing company-example-1
User Stephen Hynes
by
5.4k points