• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/13

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

13 Cards in this Set

  • Front
  • Back
Database schema
The description of the database, which is specified during database design and is not expected to chage frequently
Schema diagram
Displaying schmas as diagrams

The diagram displays the strucutre of each record type but tnot the actual instances of records

Displays only some aspects of a schema,such as the names of record types and data items, and some types of constraints. Other aspects are not specified in the schema diagra.

Many types of constraints are not specified in schema diagrams.
Populated
The initial state of the database when the databasze us first populated or loaded with data. From then on, every time an update operation is applied to the database, we get another database state.
Three-Schema Architecture
1. Internal level
2. Conceptual level
3. External or View level
Internal Level
Describes the physical storage structure of the database

Uses a physical data model and describes the complete details of data storage and access paths for the database
Conceptual Level
Describes the structure of the whole database for a community of users

Hides the details of physical storage structures and concentrates on describing entities, data types, relationships, user operations, and constraints.
External or View Level
Describes the part of the database that a particular user group is interested in and hides the rest of the databse from that user group.
Data Independence
The capacity to chance the schema at one level of a database system without having to change the schema at the next higher level.
Two Types:
1. Logical data independence
2. Physcial data independence
Logical data independence
Capacity to change the conceptual schema without having to chage external schemas or application programs.
Physical data independence
The capacity to change the internal schema without having to change the conceptual schema
Three-tier architecture
Adds an intermediate layer between the client and the database server
Application Server
or
Web Server
Plays an intermediary role by storing business rules that are used to access data from the database server.

Accepts requests from the client,processes the request and sends database commands to the database server, and then acts as a conduit for passing processed data from the database server to the clients