Customer Roadblocks to Azure
When I speak with customers, I often find they share common roadblocks to using Azure. I recently sat down with...
2018-09-13
699 reads
When I speak with customers, I often find they share common roadblocks to using Azure. I recently sat down with...
2018-09-13
699 reads
There’s a lot of talk about storage options. When working with customers, I often introduce them to Azure through storage,...
2018-09-12
717 reads
Data Security. These words are in the forefront of many people’s minds and just hearing them may bring on an...
2018-09-11
150 reads
In today’s segment of Azure Every Day, I’d like to talk about Azure Data Warehouse and to help you understand...
2018-09-07
652 reads
There are multiple ways to allow external access to Azure storage accounts, some better (and more secure) than others. Today,...
2018-09-07
340 reads
You know the talk out there, everyone is moving to the cloud and people are looking at Azure to get...
2018-09-06
282 reads
There are many advantages to using Microsoft Azure. One big reason people look at Azure is the ability to separate...
2018-09-04
400 reads
When Azure Resource Manager (ARM) was created back in 2014, I (like many) thought, “What does that mean?” Up until...
2018-08-30
304 reads
So, your boss says, ‘Let’s do big data!’ And you think: ‘I don’t even know what that means or what...
2018-08-29
978 reads
Azure accounts vs. Azure subscriptions – often a topic that brings some confusion to Azure newbies. Are they the same? What’s...
2018-08-28
205 reads
By Brian Kelley
But as I've matured over the years, I came to realize that I needed...
By alevyinroc
I will be presenting my latest session, Documenting Your Work for Worry-Free Vacations, in-person...
By Steve Jones
I saw a question asking about the next sequence value and decided to try...
I've read a few posts regarding what we use to design DB models and...
I've got a table with 186,703,969 rows, about 300GB of data. There are several...
I created a SQL Database in Azure Portal but I've just noticed it also...
What values are returned when I run this code?
CREATE TABLE dbo.IdentityTest2
(
id NUMERIC(10,0) IDENTITY(10,10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
INSERT dbo.IdentityTest2
(
somevalue
)
VALUES
( 'Steve')
, ('Bill')
GO
SELECT top 10
id
FROM dbo.IdentityTest2 See possible answers