Podcast
Questions and Answers
If the address data is frequently retrieved with the name information, then with referencing, your application needs to issue multiple queries to resolve the ______.
If the address data is frequently retrieved with the name information, then with referencing, your application needs to issue multiple queries to resolve the ______.
reference
The better data model would be to embed the address data in the person ______.
The better data model would be to embed the address data in the person ______.
data
With the embedded data model, your application can retrieve the complete person information with one ______.
With the embedded data model, your application can retrieve the complete person information with one ______.
query
A potential problem with the embedded document pattern is that it can lead to large documents that contain fields that the application does not ______.
A potential problem with the embedded document pattern is that it can lead to large documents that contain fields that the application does not ______.
Signup and view all the answers
This unnecessary data can cause extra load on your server and slow down read ______.
This unnecessary data can cause extra load on your server and slow down read ______.
Signup and view all the answers
Instead, you can use the subset pattern to retrieve the subset of data which is accessed the most frequently in a single database ______.
Instead, you can use the subset pattern to retrieve the subset of data which is accessed the most frequently in a single database ______.
Signup and view all the answers
In a normalized data model, the address document contains a reference to the person ______.
In a normalized data model, the address document contains a reference to the person ______.
Signup and view all the answers
Consider the following example that maps person and multiple address ______.
Consider the following example that maps person and multiple address ______.
Signup and view all the answers
In the embedded document pattern, embedding connected data in a single document can reduce the number of read operations required to obtain ______.
In the embedded document pattern, embedding connected data in a single document can reduce the number of read operations required to obtain ______.
Signup and view all the answers
Modeling a one-to-many relationship with embedded documents can help your application receive all of its required information in a single read ______.
Modeling a one-to-many relationship with embedded documents can help your application receive all of its required information in a single read ______.
Signup and view all the answers
The potential problem with the embedded document pattern is that it can lead to large documents that contain fields that the application does not ______.
The potential problem with the embedded document pattern is that it can lead to large documents that contain fields that the application does not ______.
Signup and view all the answers
The better data model would be to embed the address data in the person ______.
The better data model would be to embed the address data in the person ______.
Signup and view all the answers
In general, you should structure your schema so your application receives all of its required information in a single ______ operation.
In general, you should structure your schema so your application receives all of its required information in a single ______ operation.
Signup and view all the answers
Model One-to-One Relationships with ______ Documents (Embedded Document Consider Pattern).
Model One-to-One Relationships with ______ Documents (Embedded Document Consider Pattern).
Signup and view all the answers
In the normalized data model, the address document contains a reference to the person ______.
In the normalized data model, the address document contains a reference to the person ______.
Signup and view all the answers
The better data model would be to embed the address data in the person data, as in the following ______.
The better data model would be to embed the address data in the person data, as in the following ______.
Signup and view all the answers
Model One-to-One Relationships with Embedded Documents (Subset ______).
Model One-to-One Relationships with Embedded Documents (Subset ______).
Signup and view all the answers
A potential problem with the embedded document pattern is that it can lead to large documents that contain fields that the application does not ______.
A potential problem with the embedded document pattern is that it can lead to large documents that contain fields that the application does not ______.
Signup and view all the answers