You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: azure-sql/database/elastic-jobs-powershell-create.md
+6-1Lines changed: 6 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Learn how to create an elastic job agent and run scripts across man
4
4
author: WilliamDAssafMSFT
5
5
ms.author: wiassaf
6
6
ms.reviewer: srinia, mathoma
7
-
ms.date: 04/03/2024
7
+
ms.date: 01/23/2026
8
8
ms.service: azure-sql-database
9
9
ms.subservice: elastic-jobs
10
10
ms.topic: tutorial
@@ -64,6 +64,8 @@ Creating an elastic job agent requires a database (S1 or higher) for use as the
64
64
65
65
The following script creates a new resource group, server, and database for use as the elastic job database. The second script creates a second server with two blank databases to execute jobs against.
Elastic jobs have no specific naming requirements so you can use whatever naming conventions you want, as long as they conform to any [Azure requirements](/azure/architecture/best-practices/resource-naming). If you already have created a blank database to server as the elastic job database, skip to [Create the elastic job agent](#create-the-elastic-job-agent).
68
70
69
71
Configuring a firewall rule with `New-AzSqlServerFirewallRule` is unnecessary when using elastic jobs private endpoint.
@@ -124,6 +126,9 @@ $jobDatabase
124
126
Write-Output "Creating target server..."
125
127
$targetServerName = Read-Host "Please enter a target server name"
Create a resource group with the [az group create](/cli/azure/group) command. An Azure resource group is a logical container into which Azure resources are deployed and managed. The following example creates a resource group in the location specified for the `location` parameter in the prior step:
@@ -207,6 +211,8 @@ Before running the sample code, change the `location` as appropriate for your en
Create an Azure resource group with [New-AzResourceGroup](/powershell/module/az.resources/new-azresourcegroup). A resource group is a logical container into which Azure resources are deployed and managed.
Copy file name to clipboardExpand all lines: azure-sql/database/logical-servers.md
+7-6Lines changed: 7 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Learn about logical servers used by Azure SQL Database and Azure Sy
4
4
author: WilliamDAssafMSFT
5
5
ms.author: wiassaf
6
6
ms.reviewer: mathoma
7
-
ms.date: 03/25/2025
7
+
ms.date: 01/23/2026
8
8
ms.service: azure-sql-database
9
9
ms.subservice: service-overview
10
10
ms.topic: concept-article
@@ -58,6 +58,8 @@ You can create the resource group for a logical server ahead of time or while cr
58
58
59
59
To create a blank logical server (without a database, elastic pool, or dedicated SQL pool) using the [Azure portal](https://portal.azure.com), navigate to a blank SQL server (**logical SQL server**) form.
### Create a blank or sample database in Azure SQL Database
62
64
63
65
To create a database in SQL Database using the [Azure portal](https://portal.azure.com), navigate to create a new **SQL Database** and provide the requested information. You can create the resource group and server ahead of time or while creating the database itself. You can create a blank database or create a sample database based on `AdventureWorksLT`.
@@ -95,13 +97,10 @@ For example, to configure a firewall rule, follow these steps:
95
97
96
98
You can configure your database using Azure PowerShell.
> The PowerShell Azure Resource Manager (AzureRM) module was deprecated on February 29, 2024. All future development should use the Az.Sql module. Users are advised to migrate from AzureRM to the Az PowerShell module to ensure continued support and updates. The AzureRM module is no longer maintained or supported. The arguments for the commands in the Az PowerShell module and in the AzureRM modules are substantially identical. For more about their compatibility, see [Introducing the new Az PowerShell module](/powershell/azure/new-azureps-module-az).
102
-
103
100
To create and manage servers, databases, and firewalls with Azure PowerShell, use the following PowerShell cmdlets. If you need to install or upgrade PowerShell, see [Install Azure PowerShell module](/powershell/azure/install-az-ps). For creating and managing elastic pools, see [Elastic pools](elastic-pool-overview.md).
|[New-AzSqlDatabase](/powershell/module/az.sql/new-azsqldatabase)|Creates a database |
@@ -127,6 +126,8 @@ To create and manage servers, databases, and firewalls with Azure PowerShell, us
127
126
128
127
To create and manage servers, databases, and firewalls with the [Azure CLI](/cli/azure), use the following [Azure CLI SQL Database](/cli/azure/sql/db) commands. Use the [Cloud Shell](/azure/cloud-shell/overview) to run the CLI in your browser, or [install](/cli/azure/install-azure-cli) it on macOS, Linux, or Windows. For creating and managing elastic pools, see [Elastic pools](elastic-pool-overview.md).
Copy file name to clipboardExpand all lines: azure-sql/database/logins-create-manage.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ description: Learn about how Azure SQL Database, SQL Managed Instance, and Azure
5
5
author: VanMSFT
6
6
ms.author: vanto
7
7
ms.reviewer: wiassaf, mathoma
8
-
ms.date: 06/30/2025
8
+
ms.date: 01/23/2026
9
9
ms.service: azure-sql
10
10
ms.subservice: security
11
11
ms.topic: concept-article
@@ -62,11 +62,13 @@ When a user attempts to connect to a database, they provide a user account and a
62
62
63
63
## Existing logins and user accounts after creating a new database
64
64
65
-
When you first deploy Azure SQL, you can specify a login name and a password for a special type of administrative login, the **Server admin**. The following configuration of logins and users in the `master` and user databases occurs during deployment:
65
+
When you first deploy an Azure SQL resource, you can specify a login name and a password for a special type of administrative login, the **Server admin**. The following configuration of logins and users in the `master` and user databases occurs during deployment:
- A SQL login with administrative privileges is created using the login name you specified. A [login](/sql/relational-databases/security/authentication-access/principals-database-engine#sa-login) is an individual account for logging in to SQL Database, SQL Managed Instance, and Azure Synapse.
68
70
- This login is granted full administrative permissions on all databases as a [server-level principal](/sql/relational-databases/security/authentication-access/principals-database-engine). The login has all available permissions and can't be limited. In a SQL Managed Instance, this login is added to the [sysadmin fixed server role](/sql/relational-databases/security/authentication-access/server-level-roles) (this role doesn't exist in Azure SQL Database).
69
-
- When this account signs into a database, they're matched to the special user account `dbo` ([user account](/sql/relational-databases/security/authentication-access/getting-started-with-database-engine-permissions#database-users), which exists in each user database. The [dbo](/sql/relational-databases/security/authentication-access/principals-database-engine) user has all database permissions in the database and is member of the `db_owner` fixed database role. Additional fixed database roles are discussed later in this article.
71
+
- When this account signs into a database, they're matched to the special user account `dbo` ([user account](/sql/relational-databases/security/authentication-access/getting-started-with-database-engine-permissions#database-users)), which exists in each user database. The [dbo](/sql/relational-databases/security/authentication-access/principals-database-engine) user has all database permissions in the database and is member of the `db_owner` fixed database role. Additional fixed database roles are discussed later in this article.
70
72
71
73
To identify the **Server admin** account, open the Azure portal, and navigate to the **Properties** tab of your logical server or managed instance:
@@ -72,6 +72,8 @@ Authentication is the process of proving the user is who they claim to be. Azure
72
72
73
73
SQL authentication refers to the authentication of a user when connecting to Azure SQL Database or Azure SQL Managed Instance by using a username and password. You must specify a **server admin** login with a username and password when creating the server. Using these credentials, a **server admin** can authenticate to any database on that server or instance as the database owner. After that, the server admin can create other SQL logins and users, which enable users to connect by using a username and password.
Authorization refers to controlling access to management of servers and databases, and to data, resources, and commands within a database. You assign permissions to a user within a database in Azure SQL Database or Azure SQL Managed Instance. Your portal user account's role assignments control managing databases and servers within Azure. For more information, see [Azure role-based access control in the Azure portal](/azure/role-based-access-control/overview).
Copy file name to clipboardExpand all lines: azure-sql/database/single-database-create-bicep-quickstart.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Create a single database in Azure SQL Database using Bicep.
4
4
author: dimitri-furman
5
5
ms.author: dfurman
6
6
ms.reviewer: mathoma
7
-
ms.date: 09/17/2024
7
+
ms.date: 01/23/2026
8
8
ms.service: azure-sql-database
9
9
ms.subservice: deployment-configuration
10
10
ms.topic: quickstart
@@ -36,6 +36,8 @@ If you don't have an Azure subscription, [create a free account](https://azure.m
36
36
37
37
A single database has a defined set of compute, memory, IO, and storage resources using one of two [purchasing models](purchasing-models.md). When you create a single database, you also define a [server](logical-servers.md) to manage it and place it within [Azure resource group](/azure/active-directory-b2c/overview) in a specified region.
0 commit comments