Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 1.07 KB

File metadata and controls

18 lines (15 loc) · 1.07 KB
title description ms.reviewer ms.topic ms.date
Databases
This article describes Databases in Azure Data Explorer.
orspodek
reference
11/03/2023

Databases

Databases are named entities that hold tables and stored functions. Kusto follows a relation model of storing the data where the upper-level entity is a database.

A single cluster can host several databases, in which each database hosts its own collection of tables, stored functions, and external tables. Each database has its own set of permissions that follow the Role Based Access Control (RBAC) model.

Note

  • The maximum limit of databases per cluster is 10,000.
  • Database names must follow Identifier naming rules with the exception of case-sensitivity rule. Database names are case-insensitive.
  • Both queries combining data from multiple tables in the same database and queries combining data from multiple databases in the same cluster have comparable performance.