Skip to content

Commit 4d7bcf9

Browse files
committed
fixed conflicts
1 parent cff0c2b commit 4d7bcf9

File tree

4 files changed

+3
-80
lines changed

4 files changed

+3
-80
lines changed

articles/mysql/flexible-server/concepts-networking-vnet.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -76,11 +76,7 @@ Here are some concepts to be familiar with when using virtual networks with MySQ
7676
- If you use Azure API, an Azure Resource Manager template (ARM template), or Terraform, create private DNS zones that end with `mysql.database.azure.com` and use them while configuring flexible servers with private access. For more information, see the [private DNS zone overview](../../dns/private-dns-overview.md).
7777

7878
> [!IMPORTANT]
79-
<<<<<<< HEAD
8079
> Private DNS zone names must end with `mysql.database.azure.com`. If you are connecting to an Azure Database for MySQL flexible server with SSL and you're using an option to perform full verification (sslmode=VERIFY_IDENTITY) with certificate subject name, use \<servername\>.mysql.database.azure.com in your connection string.
81-
=======
82-
> Private DNS zone names must end with `mysql.database.azure.com`. If you are connecting to an Azure Database for MySQL - Flexible Server with SSL and you're using an option to perform full verification (sslmode=VERTIFY_IDENTITY) with certificate subject name, use \<servername\>.mysql.database.azure.com in your connection string.
83-
>>>>>>> ec6d0faf1a110eb2a694b78b22bb8ae2ca64be81
8480
8581
Learn how to create a flexible server with private access (VNet integration) in [the Azure portal](how-to-manage-virtual-network-portal.md) or [the Azure CLI](how-to-manage-virtual-network-cli.md).
8682

articles/mysql/flexible-server/connect-with-powerbi-desktop.md

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,10 @@ ms.date: 09/01/2022
1111

1212
# Import data from Azure Database for MySQL - Flexible Server in Power BI
1313

14-
<<<<<<< HEAD
15-
>[!NOTE]
14+
> [!NOTE]
1615
> This article applies to Power BI Desktop only. Currently Power Query online or Power BI Service is **not supported**.
1716
1817
With Power BI Desktop you can visually explore your data through a free-form drag-and-drop canvas, a broad range of modern data visualizations, and an easy-to-use report authoring experiences. You can import directly from the tables or import from a SELECT query. In this quickstart you will learn how to connect with Azure Database for MySQL - Flexible Server with Power BI Desktop.
19-
=======
20-
With Power BI Desktop, you can visually explore your data through a free-form drag-and-drop canvas, a broad range of modern data visualizations, and an easy-to-use report authoring experiences. You can import directly from the tables or import from a SELECT query. In this quickstart, you learn how to connect with Azure Database for MySQL Flexible Server with Power BI Desktop.
21-
>>>>>>> 04760257ec317275b27e75537e8e1e2600db121c
2218

2319
## Prerequisites
2420

@@ -33,11 +29,7 @@ With Power BI Desktop, you can visually explore your data through a free-form dr
3329

3430
## Connect with Power BI desktop from Azure portal
3531

36-
<<<<<<< HEAD
37-
Get the connection information needed to connect to the Azure Database for MySQL - Flexible Server. You need the fully qualified server name and sign in credentials.
38-
=======
39-
You can open your database in Power BI desktop from Azure portal with a few clicks.
40-
>>>>>>> 04760257ec317275b27e75537e8e1e2600db121c
32+
Get the connection information needed to connect to the Azure Database for MySQL flexible server. You need the fully qualified server name and sign in credentials.
4133

