Book Image

Professional Azure SQL Database Administration

By : Ahmad Osama
Book Image

Professional Azure SQL Database Administration

By: Ahmad Osama

Overview of this book

As the cloud version of SQL Server, Azure SQL Database differs in key ways when it comes to management, maintenance, and administration. It’s important to know how to administer SQL Database to fully benefit from all of the features and functionality that it provides. This book addresses important aspects of an Azure SQL Database instance such as migration, backup restorations, pricing policies, security, scalability, monitoring, performance optimization, high availability, and disaster recovery. It is a complete guide for database administrators, and ideal for those who are planning to migrate from on premise SQL Server database to an Azure SQL Server database.
Table of Contents (13 chapters)
Professional Azure SQL Database Administration
Contributors
Preface
Free Chapter
1
Microsoft Azure SQL Database Primer
4
Restoring an Azure SQL Database
Index

Summary


Security is one of the deciding factors for an organization when opting to put their data in the cloud. Microsoft provides the best security by not only securing the Azure SQL Database, but by also securing the data centers.

To connect to an Azure SQL Database, the machines or the client IP address should exist in the firewall settings. If not, the connection request is denied.

Azure SQL Database allows SQL and Windows Authentication as well. An organization can sync their domain with Azure, thereby allowing users to connect from domain accounts instead of SQL logins. Organizations can also create Active Directory Groups and give access to the group instead of giving access to individual user domain accounts.

In addition to this, you can use Row-Level security and dynamic data masking to further secure the data by allowing users to only see the data they need in order to do their work.

Azure SQL Database also provides proactive monitoring to detect threats such as SQL injection as and...