Module 2 Unit 4 Flashcards

1
Q

what are the structural elements of a database table?

A

Each table stores information about records (rows in the table) in fields (columns in the tables).

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

what term is used to describe selecting and viewing information in a database?

A

Query

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

how does an RDBMS such as Microsoft SQL server differ from Microsoft Excel when used to store a data set?

A

Excel is an example of a flat file system. They usually support a single user only, and do not scale well.

RDBMS platforms enable many hundreds or thousands of users to connect concurrent and can support very large data sets. It can also validate information entered in fields and records

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

what language is usually used to request data from an RDBMS such as Oracle?

A

structured query language, also known as SQL it is used to query RDBMS based data platforms

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

what is it that defines the relationship between tables in an RDBMS?

A

each table contains a primary key, whose value is unique for each record in the table. A foreign table can use the value of a primary key as a relation storing the value in a foreign key field.

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

give an example of unstructured data.

A

Images and text files and other document formats are unstructured data

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

give two examples of semi structured data stores

A

Key/value pair databases and markup language document stores

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

is an INSERT statement an example of a definition or manipulation language state

A

manipulation language

why? because it depends on the structure of a table being established already

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

you need a development environment with a library of database functions. what type of interface are you using?

A

Programmatic access

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

How can a client-server application architect be described if there is the potential for the structure of the application platform to be developed further?

A

this could be described as a two-tier application.
It could be developed as a three tier application by specifying presentation, application and data layers

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