DATABASE

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/22

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

23 Terms

1
New cards

Database

an organized collection of structured inf ormation, or data, typically stored electronically in a computer system.

2
New cards

Database Management System (DBMS)

serves as an interf ace between the database and its end-users or programs, allowing users to retrieve, update, and manage how the inf ormation is organized and optimized

3
New cards

Database Application

a set of one (1) or more computer programs that serves as an intermediary between the user and the DBMS.

4
New cards

Naive users

are unsophisticated users who interact with the system by using predef ined user interf aces, such as web or mobile applications

5
New cards

Application programmers

are computer prof essionals who write application programs.

6
New cards

Sophisticated users

interact with the system without writing programs. Instead, they form their requests either using a database query language.

7
New cards

Database System Architecture

involves database design and construction on how the databases will operate and f unction within exisiting structures and location.

8
New cards

Centralized database system

a database that supports data located at a single site

9
New cards

Distributed  database  system 

a collection of multiple interconnected databases, spread physically across various locations

10
New cards

Structured Data

data that are stored in relational databases.

11
New cards

Unstructured Data

data that exist in its original (raw) state that can come in all shapes and sizes.

12
New cards

Semi-structured Data

individual data items of the same type may have diff erent sets of attributes. It contains semantic tags and there is no pre-def ined schema

13
New cards

SQL (Structured Query Language)

a computer language for storing, manipulating, and retrieving data stored in a relational database.

14
New cards

NoSQL

Stands for “Not only SQL” is generally used to describe a new generation of DBMS that is not based on the traditional relational database model and has been developed to address the challenges represented by Big Data.

15
New cards

MySQL

an open-source SQL relational database management system that was developed and supported by Oracle

16
New cards

SQLite

a relational database management system contained in a C programming library

17
New cards

BEGIN/END

used to def ine a set of SQL statements that execute together.

18
New cards

DECLARE

used to declare a variable in SQL server. Variable names have to start at “@”. If we want to use a variable in SQL server, we need to declare it

19
New cards

SET or SELECT

used to assign a value(s) to a variable

20
New cards

CAST

converts an expression of one data type to another.

21
New cards

PRINT

allows users to return a pre-def ined message or value.

22
New cards

TRY-CATCH

consists of a try block followed by one or more catch clauses, which specif y handlers  for diff erent exceptions.

23
New cards