Windows Azure SQL Database

Technical Article

Introduction to Azure SQL Database Scalability

  • Article

One of the primary advantages of Platform-as-a-Service solutions offered by Microsoft Azure is the ease with which scaling can be implemented. While SQL Database facilitates both vertical and horizontal scaling approaches, scaling it out is considerably more challenging. In this article, we will provide a high-level overview of both vertical and horizontal scaling methods available with Azure SQL Database.

You rated this post out of 5. Change rating

2014-12-17

8,467 reads

Technical Article

Management of Windows Azure SQL Databases via PowerShell with REST APIs

  • Article

Management of Azure SQL Databases has been greatly simplified by the introduction of the Azure PowerShell module. Marcin Policht describes the principles of dealing with the Azure PowerShell module’s REST APIs directly.

You rated this post out of 5. Change rating

2014-08-22

8,728 reads

Technical Article

Microsoft Azure SQL Database Security - Firewall Configuration

  • Article

Marcin Policht reviews security related challenges of Microsoft Azure Software as a Service-based SQL Database, focusing in particular on the SQL Server and database-level firewall access control functionality and methods that can be employed to implement it.

You rated this post out of 5. Change rating

2014-04-22

3,521 reads

Technical Article

Windows Azure SQL Database - Uploading Data by Using the bcp Utility

  • Article

Instead of using a custom SSIS-based project to upload content from an on-premise SQL Server database to Azure PaaS-based SQL Database, Marcin Policht presents an alternative approach. Using the bcp utility not only eliminates the need for any custom development, but also rivals SSIS in terms of its data transfer efficiency.

You rated this post out of 5. Change rating

2014-03-17

3,582 reads

Technical Article

Windows Azure SQL Database - Uploading Data by using SQL Server Integration Services

  • Article

Recently we presented a procedure for uploading data to a Windows Azure SQL Database from an on-premise SQL Server instance. Today we will accomplish the same objective by employing a more traditional approach to data extraction, transformation, and loading (ETL) that relies on SQL Server Integration Services (SSIS).

You rated this post out of 5. Change rating

2014-02-18

3,765 reads

Technical Article

Migrating SQL Server Database to Windows Azure - Deploying SQL Database

  • Article

There are a few challenges associated with deployments of data services in Windows Azure, focusing in particular on SQL Database. In this article we turn our attention to an actual deployment and migration of locally stored data to SQL Database.

You rated this post out of 5. Change rating

2013-12-30

3,822 reads

Technical Article

Migrating SQL Server Database to Windows Azure - Resolving Incompatibility Issues

  • Article

In this series on implementing data services in Azure, Marcin Policht turns his attention to the remediation of incompatibilities resulting from of limitations inherent to Platform as a Service (PaaS) based deployments, which will need to be addressed as part of the migration process.

You rated this post out of 5. Change rating

2013-11-21

3,052 reads

Blogs

T-SQL Tuesday #201 - Temp Tables, Friend or Foe?

By

T-SQL Tuesday is a monthly blog party hosted by a different community member each...

Excellent article on securing msdb

By

Fabiano Amorim has written an excellent article at Simple Talk on securing msdb. Here's...

T-SQL Tuesday #201: Temp Tables

By

This month we have a new host, which I am grateful for. So many...

Read the latest Blogs

Forums

Partitioning a table with TEXTIMAGE_ON option

By Brandie Tarvin

I have a table that ends in ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]. I'm about to...

ALAMAT BCA KCU TULUNGAGUNG Hub 082225313145

By m4l4mt194

WA CS 082225313145 WWH2+WP2, Jl. Pangeran Diponegoro No.54, Tamanan, Kec. Tulungagung, Kabupaten Tulungagung, Jawa...

OUTER APPLY Fundamentals: Part 2

By Imran2629

Comments posted to this topic are about the item OUTER APPLY Fundamentals: Part 2

Visit the forum

Question of the Day

The Range of Customers

I have this data in the OrderHeader table in a SQL Server 2025 database (ordered by CustomerID ASC):

orderid orderdate               customerid complete
3       2025-05-10 00:00:00.0002          1
21      2024-01-10 00:00:00.0003          1
15      2023-10-28 00:00:00.0004   1
13      2025-03-08 00:00:00.0006          1
11      2024-04-02 00:00:00.0007          1
If I run this query, how many rows are returned?
SELECT *
 from dbo.OrderHeader
 where customerid between 3 and '6'

See possible answers