Data And Business Intelligence Flashcards

1
Q

Database

A

Collection of related data that is stored in a central location or in multiple locations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

data hierarchy

A

A data hierarchy is the structure and organization of data, which involves fields, records, and files.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

database management system (DBMS)

A

A database management system (DBMS) is software for creating, storing, maintaining, and accessing database files. A DBMS makes using databases more efficient.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

sequential access file structure

A

In a sequential access file structure, records in files are organized and processed in numerical or sequential order, typically the order in which they were entered.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

random access file structure

A

In a random access file structure, records can be accessed in any order, regardless of their physical locations in storage media. This method of access is fast and very effective when a small number of records needs to be processed daily or weekly.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

indexed sequential access method (ISAM)

A

With the indexed sequential access method (ISAM), records can be accessed sequentially or randomly, depending on the number being accessed. For a small number, random access is used, and for a large number, sequential access is used.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

physical view

A

The physical view involves how data is stored on and retrieved from storage media, such as hard disks or magnetic tapes.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

logical view

A

The logical view involves how information appears to users and how it can be organized and retrieved.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

data model

A

A data model determines how data is created, represented, organized, and maintained. It usually contains a data structure, operations, and integrity rules

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

hierarchical model

A

In a hierarchical model, the relationships between records form a treelike structure (hierarchy). Records are called nodes, and relationships between records are called branches. The node at the top is called the root, and every other node (called a child) has a parent. Nodes with the same parents are called twins or siblings.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

network model

A

The network model is similar to the hierarchical model, but records are organized differently. Unlike the hierarchical model, each record in the network model can have multiple parent and child records.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

relational model

A

A relational model uses a two-dimensional table of rows and columns of data. Rows are records (also called tuples), and columns are fields (also referred to as attributes).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

data dictionary

A

The data dictionary stores definitions, such as data types for fields, default values, and validation rules for data in each field.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

primary key

A

A primary key uniquely identifies every record in a relational database. Examples include student ID numbers, account numbers, Social Security numbers, and invoice numbers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

foreign key

A

A foreign key is a field in a relational table that matches the primary key column of another table. It can be used to cross-reference tables.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

normalization

A

improves database efficiency by eliminating redundant data and ensuring that only related data is stored in a table.

17
Q

Structured Query Language (SQL)

A

is a standard fourth-generation query language used by many DBMS packages, such as Oracle Database 12 and Microsoft SQL Server. SQL consists of several keywords that specify actions to take.

18
Q

create, read, update, and delete (CRUD)

A

refers to a range of functions and the users who data administrators determine have permission to perform those functions.

19
Q

database administrator (DBA)

A

in large organizations design and set up databases, establish security measures, develop recovery procedures, evaluate database performance, and add and fine-tune database functions.

20
Q

graph database

A

A graph database is a database that uses graph structures for query operation with nodes, edges, and properties to represent and store data.

21
Q

data-driven Web site

A

A data-driven Web site acts as an interface to a database, retrieving data for users and allowing users to enter data in the database.

22
Q

DBMS software components

A

Database engine, data definition, data manipulation, application generation, data administration

23
Q

Database engine

A

Responsible for data storage, manipulation and retrieval

24
Q

Data definition

A

Create and maintains the data dictionary

25
Q

Data manipulation

A

Used to add, delete, modify and retrieve records (ex SQL)

26
Q

Application generation

A

Used to create design elements of an app

27
Q

Data administration

A

Used for backup, recovery, security, and change management. Used to determine CRUD

28
Q

Distributed databases

A

Stores data on multiple servers throughout an organization. Advantages: better reflects firm structure, local data storage reduces response time, minimizes effects of computer failure

29
Q

Approaches to setting up a DDBMS: fragmentation, replication, allocation

A

1: how tables are divided among multiple locations; 2. Each site stores a copy of the data; 3. Combines the former two.

30
Q

Object oriented databases

A

Data & their relationships are contained in a single object. Advantages: supports more complex data management, sites and manipulates all type of multimedia

31
Q

Data warehouse

A

Collection of data from a variety of sources. Used to support decision making applications & generates business intelligence

32
Q

Data warehouses uses the following to generate reports

A

OLTP (online transaction processing - generate reports for decision making) & OLAP (online anytical processing - answers multidimensional analytical queries)