edited by
4,200 views

2 Answers

Best answer
7 votes
7 votes

A database's logical schema is its overall logical plan. This schema is developed with diagrams that define the content of database tables and describe how the tables are linked together for data access.
 

During the first part of Logical Design, a conceptual model is created based on the needs assessment performed in stage one. A conceptual model is typically an Entity -Relation( ER)diagram that shows the tables, fields, and primary keys of the database, and how tables are related (linked) to one another. 

The tables sketched in the ER diagram are then normalized. The normalization process resolves any problems associated with the database design, so that data can be accessed quickly and efficiently.

Hence,Option(D)All of the above.

Reference:http://www.relationaldbdesign.com/relational-database-design/module3/schema-architecture.php

selected by
Answer:

Related questions

5 votes
5 votes
1 answer
1
38 votes
38 votes
1 answer
3
Kathleen asked Sep 23, 2014
16,923 views
Consider the join of a relation $R$ with a relation $S$. If $R$ has $m$ tuples and $S$ has $n$ tuples then the maximum and minimum sizes of the join respectively are$m+n$...