4234
1. Sign in to the [Azure portal](https://portal.azure.com/).
4335
2. From the left-hand menu in Azure portal, select **All resources**, and then search for the server you've created (such as **mydemoserver**).

articles/mysql/flexible-server/quickstart-create-arm-template.md

Lines changed: 1 addition & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ ms.date: 02/16/2023
1414

1515
[!INCLUDE [applies-to-mysql-flexible-server](../includes/applies-to-mysql-flexible-server.md)]
1616

17-
[!INCLUDE [About Azure Database for MySQL - Flexible Server](../includes/azure-database-for-mysql-flexible-server-abstract.md)]
17+
[!INCLUDE [About Azure Database for MySQL - Flexible Server](../includes/Azure-database-for-mysql-flexible-server-abstract.md)]
1818

1919
[!INCLUDE [About Azure Resource Manager](../../../includes/resource-manager-quickstart-introduction.md)]
2020

@@ -497,69 +497,9 @@ az deployment group create --resource-group exampleRG --template-file azuredeplo
497497

498498
# [PowerShell](#tab/PowerShell)
499499

500-
<<<<<<< HEAD
501-
Follow these steps to verify if your server was created in Azure.
502-
503-
### Azure portal
504-
505-
1. In the [Azure portal](https://portal.azure.com), search for and select **Azure Database for MySQL servers**.
506-
1. In the database list, select your new server. The **Overview** page for your new Azure Database for MySQL server appears.
507-
508-
### PowerShell
509-
510-
You'll have to enter the name of the new server to view the details of your Azure Database for MySQL - Flexible Server.
511-
512-
```azurepowershell-interactive
513-
$serverName = Read-Host -Prompt "Enter the name of your Azure Database for MySQL server"
514-
Get-AzResource -ResourceType "Microsoft.DBforMySQL/flexibleServers" -Name $serverName | ft
515-
Write-Host "Press [ENTER] to continue..."
516-
```
517-
518-
### CLI
519-
520-
You'll have to enter the name and the resource group of the new server to view details about your Azure Database for MySQL - Flexible Server.
521-
522-
```azurecli-interactive
523-
echo "Enter your Azure Database for MySQL server name:" &&
524-
read serverName &&
525-
echo "Enter the resource group where the Azure Database for MySQL server exists:" &&
526-
read resourcegroupName &&
527-
az resource show --resource-group $resourcegroupName --name $serverName --resource-type "Microsoft.DbForMySQL/flexibleServers"
528-
```
529-
530-
## Clean up resources
531-
532-
Keep this resource group, server, and single database if you want to go to the [Next steps](#next-steps). The next steps show you how to connect and query your database using different methods.
533-
534-
To delete the resource group:
535-
536-
### Azure portal
537-
538-
1. In the [Azure portal](https://portal.azure.com), search for and select **Resource groups**.
539-
1. In the resource group list, choose the name of your resource group.
540-
1. In the **Overview** page of your resource group, select **Delete resource group**.
541-
1. In the confirmation dialog box, type the name of your resource group, and then select **Delete**.
542-
543-
### PowerShell
544-
545-
```azurepowershell-interactive
546-
$resourceGroupName = Read-Host -Prompt "Enter the Resource Group name"
547-
Remove-AzResourceGroup -Name $resourceGroupName
548-
Write-Host "Press [ENTER] to continue..."
549-
```
550-
551-
### CLI
552-
553-
```azurecli-interactive
554-
echo "Enter the Resource Group name:" &&
555-
read resourceGroupName &&
556-
az group delete --name $resourceGroupName &&
557-
echo "Press [ENTER] to continue ..."
558-
=======
559500
```azurepowershell
560501
New-AzResourceGroup -Name exampleRG -Location eastus
561502
New-AzResourceGroupDeployment -ResourceGroupName exampleRG -TemplateFile azuredeploy.json
562-
>>>>>>> 60651a3d247d2413e6b9c5a301d846ded7170aa7
563503
```
564504

565505
---
@@ -602,7 +542,6 @@ Remove-AzResourceGroup -Name exampleRG
602542

603543
---
604544

605-
606545
## Next steps
607546

608547
For a step-by-step tutorial that guides you through the process of creating an ARM template, see:

articles/mysql/flexible-server/tutorial-add-redis-to-mysql.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,7 @@ ms.date: 12/07/2022
1313

1414
[!INCLUDE[applies-to-mysql-flexible-server](../includes/applies-to-mysql-flexible-server.md)]
1515

16-
<<<<<<< HEAD
17-
This article demonstrates how to boost the performance of an Azure Database for MySQL - Flexible Server using [Azure cache for Redis](../../azure-cache-for-redis/cache-overview.md). Azure cache for Redis is a secure data cache and messaging broker that provides high throughput and low-latency access to data for applications.
18-
=======
1916
This article demonstrates how to boost the performance of an Azure Database for MySQL flexible server using [Azure Cache for Redis](../../azure-cache-for-redis/cache-overview.md). Azure Cache for Redis is a secure data cache and messaging broker that provides high throughput and low-latency access to data for applications.
20-
>>>>>>> ae8c443e250f9ec1e9ad900a612ad8b993c7b5bf
2117

2218
## Prerequisites
2319

0 commit comments

Comments
 (0)