100% de satisfacción garantizada Inmediatamente disponible después del pago Tanto en línea como en PDF No estas atado a nada 4,6 TrustPilot
logo-home
Examen

Data management Foundations Exam Questions and Answers Latest Update 2025

Puntuación
-
Vendido
-
Páginas
5
Grado
A+
Subido en
02-01-2025
Escrito en
2024/2025

Data management Foundations Exam Questions and Answers Latest Update 2025 Equijoin - Answers Compares columns of two tables with the = operator. non-equijoin - Answers compares columns with an operator other than =, such as <, > Self Join - Answers Joins a table to itself Cross Join - Answers Combines two tables without comparing columns. INNER JOIN - Answers selects only matching left and right table rows. FULL JOIN - Answers selects all left and right table rows, regardless of match LEFT JOIN - Answers selects all left table rows, but only matching right table rows. RIGHT JOIN - Answers selects all right table rows, but only matching left table rows. OUTTER JOIN - Answers Finds Missing, unmatched rows - will contain NULL First Normal Form (1NF) - Answers The first stage in the normalization process. It describes a relation depicted in tabular format, with no repeating groups and a primary key identified. All nonkey attributes in the relation are dependent on the primary key. Second Normal Form (2NF) - Answers The second stage in the normalization process, in which a relation is in 1NF and there are no partial dependencies (dependencies in only part of the primary key). Third Normal Form (3NF) - Answers A table is in 3NF when it is in 2NF and no nonkey attribute is functionally dependent on another nonkey attribute; that is, it cannot include transitive dependencies. Boyce-Codd Normal Form (BCNF) - Answers A special type of third normal form (3NF) in which every determinant is a candidate key. A table in BCNF must be in 3NF. See also determinant. Fourth Normal Form (4NF) - Answers A table that is in 3NF and contains no multiple independent sets of multivalued dependencies. Fifth Normal Form (5NF) - Answers A normal form necessary to eliminate an anomaly where a table can be split apart but not correctly joined back together. Also known as Project-Join Normal Form (PJ/NF). DDL (Data Definition Language) - Answers A part of SQL that is used to create and modify objects of a database such as tables, views, functions and stored procedures DQL (Data Query Language) - Answers Retrieves data from the database. DCL (Data Control Language) - Answers Commands that control a database, including administering privileges and committing data DTL (Data Transaction Language) - Answers manages database transactions DML (Data Manipulation Language) - Answers A part of SQL that is used query, insert, update and remove data from a database Candidate Key - Answers Describes the unique columns in a table that do not contain a primary key Composite Key - Answers A primary key that consists of more than one attribute. Denoted by parentheses Foreign Key - Answers A primary key from one table that is used in another table. (Many to many relationship) Primary Key - Answers a field that uniquely identifies a record in a table Hash Index - Answers index entries are assigned to buckets Logical Index - Answers A single- or multi-level index in which pointers to table blocks are replaced with primary key values. Bitmap Index - Answers A grid of bits Function Index - Answers The database designer specifies a function on the column value. Index entries contain the result of the function applied to column values, rather than the column values. Trivial dependency - Answers When the columns of A are a subset of the columns of B, A always depends on B. Non-Trivial Dependency - Answers Boyce-Codd Normal Form. Whenever column A depends on column B, then column B is unique CHECK Constraint - Answers specifies an expression on one or more columns of a table UNIQUE Constraint - Answers Ensures that all values in a column are different (unique) Table Constraint - Answers A table constraint appears in a separate clause of a CREATE TABLE statement and governs values in one or more columns. Column Constraint - Answers Governs values in a single column. Materialized View - Answers a view for which data is stored at all times Aggregate Functions - Answers perform arithmetic operations on selected records in a database: Count() Min() Max() Sum() Avg() TRUNCATE statement - Answers Deletes all rows from a temporary table relational database model - Answers stores information in the form of logically related two-dimensional tables Database Design Phases - Answers Analysis Logical design Physical design Analysis Phase - Answers specifies database requirements without regard to a specific database system Logical Design Phase - Answers implements database requirements in a specific database system key - Answers a column or group of columns that identifies a unique row in a table Physical Design Phase - Answers adds indexes and specifies how tables are organized on storage media entity - Answers A person, place, thing, transaction, or event about which information is stored relationship - Answers link between entities attribute - Answers A descriptive property of an entity. API (Application Programming Interface) - Answers a collection of commands made available to a programmer MySQL - Answers Relational Database Management System MySQL Community / MySQL Server - Answers A free edition of MySQL.

Mostrar más Leer menos
Institución
Data Management Foundations
Grado
Data management Foundations









