Question : By doing data nesting in Cassandra, we can support a partition per query access pattern 1. True 2. False
Correct Answer : Get Lastest Questions and Answer : Explanation: Cassandra, like many other NOSQL databases, stored data is highly denormalized. The denormalized data often manifests itself in the form of a nested object e.g., deformalizing one to many relations.
Question : What all are the advantages of Mapping Rule if applied correctly in Cassandra Data Model? A. ensure that logical data model is correct B. each query has a corresponding table C. tables are designed to allow query to execute properly D. table returns data in correct order
Correct Answer : Get Lastest Questions and Answer : Explanation: : There are five mapping rules that guide a query-driven transition from a conceptual data model to a logical data model. Which helps in ensure that logical data model is correct each query has a corresponding table tables are designed to allow query to execute properly table returns data in correct order
Question : As per mapping rule (Entity and Relationship) what is true ? 1. Entity and relationship types map to tables
Correct Answer : Get Lastest Questions and Answer : Explanation: MR1 (Entities and Relationships). Entity and relationship types map to tables, while entities and relationships map to table rows. Attribute types that describe entities and relationships at the conceptual level must be preserved as table columns at the logical level. Violation of this rule may lead to data loss.