Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Cơ sở dữ liệu
Lecture Database concepts (3rd Edition): Chapter 5 - David M. Kroenke, David J. Auer
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Database concepts (3rd Edition): Chapter 5 - David M. Kroenke, David J. Auer
An Di
115
40
ppt
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Learning objectives of this chapter include: Learn how to transform E-R data models into relational designs; practice the normalization process from chapter 2; understand the need for denormalization, learn how to represent weak entities with the relational model; know how to represent 1:1, 1:N, and N:M binary relationships. | Database Design Chapter Five DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3rd Edition Chapter Objectives Learn how to transform E-R data models into relational designs Practice the normalization process from Chapter 2 Understand the need for denormalization Learn how to represent weak entities with the relational model Know how to represent 1:1, 1:N, and N:M binary relationships 5- Chapter Objectives (continued) Know how to represent 1:1, 1:N, and N:M recursive relationships Learn SQL statements for creating joins over binary and recursive relationships Understand the nature and background of normalization 5- Transforming a Data Model into a Relational Design 5- Representing Entities with the Relational Model Create a relation for each entity A relation has a descriptive name and a set of attributes that describe the entity Specify a primary key Specify column properties Data type Null status Default values (if any) Data constraints (if any) The relation is then analyzed using the normalization rules As normalization issues arise, the initial relation design may need to change 5- Representing an Entity as a Table ITEM (ItemNumber, Description, Cost, ListPrice, QuantityOnHand) 5- Normalization Review: Modification Problems Tables that are not normalized will experience issues known as modification problems Insertion problems Difficulties inserting data into a relation Modification problems Difficulties modifying data into a relation Deletion problems Difficulties deleting data from a relation 5- Normalization Review: Solving Modification Problems Most modification problems are solved by breaking an existing table into two or more tables through a process known as normalization 5- Normalization Review: Definition Review Functional dependency The relationship (within the relation) that describes how the value of a one attribute may be used to find the value of another attribute Determinant The attribute that can be used to find the | Database Design Chapter Five DAVID M. KROENKE and DAVID J. AUER DATABASE CONCEPTS, 3rd Edition Chapter Objectives Learn how to transform E-R data models into relational designs Practice the normalization process from Chapter 2 Understand the need for denormalization Learn how to represent weak entities with the relational model Know how to represent 1:1, 1:N, and N:M binary relationships 5- Chapter Objectives (continued) Know how to represent 1:1, 1:N, and N:M recursive relationships Learn SQL statements for creating joins over binary and recursive relationships Understand the nature and background of normalization 5- Transforming a Data Model into a Relational Design 5- Representing Entities with the Relational Model Create a relation for each entity A relation has a descriptive name and a set of attributes that describe the entity Specify a primary key Specify column properties Data type Null status Default values (if any) Data constraints (if any) The relation is then .
TÀI LIỆU LIÊN QUAN
Lecture Database concepts (3rd Edition): Chapter 6 - David M. Kroenke, David J. Auer
Lecture Database concepts (3rd Edition): Chapter 7 - David M. Kroenke, David J. Auer
Lecture Database concepts (3rd Edition): Chapter 1 - David M. Kroenke, David J. Auer
Lecture Database concepts (3rd Edition): Chapter 2 - David M. Kroenke, David J. Auer
Lecture Database concepts (3rd Edition): Chapter 3 - David M. Kroenke, David J. Auer
Lecture Database concepts (3rd Edition): Chapter 4 - David M. Kroenke, David J. Auer
Lecture Database concepts (3rd Edition): Chapter 5 - David M. Kroenke, David J. Auer
Lecture Accounting information systems: Basic concepts and current issues (3rd edition): Chapter 7 - Robert L. Hurt
Lecture Accounting information systems: Basic concepts and current issues (3rd edition): Chapter 8 - Robert L. Hurt
Lecture Accounting information systems: Basic concepts and current issues (3rd edition): Chapter 7 - Robert L. Hurt
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.