Microsoft Windows Azure SQL Database extends SQL Server capabilities to the cloud. SQL Database offers a relational database service called Microsoft SQL Database, and using Windows Azure SQL Database, you can easily provision and deploy relational database solutions. Benefits include manageability, high availability, scalability, a familiar development model, and a relational data model.

SQL Database is the relational database service on the Windows Azure platform. For more information about the Windows Azure platform, see What is the Windows Azure Platform.

In This Section

Topic Description

What's New in Windows Azure SQL Database (formerly SQL Azure)

Describes the features that have been added to the current release of SQL Database.

Backward Compatibility in Windows Azure SQL Database (formerly SQL Azure)

Describes backward compatibility information for SQL Database deprecated features, discontinued features, breaking changes, and behavior changes.

Known Issues in Windows Azure SQL Database

Describes known issues that you may encounter when using SQL Database.

Introducing Windows Azure SQL Database

Provides an overview and describes the key benefits of the service.

Tutorials

Contains tutorials that will help you learn how to use specific features of SQL Database.

Feedback and Community Information (Windows Azure SQL Database)

Describes how you can share your comments and how you can find community information on SQL Database.

Windows Azure Platform Management Portal

Contains introductory information on the Windows Azure Platform Management Portal and Management Portal for SQL Database.

Windows Azure SQL Database Concepts

Describes what SQL Database is and how it works.

Administration (Windows Azure SQL Database)

Describes the SQL Database firewall and common administration tasks including:

  • Managing and migrating databases
  • Copying databases in SQL Database
  • Monitoring and troubleshooting SQL Database

Development (Windows Azure SQL Database)

Provides information on how to develop applications on SQL Database.

Guidelines and Limitations (Windows Azure SQL Database)

Describes the requirements and limitations that are important to consider when using SQL Database.

Management REST API Reference

This reference provides information for working with the SQL Database Management API to programmatically manage SQL Database servers and server-level firewall rules.

Transact-SQL Reference (Windows Azure SQL Database)

Provides reference documentation describing the Transact-SQL that is supported in SQL Database.

Errors and Exceptions Reference (Windows Azure SQL Database)

[Windows Azure] Windows Azure SQL Database library的更多相关文章

  1. How to Use Lucene.NET with Windows Azure SQL Database

    http://social.technet.microsoft.com/wiki/contents/articles/2367.how-to-use-lucene-net-with-windows-a ...

  2. [转]Azure 表存储和 Windows Azure SQL Database - 比较与对照

    本文转自:https://msdn.microsoft.com/library/azure/jj553018 更新时间: 2014年10月 作者:Valery Mizonov 和 Seth Manhe ...

  3. 使用SQL Database Migration Wizard把SQL Server 2008迁移到Windows Azure SQL Database

    本篇体验使用SQL Database Migration Wizard(SQLAzureMW)将SQL Server 2008数据库迁移到 Azure SQL Database.当然,SQLAzure ...

  4. [Windows Azure] Windows Azure Storage & SQL Database

    http://channel9.msdn.com/Series/Windows-Azure-Storage-SQL-Database-Tutorials Windows Azure offers mu ...

  5. [Windows Azure] How to Scale a SQL Database Solution

    How to Scale a SQL Database Solution On Windows Azure, database scalability is synonymous with scale ...

  6. [Windows Azure] Monitoring SQL Database Using Dynamic Management Views

    Monitoring Windows Azure SQL Database Using Dynamic Management Views 5 out of 7 rated this helpful - ...

  7. [Windows Azure] Managing SQL Database using SQL Server Management Studio

    Managing Windows Azure SQL Database using SQL Server Management Studio You can use Windows Azure SQL ...

  8. [Windows Azure] How to Create and Configure SQL Database

    How to Create and Configure SQL Database In this topic, you'll step through logical server creation ...

  9. [Windows Azure] Guidelines for Connecting to Windows Azure SQL Database

    Guidelines for Connecting to Windows Azure SQL Database 6 out of 12 rated this helpful - Rate this t ...

随机推荐

  1. Windows2008|2003超出最大连接数

    问题描述: 终端服务器超出最大允许连接数的解决方法 00.以管理员回话形式登录(本质踢掉他人) mstsc  /v:IP  /console mstsc /admin /v:ip mstsc /con ...

  2. Python-Flask实现电影系统管理后台

    代码地址如下:http://www.demodashi.com/demo/14850.html 项目描述 该项目实现电影系统的后台接口,包括用户,电影,场次,订单,评论,优惠券,推荐,收藏等多个模块, ...

  3. C++基础学习教程(六)----类编写的前情回想以及项目实战(1)

    在開始类的编写之前我们依旧须要回想整理一下前面所说的内容,(前面尽管是一个自己定义数据类型的实现过程,可是内容有点繁杂). 先看一段代码: /** @file calssStruct.cpp */ / ...

  4. jquery.uploadify 在firefox会出现httperror

    原来是因为我的上传处理页面的page 继承了一个基类影响到的 然后这个基类 好像是因为在别的项目里面的原因 希望对也遇到这样的问题的人有帮助咯

  5. Scala学习网址

    scala学习网址为:https://twitter.github.io/scala_school/zh_cn https://www.zhihu.com/question/26707124

  6. golang学习笔记 ---面向并发的内存模型

    Go语言是基于消息并发模型的集大成者,它将基于CSP模型的并发编程内置到了语言中,通过一个go关键字就可以轻易地启动一个Goroutine,与Erlang不同的是Go语言的Goroutine之间是共享 ...

  7. Python ---chart

    # -*- coding:utf-8 -*- import random import matplotlib.pyplot as plt from pylab import * import os i ...

  8. python中数组与多维数组用法介绍

    增加时a.append( 'a ')就可以了.只要按顺序加,就没有问题 . 使用时,完全可以使用下标: 代码如下 复制代码 a[0] a[1] 但出果引用不存在的下标,则会引发异常.这时,你需要先添加 ...

  9. Java 利用 poi 生成 Excel文件的通用例子

    在用java 写数据库应用的时候, 通常会生成各种报表,而这些报表可能会被导出为各种格式的文件,比如Excel文档,pdf 文档等等. 今天先做了一个生成Excel 文档的例子,主要解决以下问题: 生 ...

  10. 温故而知新:柯里化 与 bind() 的认知

    什么是柯里化?科里化是把一个多参数函数转化为一个嵌套的一元函数的过程.(简单的说就是将函数的参数,变为多次入参) const curry = (fn, ...args) => fn.length ...