Ups! No podemos cargar tu documento ahora. Inténtalo de nuevo o contacta con soporte.

Escuela, estudio y materia

Institución
Data management Foundations
Grado
Data management Foundations

Información del documento

Subido en
2 de enero de 2025
Número de páginas
5
Escrito en
2024/2025
Tipo
Examen
Contiene
Preguntas y respuestas

Temas

Vista previa del contenido

Data management Foundations Exam Questions and Answers Latest Update 2025

Equijoin - Answers Compares columns of two tables with the = operator.

non-equijoin - Answers compares columns with an operator other than =, such as <, >

Self Join - Answers Joins a table to itself

Cross Join - Answers Combines two tables without comparing columns.

INNER JOIN - Answers selects only matching left and right table rows.

FULL JOIN - Answers selects all left and right table rows, regardless of match

LEFT JOIN - Answers selects all left table rows, but only matching right table rows.

RIGHT JOIN - Answers selects all right table rows, but only matching left table rows.

OUTTER JOIN - Answers Finds Missing, unmatched rows - will contain NULL

First Normal Form (1NF) - Answers The first stage in the normalization process. It describes a relation
depicted in tabular format, with no repeating groups and a primary key identified. All nonkey attributes
in the relation are dependent on the primary key.

Second Normal Form (2NF) - Answers The second stage in the normalization process, in which a relation
is in 1NF and there are no partial dependencies (dependencies in only part of the primary key).

Third Normal Form (3NF) - Answers A table is in 3NF when it is in 2NF and no nonkey attribute is
functionally dependent on another nonkey attribute; that is, it cannot include transitive dependencies.

Boyce-Codd Normal Form (BCNF) - Answers A special type of third normal form (3NF) in which every
determinant is a candidate key. A table in BCNF must be in 3NF. See also determinant.

Fourth Normal Form (4NF) - Answers A table that is in 3NF and contains no multiple independent sets of
multivalued dependencies.

Fifth Normal Form (5NF) - Answers A normal form necessary to eliminate an anomaly where a table can
be split apart but not correctly joined back together.

Also known as Project-Join Normal Form (PJ/NF).

DDL (Data Definition Language) - Answers A part of SQL that is used to create and modify objects of a
database such as tables, views, functions and stored procedures

DQL (Data Query Language) - Answers Retrieves data from the database.

DCL (Data Control Language) - Answers Commands that control a database, including administering
privileges and committing data

, DTL (Data Transaction Language) - Answers manages database transactions

DML (Data Manipulation Language) - Answers A part of SQL that is used query, insert, update and
remove data from a database

Candidate Key - Answers Describes the unique columns in a table that do not contain a primary key

Composite Key - Answers A primary key that consists of more than one attribute. Denoted by
parentheses

Foreign Key - Answers A primary key from one table that is used in another table. (Many to many
relationship)

Primary Key - Answers a field that uniquely identifies a record in a table

Hash Index - Answers index entries are assigned to buckets

Logical Index - Answers A single- or multi-level index in which pointers to table blocks are replaced with
primary key values.

Bitmap Index - Answers A grid of bits

Function Index - Answers The database designer specifies a function on the column value. Index entries
contain the result of the function applied to column values, rather than the column values.

Trivial dependency - Answers When the columns of A are a subset of the columns of B, A always
depends on B.

Non-Trivial Dependency - Answers Boyce-Codd Normal Form. Whenever column A depends on column
B, then column B is unique

CHECK Constraint - Answers specifies an expression on one or more columns of a table

UNIQUE Constraint - Answers Ensures that all values in a column are different (unique)

Table Constraint - Answers A table constraint appears in a separate clause of a CREATE TABLE statement
and governs values in one or more columns.

Column Constraint - Answers Governs values in a single column.

Materialized View - Answers a view for which data is stored at all times

Aggregate Functions - Answers perform arithmetic operations on selected records in a database:



Count()

Min()
$8.99
Accede al documento completo:

100% de satisfacción garantizada
Inmediatamente disponible después del pago
Tanto en línea como en PDF
No estas atado a nada

Conoce al vendedor

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
TutorJosh Chamberlain College Of Nursing
Seguir Necesitas iniciar sesión para seguir a otros usuarios o asignaturas
Vendido
361
Miembro desde
1 año
Número de seguidores
16
Documentos
29352
Última venta
17 horas hace
Tutor Joshua

Here You will find all Documents and Package Deals Offered By Tutor Joshua.

3.6

56 reseñas

5
19
4
15
3
12
2
0
1
10

Recientemente visto por ti

Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes