Showing posts with label Azure Portal. Show all posts
Showing posts with label Azure Portal. Show all posts

Monday, 2 October 2017

Performance best practices for SQL Server in Azure Virtual Machines

Quick check list

The following is a quick check list for optimal performance of SQL Server on Azure Virtual Machines:

AreaOptimizations
VM sizeDS3 or higher for SQL Enterprise edition.

DS2 or higher for SQL Standard and Web editions.
StorageUse Premium Storage. Standard storage is only recommended for dev/test.

Keep the storage account and SQL Server VM in the same region.

Disable Azure geo-redundant storage (geo-replication) on the storage account.
DisksUse a minimum of 2 P30 disks (1 for log files; 1 for data files and TempDB).

Avoid using operating system or temporary disks for database storage or logging.

Enable read caching on the disk(s) hosting the data files and TempDB.

Do not enable caching on disk(s) hosting the log file.

Important: Stop the SQL Server service when changing the cache settings for an Azure VM disk.

Stripe multiple Azure data disks to get increased IO throughput.

Format with documented allocation sizes.
I/OEnable database page compression.

Enable instant file initialization for data files.

Limit or disable autogrow on the database.

Disable autoshrink on the database.

Move all databases to data disks, including system databases.

Move SQL Server error log and trace file directories to data disks.

Setup default backup and database file locations.

Enable locked pages.

Apply SQL Server performance fixes.

Go to here for more details

How to add additional disk to current Azure VM

Let see how we can add additional disks:

Adding an additional disk to an Azure VM was too easy. Let's see steps below.

1. Login to the Azure Management Portal here
2. In the Azure Management portal, click VM in the list of options on the left
3. In the VM pane, click the VM you want to attach a disk to.
4. A dashboard for the VM will appear, and the VM settings panel to the left. in the settings panel, click Disks under GENERAL
5. Select attach new






















6.  Select appropriate name for Disk under Name
7. Select required type Standard or SSD
8. Provide Size required in GB
9. select location and host caching if required for your environment
10. Click OK

























11. wait for few minutes, once tasks completed you will see a notification appear on the top right of the management portal.

Thursday, 21 September 2017

How to add additional user to Azure Subscription

  1. 1. Login to portal.azure.com 
  2. 2. Search by subscription 
  3. 3. Select right subscription name 
  4. 4. Select Access Control(IAM) 
  5. 5. Click on Add

  6. 6. Select role you want to provide and provide Microsoft email  and click on save


  7. 7. That all done. Now new user can access portal with provided permissions

How to find table row count?

--Use below query to find table row count select so.name,sp.rows from sys.objects so inner join sys.partitions sp on so.object_id = sp.obj...