Microsoft Azure Introduction ISYS 512. Microsoft Azure Microsoft Azure is a cloud.

Slides:



Advertisements
Similar presentations
Microsoft ® Office OneNote ® 2007 Training Using your Notebook to its fullest potential Kent School District presents:
Advertisements

Stored procedures and views You can see definitions for stored procedures and views in the demo databases but you can’t change them. For views, expand.
Microsoft Dynamics AX Technical Conference 2013
Page 1 Ricardo Villalobos Windows Azure Architect Evangelist Microsoft Corporation Designing, Building, and Deploying Windows Azure applications.
3 TIME IT CAPACITY Actual Load Allocated IT-capacities Too Much Power Not Enough Power Load Forecast.
Overview Of Microsoft New Technology ENTER. Processing....
Performed by:Gidi Getter Svetlana Klinovsky Supervised by:Viktor Kulikov 08/03/2009.
IS 118 Introduction to Development Tools Week 1. Things to Cover UCID WebCT AFS Visual Basic.net Running PHP.
Paul Yuknewicz Principal Group PM Manager What's New for Azure Developers Azure SDK 2.5 Visual Studio 2015.
The Cloud for Modern WakeUpAndCode.com.
Sql Server Advanced Features MIS 424 Professor Sandvig.
.NET, Visual Studio, TFS + Git | Java, NodeJS, PHP, Python, Ruby, C++ Data SQL Databases NoSQL Tables Blob Storage HDInsight Window s Azure IaaS +
Cross Platform Mobile Backend with Mobile Services James
Randy Pagels, Developer Technology Specialist Microsoft Corporation Dev & Test in the Cloud.
Lecture 8 – Platform as a Service. Introduction We have discussed the SPI model of Cloud Computing – IaaS – PaaS – SaaS.
Session 5: Working with MySQL iNET Academy Open Source Web Development.
ISYS 512 Business Application Design and Development with.Net David Chao.
CPSC203 Introduction to Computers Lab 69 By Jie Gao.
Windows Azure Tour Benjamin Day Benjamin Day Consulting, Inc.
Windows Azure Insights for the Enterprise IT Pro John Craddock Infrastructure and Identity Architect XTSeminars AZR301.
Creating a Web Site to Gather Data and Conduct Research.
Windows Azure: Microsoft’s Cloud Platform By Shahed Chowdhuri.
Introduction to Windows Azure BUGAEV ROMAN. Azure Windows Azure Platform is thus classified as platform as a service and forms part of Microsoft's cloud.
Windows Azure Conference 2014 Deploy your Java workloads on Windows Azure.
COMP3121 E-Commerce Technologies Richard Henson University of Worcester November 2011.
1 Working with MS SQL Server Textbook Chapter 14.
C# Tutorial -1 ASP.NET Web Application with Visual Studio 2005.
BIT 285: ( Web) Application Programming Lecture 15: Tuesday, February 24, 2015 Microsoft Azure Instructor: Craig Duckett.
Windows Azure. Azure Application platform for the public cloud. Windows Azure is an operating system You can: – build a web application that runs.
Microsoft Public Cloud Services
Agenda for Class 2/20/2014 Introduce Microsoft’s SQL Server database management system. Use the lab to discuss how to CREATE, DROP and populate (INSERT)
Using ADO.Net to Build a Login System Dr. Ron Eaglin.
Configuring and Deploying Web Applications Lesson 7.
Azure databases 1. Azure storage possibilities Azure offers several storage possibilities Microsoft SQL Server database MySQL database Azure Document.
Microsoft Cloud Solution.  What is the cloud?  Windows Azure  What services does it offer?  How does it all work?  How to go about using it  Further.
1 Connecting to a Database Server. 2 We all have accounts, with a single database each, on a Microsoft SQL Server on the USF network: allman.forest.usf.edu.
Introduction to ADO.Net and Visual Studio Database Tools ISYS 350.
Cloud-Ready Data Services. cloud data services.
PowerPoint Instructions These are not native PowerPoint objects. They are PNG objects. To change the color, you need to go to the Format Tab.
SQL Server 2012 Session: 1 Session: 4 SQL Azure Data Management Using Microsoft SQL Server.
Robert Potočnik, Microsoft Pripeljite košček Azure sveta v vaš datacenter (WAP)
Bellevue College Workshop Azure Storage & SQL Mohamed El Hassouni Hans Olav Norheim.
Introduction to SQL Server  Working with MS SQL Server and SQL Server Management Studio.
Andy Roberts Data Architect
Bellevue College Cloud Workshops Try: Cloud services Friday, May 6, 2016 Azure Introduction Fawad Khan.
Agility Dev TestDeploy Learn Agility.
WINDOWS AZURE AND THE HYBRID CLOUD. Hybrid Concepts and Cloud Services.
Deploy ASP.NET. ASP.NET - publishing  VS supports app publishing directly from IDE  Several possibilities exists for Web apps – FTP, file system, Front.
Microsoft Build /28/2017 9:50 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Cloud Computing Cosa, come e perché? Giancarlo Lelli Microsoft MVP – Avanade
How To Start a SQL server Connecting to SQL Server.
Clouding with Microsoft Azure
Mobile Application Solution
Instructor: Craig Duckett SQL SERVER WALK-THROUGH LAB 13
1/27/2018 5:13 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Deploying Web Application
Developing Hybrid Apps on Microsoft Azure Stack
Part 1 of 2 Creating SQL Database and Binding to GridView
Jon Galloway | Tech Evangelist Christopher Harrison | Head Geek
Mobile Application Solution
Services Course 9/9/2018 3:37 PM Services Course Windows Live SkyDrive Participant Guide © 2008 Microsoft Corporation. All rights reserved.
Relational databases, and more …
Cloudy with a Chance of Data
Modern cloud PaaS for mobile apps, web sites, API's and business logic apps
Microsoft Connect /17/2019 9:55 PM
Microsoft Virtual Academy
Ch 1 .Installing and configuring SQL Server 2005
Cloudy with a Chance of Data
Microsoft Azure Services Platform
Presentation transcript:

