Relational databases, and more …

Slides:



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

Microsoft SQL Server 2008 From the Program menu choose: Microsoft SQL Server 2008 R2  SQL Server Management Studio. You may see a window indicating the.
Emmanuel Mesas Microsoft Western Europe Leverage Azure Services & Platform with Existing Application.
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.
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.
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.
Windows Azure Tour Benjamin Day Benjamin Day Consulting, Inc.
Secure ASP.NET MVC5 Application with Asp.Net Identity Changde Wu Self Introduction Professional.NET Developer in greater Boston area Specialized in WPF.
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.
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.
All information's of PLINQO in this Document, I got it from: So, you could visit the link above to research.
Azure databases 1. Azure storage possibilities Azure offers several storage possibilities Microsoft SQL Server database MySQL database Azure Document.
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.
شعار الشركة Ms SQL Server 2008 Express Edition. SQL Server Management Studio 2008 When we open the SQL server management studio this window are seen:
PowerPoint Instructions These are not native PowerPoint objects. They are PNG objects. To change the color, you need to go to the Format Tab.
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
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.
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.
ASP.NET Core* Shahed Chowdhuri Sr. Technical WakeUpAndCode.com Deploying Your Web Apps * aka ASP.NET 5 before RC1.
當 Java 遇上 DevOps 黃忠成. Java In Azure Storage Table Storage Services NoSQL base storage Fast and Easy to use Blob Storage Services File Storage (photo,
IST VLabs Tutorial Fall 2010 Dongwon Lee, Ph.D..
DBMS Programs MS SQL Server & MySQL
OMS Administration Marie SHAH 02/12/2016.
Deploying Web Application
Visual Studio Database Tools (aka SQL Server Data Tools)
Data Platform and Analytics Foundational Training
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
Azure IaaS 101.
Azure Machine Learning & ML Studio
Reliable Services Jeffrey Richter Microsoft Azure Service Fabric.
02 | Hosting Services in Windows Azure
Lecturer: Yong Liu Contact me at:
12/5/ :36 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
microsoft cloud platform: enterprise-class architecture
Chapter 15 Introduction to Rails.
Jim Nakashima Program Manager Cloud Tools
Migrating your applications to Azure
Azure Cosmos DB with SQL API .Net SDK
INFO 344 Web Tools And Development
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
Azure Storage Microsoft Research.
Boston Code Camp – April 2019 Jason Haley
ZORAN BARAC DATA ARCHITECT at CIN7
Server & Tools Business
CS4540 Special Topics in Web Development SQL and MS SQL
Microsoft Azure Services Platform
SQL Azure to .NET Developers
Presentation transcript:

Relational databases, and more … Azure storage Relational databases, and more … Azure storage

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

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 1443. At home: Open this port in your firewall At school: Use the network EGV5-DMU Not necessary any more: Port 1443 should be open i the schools network Create tables etc in Visual Studio and Press the ”Update” button to deploy your table to Azure Azure storage

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 storage

Work from Visual Studio Port 1443 must be open for access 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 storage

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 storage

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 storage

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