MS AZURE By Sauras Pandey.

Slides:



Advertisements
Similar presentations
Windows Azure and the Hybrid Cloud Arnie Locsin
Advertisements

IT Industry & Cloud Computing. Trends ‘2011- The year of high salaries and immense job opportunities for IT job seekers’ (Source – Blog.Timesjobs.com)
What Is Azure ! Thierry Gasser Technical Solution Professional (TSP)
Microsoft Dynamics AX Technical Conference 2013
Ken Casada Technical Evangelist Microsoft Switzerland What’s new in Microsoft Azure.
INTRODUCTION TO CLOUD COMPUTING CS 595 LECTURE 6 2/13/2015.
Public cloud definition Public cloud is a cloud in which Cloud infrastructure is available to the general public. Public cloud define cloud computing.
Azure Services Platform Piotr Zierhoffer. Agenda Cloud? What is Azure? Environment Basic glossary Architecture Element description Deployment.
What is Cloud Computing? o Cloud computing:- is a style of computing in which dynamically scalable and often virtualized resources are provided as a service.
Low Control | Low Maintenance Shared Lower cost Dedicated Higher cost High Control | High Maintenance Hybrid On premises Off premises SQL Server Physical.
Protecting your online and on premises assets "Cloud Style" Mike Martin Architect / Microsoft Azure MVP.
The spring release of Windows Azure Infrastructure as a Service introduces new functionality that allows full control and management of virtual machines.
Presented by Sujit Tilak. Evolution of Client/Server Architecture Clients & Server on different computer systems Local Area Network for Server and Client.
SaaS, PaaS & TaaS By: Raza Usmani
Cloud Computing Systems Lin Gu Hong Kong University of Science and Technology Sept. 21, 2011 Windows Azure—Overview.
Cross Platform Mobile Backend with Mobile Services James
Osama Shahid ( ) Vishal ( ) BSCS-5B
A Brief Overview by Aditya Dutt March 18 th ’ Aditya Inc.
Cloud Computing for the Enterprise November 18th, This work is licensed under a Creative Commons.
CLOUD COMPUTING  IT is a service provider which provides information.  IT allows the employees to work remotely  IT is a on demand network access.
Migrating Business Apps to Windows Azure Marc Müller Principal Consultant, 4tecture GmbH
Cloud Computing. What is Cloud Computing? Cloud computing is a model for enabling convenient, on-demand network access to a shared pool of configurable.
1 NETE4631 Using Google Web Services and Using Microsoft Cloud Services Lecture Notes #7.
Windows Azure: Microsoft’s Cloud Platform By Shahed Chowdhuri.
Cloud Computing & Amazon Web Services – EC2 Arpita Patel Software Engineer.
Windows Azure Conference 2014 Deploy your Java workloads on Windows Azure.
Prepared By : Bhavin Tank(S.Y.B.Sc.(IT)) College of Computer Science & IT, Junagadh Cloud Computing.
Windows Azure. Azure Application platform for the public cloud. Windows Azure is an operating system You can: – build a web application that runs.
Web Technologies Lecture 13 Introduction to cloud computing.
CLOUD COMPUTING WHAT IS CLOUD COMPUTING?  Cloud Computing, also known as ‘on-demand computing’, is a kind of Internet-based computing,
SQL Server 2012 Session: 1 Session: 4 SQL Azure Data Management Using Microsoft SQL Server.
WINDOWS AZURE AND THE HYBRID CLOUD. Hybrid Concepts and Cloud Services.
Microsoft Azure SQL Database – SQL Azure : The Good, The Bad and the Ugly. Pini Krisher DBA TL at etoro
Private KEEP OFF! Private KEEP OFF! Open! What is a cloud? Cloud computing is a model for enabling convenient, on-demand network access to a shared.
Clouding with Microsoft Azure
Unit 3 Virtualization.
Course: Cluster, grid and cloud computing systems Course author: Prof
Chapter 6: Securing the Cloud
Virtual Machines and Web Sites
Business Continuity & Disaster Recovery
By: Raza Usmani SaaS, PaaS & TaaS By: Raza Usmani
GROUP 2 Cloud Computing Abdoul Karim Dolo Gary Kirk Baboucarr W Mbai
Cloud Data platform (Cloud Application Development & Deployment)
Windows Azure Migrating SQL Server Workloads
Introduction to windows azure: windows azure, sql azure and app fabric
Design and Implement Cloud Data Platform Solutions
Acutelearn Amazon Web Services Training Classroom Training Instructor led trainings at Acutelearn premises Corporate Training Custom tailored trainings.
AWS. Introduction AWS launched in 2006 from the internal infrastructure that Amazon.com built to handle its online retail operations. AWS was one of the.
Fast Start for Microsoft Azure – SQL Server IaaS Workshop
Cloudy with a Chance of Data
Network Services, Cloud Computing, and Virtualization
Azure Infrastructure as a Service
Business Continuity & Disaster Recovery
Azure and SQL Server: Getting the best out of the cloud
Introduction to Azure SQL Database
GROUP 2 Cloud Computing Abdoul Karim Dolo Gary Kirk Baboucarr W Mbai
CloudSimplified.IO.
Cloudy with a Chance of Data
What Azure have to offer for your data
Outline Virtualization Cloud Computing Microsoft Azure Platform
Emerging technologies-
5 Azure Services Every .NET Developer Needs to Know
Windows Azure Hybrid Architectures and Patterns
Azure Data Storage Options
Microsoft Virtual Academy
Managing Data in the Cloud
Microsoft Azure Services Platform
06 | SQL Server and the Cloud
The Database World of Azure
Presentation transcript:

