During the systems analysis phase, you must decide how data will be organized, stored, and managed. A (问题1) is a framework for organizing, storing, and managing data. Each file or table contains data about people, places, things, or events. One of the potential problems existing in a file processing environment is (问题2) , which means that data common to two or more information systems is stored in several places.
In a DBMS,the linked tables form a unified data structure that greatly improves data quality and access. A(n) (问题3) is a model that shows the logical relationships and interaction among system entities . It provides an overall view of the system and a blueprint for creating the physical data structures. (问题4) is the process of creating table designs by assigning specific fields or attributes to each table in the database. A table design specifies the fields and identifies the primary key in a particular table or file. The three normal forms constitute a progression in which (问题5) represents the best design. Most business-related databases must be designed in that form.
问题 1
A. data entity:指数据对象或数据项,不是用于组织和管理数据的整体框架,错误。
B. data structure:是组织、存储和管理数据的框架,正确。
C. file collection:只是文件集合,没有描述内部逻辑组织方式,错误。
D. data definition:描述数据的格式和含义,不是整体框架,错误。
所以选择 B。
问题 2
A. data integrity:数据完整性,强调数据的正确性与一致性,不是多处存储问题,错误。
B. the rigid data structure:指僵化的数据结构,与多处存储无关,错误。
C. data redundancy:数据冗余,指相同数据在多个地方重复存储,正确。
D. the many-to-many relationship:是数据库关系类型,与存储冗余无直接关系,错误。
所以选择 C。
问题 3
A. entity-relationship diagram:实体联系图,表示系统实体及其逻辑关系和交互,符合题意,正确。
B. data dictionary:数据字典,用于记录数据定义和元数据,不是系统关系模型,错误。
C. database schema:数据库模式,描述数据库逻辑结构,但不以图形方式展示关系,错误。
D. physical database model:物理数据库模型,侧重存储实现,不是逻辑关系图,错误。
所以选择 A。
问题 4
A. Normalization:规范化,是设计表结构、分配字段并确定主键的过程,正确。
B. Replication:数据复制,与表结构设计无关,错误。
C. Partitioning:数据分区,用于性能优化,不是规范化过程,错误。
D. Optimization:泛指优化,不特指数据库表设计过程,错误。
所以选择 A。
问题 5
A. standard notation form:无此数据库范式概念,错误。
B. first normal form:消除非原子字段,是初级范式,不是最佳设计,错误。
C. second normal form:消除部分依赖,优于1NF但不是最优,错误。
D. third normal form:消除传递依赖,通常代表业务数据库的最佳设计,正确。
所以选择 D。
