Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Document preview thumbnail
Preview 4 out of 54 pages
Exam (elaborations)

WGU D426 - Data Management Foundations – latest update

Document preview thumbnail
Preview 4 out of 54 pages

WGU D426 - Data Management Foundations – latest update

Content preview

WGU D426 - Data Management Foundations –
|\ |\ |\ |\ |\ |\




latest update
|\ |\




Data

numeric, textual, visual, or audio information that describes real-world
|\ |\ |\ |\ |\ |\ |\ |\ |\



systems.

analog

Historically, data was mostly ______________, encoded as continuous
|\ |\ |\ |\ |\ |\ |\ |\



variations on various physical media.
|\ |\ |\ |\




digital

Today, data is mostly ______________, encoded as zeros and ones on
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



electronic and magnetic media.|\ |\ |\




database

a collection of data in a structured format. In principle, can be stored on
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



paper or even clay tablets. In practice, however, modern ones are invariably
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



stored on computers.
|\ |\




database system / database management system / DBMS
|\ |\ |\ |\ |\ |\ |\




software that reads and writes data in a database. ensure data is secure,
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



internally consistent, and available at all times. These functions are
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\



challenging for large databases with many users, so data base systems are
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



complex.

database application|\




software that helps business users interact with database systems.
|\ |\ |\ |\ |\ |\ |\ |\




database administrator
|\

,- responsible for securing the database system against unauthorized users.
|\ |\ |\ |\ |\ |\ |\ |\ |\



- enforces procedures for user access and database system availability.
|\ |\ |\ |\ |\ |\ |\ |\ |\




database designer |\




determines the format of each data element and the overall database
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



structure. Must balance several priorities, including storage, response time,
|\ |\ |\ |\ |\ |\ |\ |\ |\



and support for rules that govern the data. Since these priorities often
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



conflict, database design is technically challenging.
|\ |\ |\ |\ |\




database programmer |\




develops computer programs that utilize a database.
|\ |\ |\ |\ |\ |\




database user |\




- a consumer of data in a database.
|\ |\ |\ |\ |\ |\ |\



request, update, or use stored data to generate reports or information.
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\



- usually access the database via applications but can also submit queries
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



directly to the database system.
|\ |\ |\ |\




transaction

a group of queries that must be either completed or rejected as a whole.
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



Execution of some, but not all, queries results in inconsistent or incorrect
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



data.

query processor |\




- interprets queries, creates a plan to modify the database or retrieve data,
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



and returns query results to the application.
|\ |\ |\ |\ |\ |\



- manages connections from multiple users and compiles queries into low-
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\



level instructions for the storage engine.
|\ |\ |\ |\ |\




query optimization |\




The query processor performs ______________ to ensure the most efficient
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\



instructions are executed on the data. |\ |\ |\ |\ |\




indexes

,used by the storage manager to quickly locate data.
|\ |\ |\ |\ |\ |\ |\ |\




transaction manager |\




ensures transactions are properly executed.
|\ |\ |\ |\




log

a file containing a complete record of all inserts, updates, and deletes
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



processed by the database. |\ |\ |\




relational database |\




stores data in tables, columns, and rows, similar to a spreadsheet.
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\




SQL

includes statements that read and write data, create and delete tables, and
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



administer the database system. |\ |\ |\




big data |\




The growth of the internet in the 1990s generated massive volumes of online
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



data, often with poorly structured or missing information.
|\ |\ |\ |\ |\ |\ |\ |\




NoSQL

The newer non-relational systems, for 'not only SQL', and are optimized for
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



big data. |\




Open source |\




software that anyone can inspect, copy, and modify with no licensing fee.
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\




query

a command for a database that typically inserts new data, retrieves data,
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



updates data, or deletes data from a database.
|\ |\ |\ |\ |\ |\ |\




query language |\




a computer programming language for writing database queries.
|\ |\ |\ |\ |\ |\ |\

, CRUD

The four common queries are an acronym for Create, Read, Update, and
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



Delete data. |\




SELECT

retrieves data from a table. |\ |\ |\ |\




UPDATE

modifies data in a table. |\ |\ |\ |\




CREATE TABLE |\




creates a new table by specifying the table and column names.
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\




data type |\




Each column is assigned a ______________ that indicates the format of
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



column values and can be numeric, textual, or complex.
|\ |\ |\ |\ |\ |\ |\ |\




database design |\




a specification of database objects such as tables, columns, data types, and
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\



indexes. Also refers to the process used to develop the specification.
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\




analysis

specifies database requirements without regard to a specific database system.
|\ |\ |\ |\ |\ |\ |\ |\ |\




ER diagrams
|\




depicts entities, relationships, and attributes.
|\ |\ |\ |\




logical design |\




implements database requirements in a specific database system. specifies
|\ |\ |\ |\ |\ |\ |\ |\ |\



tables, columns, and keys.
|\ |\ |\




key

a column used to identify individual rows of a table.
|\ |\ |\ |\ |\ |\ |\ |\ |\

Document information

Uploaded on
September 3, 2025
Number of pages
54
Written in
2025/2026
Type
Exam (elaborations)
Contains
Questions & answers
$23.49

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
EXAMSTUDYPLUG
4.5
(242)
Sold
380
Followers
108
Items
20757
Last sold
1 week ago


Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions