Visual Analytics Flashcards
What is Business Intelligence?
Encompasses the technologies and processes used for gathering storing and accessing and analyzing data for decision making.
What is Visual Analytics?
A BI method and it is the process of combining interactive visualizations with analytical reasoning.
What is ETL?
Extract, Transform and Load. And it is a process for organizing, cleaning and combining data from multiple sources to e.g. a data warehouse or data lake
What is Data?
Data are facts that are recorded and can be accessed.
What is Information ?
Refers to the data that is accessed by a user for some particular purpose.
What is Database Management System?
Database management system (DBS) software is used for:
- Creation of databases.
- Insertion, storage, retrieval, update, and deletion of the data in the database.
- Maintenance of databases.
What is Data Visualization Software?
Data visualization software is software specifically designed for:
- Creating visualizations and dashboards
- Exploratory data analysis
- Reporting
What is a database?
A database is a structured collection of related data stored on a computer medium. Organizes the data in a way that facilitates efficient access to the information captured in the data.
What is a database system ?
A database system is a computer-based system whose purpose is to enable an efficient interaction between the users and the information captured in a database.
What is Metadata?
Metadata is the data that describes the structure and the properties of the data. Metadata is essential for the proper understanding and use of the data.
What is database metadata?
Database metadata represents the structures of the database. Database content that is not the data itself (data about data). It contains:
- Names of data structures
- Data types
- Data descriptions
- Other information describing the characteristics of the data
What is the difference between transactional and analytic databases?
Operational information (Transaction information) is the information collected and used in support of day-to-day operational needs in businesses and other organizations.
Operational database collects and presents operational information in support of daily operational procedures and processes.
Analytical information is the information collected and used in support of analytical tasks. Analytical information is based on operational (transactional) information.
Analytical database collects and presents analytical information in support of analytical tasks.
What is ER Modeling?
ER modeling: a conceptual database modeling technique
- Enables the structuring and organizing of the requirements collection process
- Provides a way to graphically represent the requirements
What is an Entity
Entities : constructs that represent what the database keeps track of. Their are the building block of diagram. Within each ERD each entity needs to have a different name. E.g., customer, store.
What is an Attribute?
Attributes: the depiction of a characteristic of an entity
- Represents the details that will be recorded for each entity
instance - Within one entity, each attribute must have a different name
What are cardinality constraints?
Cardinality constraints depict how many instances of one entity can be associated with instances of another entity
What are the different maximum cardinality? How do we represent them?
- One: represented by a straight bar: |
- Many: represented by a crow´s foot symbol:
What are the different minimum cardinality? How do we represent them?
- Optional: represented by a circular symbol: 0
- Mandatory: Represented by a straight bar: |
What is a relational database model?
Relational database model is logical database model that represents a database as a collection of related tables.
What is a relational schema?
Relational schema is visual depiction of the relational database model.
What is a relation?
Relation is a table in a relational database. In a order for a table to be a relation to the following conditions must hold:
- Within one table, each column must have a unique name.
- Within one table, each row must be unique.
- All values in each column must be from the same (predefined) domain.
- Within each row, each value in each column must be single valued (one value from a predefined domain, within each row in each column)
The order of the rows and columns is irrelevant.
What is a Primary Key and composite key?
Primary key is a column whose value is unique for each row.
Composite primary key is a primary key that is composed of multiple columns.
What is the Entity Integrity Constraint?
Entity integrity constraint means that in a relational table, no primary key column can have null (empty) values. AKA no primary key can be empty.
What is the two focus in SQL in this class?
Data Definition Language;
Data Manipulation Language.