MS AZURE By Sauras Pandey

Cloud Public cloud Public clouds are owned and operated by a third-party cloud service providers, which deliver their computing resources like servers and storage over the Internet. Microsoft Azure is an example of a public cloud. With a public cloud, all hardware, software and other supporting infrastructure is owned and managed by the cloud provider. You access these services and manage your account using a web browser. Private cloud A private cloud refers to cloud computing resources used exclusively by a single business or organization. A private cloud can be physically located on the company’s on-site datacenter. Some companies also pay third-party service providers to host their private cloud. A private cloud is one in which the services and infrastructure are maintained on a private network. Hybrid cloud Hybrid clouds combine public and private clouds, bound together by technology that allows data and applications to be shared between them. By allowing data and applications to move between private and public clouds, a hybrid cloud gives your business greater flexibility, more deployment options and helps optimize your existing infrastructure, security and compliance.

SAAS, PAAS, IAAS

DEMO Free Subscription Resource Group SQL Server SQL Database Service Tier

DTU and eDTU Database Transaction Unit/Elastic Database Transaction Unit https://docs.microsoft.com/en-us/azure/sql-database/sql-database-service- tiers-dtu https://dtucalculator.azurewebsites.net/ https://azure.Microsoft.com/en-us/pricing/calculator/

DEMO Storage Accounts Backup and Restore(Import/Export) On Premise to Azure migration Geo-Replication Database Sync AlwaysOn

USE MASTER GO CREATE CREDENTIAL AzureStorage --Storage Name WITH IDENTITY='', --Key here SECRET='' Create database AzureBackupDemo BACKUP Database AzureBackupDemo TO URL=N'Container-URL/AzureBackupDemo_20181014.bak' WITH CREDENTIAL='AzureStorage'

Azure Storage Azure Blob Storage Blog Storage is basically storage for unstructured data that can include pictures, videos, music files, documents, raw data, and log data…along with their meta-data. Blobs are stored in a directory-like structure called a “container”. If you are familiar with AWS S3, containers work much the same way as S3 buckets. You can store any number of blob files up to a total size of 500 TB and, like S3, you can also apply security policies. Blob storage can also be used for data or device backup. Blob Storage service comes with three types of blobs: block blobs, append blobs and page blobs. You can use block blobs for documents, image files, and video file storage. Append blobs are similar to block blobs, but are more often used for append operations like logging. Page blobs are used for objects meant for frequent read-write operations. Page blobs are therefore used in Azure VMs to store OS and data disks. To access a blob from storage, the URI should be: http://<storage-account-name>.blob.core.windows.net/<container-name>/<blob-name>

Azure Table Storage Table storage, as the name indicates, is preferred for tabular data, which is ideal for key-value NoSQL data storage. Table Storage is massively scalable and extremely easy to use. Like other NoSQL data stores, it is schema-less and accessed via a REST API. A query to table storage might look like this: http://<storage account>.table.core.windows.net/<table> Azure File Storage Azure File Storage is meant for legacy applications. Azure VMs and services share their data via mounted file shares, while on premise applications access the files using the File Service REST API. Azure File Storage offers file shares in the cloud using the standard SMB protocol and supports both SMB 3.0 and SMB 2.1.

Azure Queue Storage The Queue Storage service is used to exchange messages between components either in the cloud or on-premise (compare to Amazon’s SQS). You can store large numbers of messages to be shared between independent components of applications and communicated asynchronously via HTTP or HTTPS. Typical use cases of Queue Storage include processing backlog messages or exchanging messages between Azure Web roles and Worker roles. A query to Queue Storage might look like this: http://<account>.queue.core.windows.net/<file_to_download>

Follow Me https://www.facebook.com/sqldepository/ Sqldepository.com sqldepository@gmail.com

NEXT SESSION Elastic Pool Automatic tuning IPv4 Private and Public IPs Subnet VPN AD Domain Name AZURE AD Domain Service Cosmos DB

Thank you