Microsoft Azure Introduction ISYS 512

Microsoft Azure Microsoft Azure is a cloud computing platform and infrastructure, created by Microsoft, for building, deploying and managing applications and services through a global network of Microsoft- managed datacenters. It provides both PaaS and IaaS services and supports many different programming languages, tools and frameworks.

Working with Microsoft Azure Local development environment Visual Studio Azure SDK for Visual Studio. Download Azure SDK for.Net from this website: Azure Management Portal Visual Studio Online (a paid service) Azure components

The Components of Azure us/documentation/articles/fundamentals-introduction-to-azure/ 1. Compute: Virtual machine Website cloud service

The Components of Azure 2. Data Management: Azure SQL Database Storage Tables: Azure Tables provides a flat NoSQL way to store data. Azure Blobs

The Components of Azure 3. Mobile Services: store data in the cloud authenticate users send push notifications

The Components of Azure 4. Big Data: HDInsight (Hadoop) High-Performance Computing (Big Compute) 5. Others

Creating an Azure Account 1. Sign up for a Microsoft account. This is a regular Microsoft account and you can use any of your as user name Visit this page: 3. Select the country and enter your code. 4. Click Submit. This will open a page with a Sign In button. 5. Click Sign In button and sign in with your Microsoft account 6. Complete some requested info to complete the registration.

Azure Management Portal Demo Azure Website: Account Portal

Creating a New Storage Account Click Storage, then click New Assign a name Choose a server location: West USA

Creating a SQL Server Database ( You need to create a SQL server username and password) Click SQL Databases, then click New Assign a database name Choose a server Click Manage to open the database: Login to the SQL Server with user name and password Select Design to define the tables Click Save to save the design Enter data: Click New Query Enter an SQL Insert Into statement Click Run

Visual Studio 2013 Tools for Azure Server Explorer Windows Azure Connecting to Azure: Right Click Windows Azure, then select Connect to Windows Azure Windows Azure: Storage SQL Databases SQL Server Object Explorer Right Click SQL Server and select Add SQL Server Select the server Login with user name and password

Example: Add a Foreign Key Constraint to CID Field of the Orders table Select Orders table, then right click and select View Designer Add the foreign key constraint to the CID field: references dbo.customer (CID)

Demo: Creating a website with a page to show customer records with a dataGrid view. New Project Visual C#/ Web/ASP.Net Web Application Select a template: Empty Check: Web Forms, and check Create remote resources Project/Add New Item to add a web form. Open SQL Server Explorer and Add Server Add a connection using server Explorer Drag and Drop table from the Connection to the webform Test run Project/Publish