~/azure-dp-420 · Design and implement data models ▊
← Microsoft Certified: Azure Cosmos DB Developer Specialty
AZURE · objective · 38% of the exam
Design and implement data models — Microsoft Certified: Azure Cosmos DB Developer Specialty
The official AZURE documentation our Design and implement data models practice questions are cited to. Review the primary sources, then practise.
Official references for this objective
-
Microsoft — Multitenant SaaS Patterns - Azure SQL Database | Microsoft Learn
A tenancy model determines how each tenant's data is mapped to storage. Your choice of tenancy model impacts application design and management. Switching to a
-
Microsoft — Tutorial: Design Your First Relational Database Using SSMS - Azure SQL Database | Microsoft Learn
StudentId INT FOREIGN KEY REFERENCES Student (StudentId), CourseId INT FOREIGN KEY REFERENCES Course (CourseId), Grade DECIMAL (5, 2) CHECK (Grade <= 100.00), Attempt TINYINT, CONSTRAINT
-
Microsoft — Design your first relational database C# - Azure SQL Database | Microsoft Learn
DepartmentCode nchar(4) null REFERENCES tabDepartment (DepartmentCode)