Skip to content

Latest commit

 

History

History
68 lines (52 loc) · 4.67 KB

sql-database-overview.md

File metadata and controls

68 lines (52 loc) · 4.67 KB
title description services documentationcenter author manager editor ms.assetid ms.service ms.custom ms.devlang ms.topic ms.tgt_pltfrm ms.workload ms.date ms.author
What is an Azure SQL database? | Microsoft Docs
This article provides an overview of Azure SQL databases.
sql-database
na
CarlRabeler
jhubbard
sql-database
single databases
na
get-started-article
na
data-management
11/28/2016
carlrab

Azure SQL database overview

This topic provides an overview of Azure SQL databases. For information about Azure SQL logical servers, see Logical servers.

What is Azure SQL database?

Each database in Azure SQL Database is associated with a logical server. The database can be:

How do I connect and authenticate to an Azure SQL database?

  • Authentication and authorization: Azure SQL Database supports SQL authentication and Azure Active Directory Authentication (with certain limitations - see Connect to SQL Database with Azure Active Directory Authentication for authentication. You can connect and authenticate to Azure SQL databases through the server's master database or directly to a user database. For more information, see Managing Databases and Logins in Azure SQL Database. Windows Authentication is not supported.
  • TDS: Microsoft Azure SQL Database supports tabular data stream (TDS) protocol client version 7.3 or later.
  • TCP/IP: Only TCP/IP connections are allowed.
  • SQL Database firewall: To help protect your data, a SQL Database firewall prevents all access to your database server or its databases until you specify which computers have permission. See Firewalls

What collations are supported?

The default database collation used by Microsoft Azure SQL Database is SQL_LATIN1_GENERAL_CP1_CI_AS, where LATIN1_GENERAL is English (United States), CP1 is code page 1252, CI is case-insensitive, and AS is accent-sensitive. It is not possible to alter the collation for V12 databases. For more information about how to set the collation, see COLLATE (Transact-SQL).

What are the naming requirements for database objects?

Names for all new objects must comply with the SQL Server rules for identifiers. For more information, see Identifiers.

What features are supported by Azure SQL databases?

For information about supported features, see Features. See also Azure SQL Database Transact-SQL differences for more background on the reasons for lack of support for certain types of features.

How do I manage an Azure SQL database?

You can manage Azure SQL Database logical servers using several methods:

Next steps