InterviewSolution
Saved Bookmarks
| 1. |
What Is Federation Root Database? |
|
Answer» The federation ROOT database is a SQL Azure database that contains metadata about the federations. It’s the first thing you need to CREATE when setting up your own federation example: CREATE DATABASE [fedRoot] COLLATE French_CI_AS (MAXSIZE = 100 GB, EDITION = 'business') The federation root database is a SQL Azure database that contains metadata about the federations. It’s the first thing you need to create when setting up your own federation example: CREATE DATABASE [fedRoot] COLLATE French_CI_AS (MAXSIZE = 100 GB, EDITION = 'business') |
|