Azure databases 1. Azure storage possibilities Azure offers several storage possibilities Microsoft SQL Server database MySQL database Azure Document.

Slides:



Advertisements
Similar presentations
WEB AND WIRELESS AUTOMATION connecting people and processes InduSoft Web Solution Welcome.
Advertisements

WaveMaker Visual AJAX Studio 4.0 Training
Emmanuel Mesas Microsoft Western Europe Leverage Azure Services & Platform with Existing Application.
Azure Services Platform Piotr Zierhoffer. Agenda Cloud? What is Azure? Environment Basic glossary Architecture Element description Deployment.
Overview Of Microsoft New Technology ENTER. Processing....
Part 05 – Code First Migrations and Azure Deployment Entity Framework and MVC Series Tom Perkins NTPCUG.
Securing Enterprise Applications Rich Cole. Agenda Sample Enterprise Architecture Sample Enterprise Architecture Example of how University Apps uses Defense.
Chapter 7 Managing Data Sources. ASP.NET 2.0, Third Edition2.
Using T-sql scripts. Migrating Sql Database to SQL Azure Database Create the Test Database In SQL Server Management Studio, on the File menu, point to.
Cross Platform Mobile Backend with Mobile Services James
Partner Practice Enablement - Overview This session will focus on integration strategies for applications deployed using Microsoft Azure Websites and Microsoft.
1 Working with MS SQL Server. 2 Objectives You will be able to Use Visual Studio for GUI based interactive access to a Microsoft SQL Server database.
Overview of SQL Server Alka Arora.
Microsoft Azure Introduction ISYS 512. Microsoft Azure Microsoft Azure is a cloud.
Migrating Business Apps to Windows Azure Marc Müller Principal Consultant, 4tecture GmbH
Getting Started with Windows Azure Name Title Microsoft Corporation.
Ruby on Rails & Windows sriramkrishnan.com.
Windows Azure Tour Benjamin Day Benjamin Day Consulting, Inc.
Tom Castiglia Hershey Technologies
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.
2. Introduction to the Visual Studio.NET IDE. Chapter Outline Overview of the Visual Studio.NET IDE Overview of the Visual Studio.NET IDE Menu Bar and.
Partner Practice Enablement - Overview This session will focus on integration strategies for applications deployed using Microsoft Azure Websites and Microsoft.
1 Data Bound Controls II Chapter Objectives You will be able to Use a Data Source control to get data from a SQL database and make it available.
1 Working with MS SQL Server Textbook Chapter 14.
© FPT SOFTWARE – TRAINING MATERIAL – Internal use 04e-BM/NS/HDCV/FSOFT v2/3 Working with MSSQL Server Code:G0-C# Version: 1.0 Author: Pham Trung Hai CTD.
Copyright 2008 Judith A Copeland - Accessing The Database By Judi Copeland.
ASP.NET The Clock Project. The ASP.NET Clock Project The ASP.NET Clock Project is the topic of Chapter 23. By completing the clock project, you will learn.
Azure Services Platform Update James Conard Sr. Director Developer & Platform Evangelism Microsoft Corporation.
Lugano Microsoft Azure Overview Ken Casada Technical Evangelist Microsoft Switzerland
BIT 285: ( Web) Application Programming Lecture 15: Tuesday, February 24, 2015 Microsoft Azure Instructor: Craig Duckett.
Introduction to MVC Introduction NTPCUG Tom Perkins, Ph.D.
INFO 344 Web Tools And Development CK Wang University of Washington Spring 2014.
All information's of PLINQO in this Document, I got it from: So, you could visit the link above to research.
Welcome to Azure App Services! Amie Seisay
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.
Entity Framework Database Connection with ASP Notes from started/getting-started-with-ef-using-mvc/creating-an-
Building web applications with the Windows Azure Platform Ido Flatow | Senior Architect | Sela | This session.
Bellevue College Workshop Azure Storage & SQL Mohamed El Hassouni Hans Olav Norheim.
Andy Roberts Data Architect
Copyright © New Signature Who we are: Focused on consistently delivering great customer experiences. What we do: We help you transform your business.
Windows Azure and iOS Chris Risner Windows Azure Technical Evangelist Microsoft
Azure Data Catalog and Power BI. Agenda Azure Data Catalog Overview 1 Publish a data set 2 Metadata 3 Extract and view 4 Q&A 5.
AZ PASS User Group Azure Data Factory Overview Josh Sivey, Solution Partner October
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.
Bret Stateham Owner, Net Connex blogs.netconnex.com twitter.com\bstateham.
How To Start a SQL server Connecting to SQL Server.
DBMS Programs MS SQL Server & MySQL
OMS Administration Marie SHAH 02/12/2016.
Cloud Data platform (Cloud Application Development & Deployment)
Part 1 of 2 Creating SQL Database and Binding to GridView
Jon Galloway | Tech Evangelist Christopher Harrison | Head Geek
Introduction to windows azure: windows azure, sql azure and app fabric
Reliable Services Jeffrey Richter Microsoft Azure Service Fabric.
Relational databases, and more …
02 | Hosting Services in Windows Azure
12/5/ :36 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Jim Nakashima Program Manager Cloud Tools
Migrating your applications to Azure
Microsoft Azure.
5 Azure Services Every .NET Developer Needs to Know
02 – Cloud Services Bret Stateham | Senior Technical Evangelist​
Storing and Processing Sensor Networks Data in Public Clouds
Deploy WebClient App on Microsoft Azure
SOAP web services in Microsoft Azure
CS4540 Special Topics in Web Development SQL and MS SQL
Microsoft Azure Services Platform
SQL Azure to .NET Developers
Presentation transcript:

Azure databases 1

Azure storage possibilities Azure offers several storage possibilities Microsoft SQL Server database MySQL database Azure Document DB: NoSQL database Storage BLOB: Binary Large OBjects Tables Queues: Intended for communication between services Files Azure databases2

Azure: Using SQL Server database In Azure portal make an SQL Server database Be patient … When created …. Press the ”Open in Visual Studio” button SQL Server uses TCP port At home: Open this port in your firewall At school: Use the network EGV5-DMU Create tables etc in Visual Studio and Press the ”Update” button to deploy your table to Azure Be patient … Azure databases3

Create database Cloud Explorer (Top-Left corner) SQL Databases Your database General database advices Id primary key identity Identity: The database will generate the values String-like type Nvarchar(max_length) N means Unicode Var means varying length If you need timestamps Datetime default getDate() Azure databases4

Work from Visual Studio Port 1443 must be open for access At school use the local LAN named EGV5-DMU Write some T-SQL Press the “Update” button to update the database structure Top-left corner of the SQL design pane Generates a script (with the changes) and executes the changes Take a little while Azure databases5

Connection string To connect to the cloud database from an application, you need a connection string. The connection string for your cloud database can be found i Azure portal The connection string include your database name + password The connection string can be saved in your C# code file Or in the App.config file (console app) Or in Web.config (WCF provider) Azure databases6

Web service as front-end to databases Using the database causes port problems Port 1443 must be open Usually not open in firewalls Solution: Put a web service between the application and the database The web service runs on port 80 Usually open in firewalls Azure databases7

Storage as back-end to web services Web services are stateless Storage can be used as a back-end to web services Azure databases8