Unit 14 Flashcards

(31 cards)

1
Q

are designed to break away from the rows and columns of the relational database model.

A

NoSQL database

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

A useful description of how the data will be organized is the beginning of a schema.

A

NoSQL database

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

have had generations of users and developers to work out standard design methods.

A

Relational database

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

A database schemas are much less costly to revise.

A

NoSQL database

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

How often will data and documents be updated?

A

may update thousands of times per day

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

Each document stores pairs of fields and values, with a wide variety of data types and data structures being used as values.

A

Document databases

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

The data model consists of two parts: a string with some relationship to the data, such as a filename or URL, which is used as the key, and the data, which is treated as a single collection.

A

Key-value database

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

stores use a table form but in a flexible and scalable way.

A

Wide-column

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

consists of a key and a value, making this the simplest type of database

A

Key-value database

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

consist of nodes connected by edges. Data items like names, prices, and products are stored in the nodes, while the edges store information about how the nodes are related

A

Graph databases

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

store data in the document data type, which is similar to a JSON document or object.

A

Document databases

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

What they have in common is that the _______________ will be distributed and horizontally partitioned.

A

physical storage

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

What are NoSQL covers four main types of database design

A

Document databases, Graph databases, Wide-column,
Key-value database

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

Does NoSQL have a schema?

A

false

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

Does NoSQL have a query language?

A

true

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

stores documents on disk in the BSON serialization format.

16
Q

The mongo JavaScript shell and the MongoDB language drivers translate between ____ and the language-specific document representation.

17
Q

Default database of MongoDB is ‘__’, which is stored within data folder.

18
Q

command provides you with a list of all the databases.

19
Q

A database name can contain

20
Q

use JSON (JavaScript Object Notation, is a lightweight, thoroughly explorable format used to interchange data between various applications) style for storing data.

21
Q

An entity which can be used in programming. May be a value, variable, function, or data structure.

22
Q

may store documents those who are not same in structure. This is possible because MongoDB is a Schema-free database.

23
Q

A Collection name must not exceed ___ characters. It will be nice if you keep it within _____ characters.

24
are collections which can store data in the same order it is inserted.
Capped collections
25
Information about a database is stored in certain collections
Metadata
26
MongoDB Create Database command
use DATABASE_NAME
27
drop Database command
db.dropDatabase()
28
MongoDB Create Collection command
db.createCollection(name, options)
29
MongoDB Drop collection command
db.COLLECTION_NAME.drop()
30
check the collections command
show collections