SQL PASS 2011 Session and Pre Con
Yesterday I was thrilled to find out that my session "Common Analysis Services Design Mistakes and How to Avoid Them"...
2011-06-16
689 reads
Yesterday I was thrilled to find out that my session "Common Analysis Services Design Mistakes and How to Avoid Them"...
2011-06-16
689 reads
It’s been a busy couple of weeks for SQL Server community and PASS related news.
First and probably most importantly is...
2011-06-16
752 reads
It’s been a busy couple of weeks for SQL Server community and PASS related news.
First and probably most importantly is...
2011-06-16
650 reads
I took a vacation recently (well, a really long weekend) and as I like to do, visited a few book...
2011-06-16
672 reads
All ColoradoSQL user group meetings start at 5:30 and provide food and refreshments. There is no cost to attend so...
2011-06-15
901 reads
Update:
After all of this SMO stuff failed (changing the permission set to unsafe got around the security exception, but instead...
2011-06-15
1,484 reads
Microsoft has just released a new SSIS transform, called the SSIS Balanced Data Distributor (BDD). You can download it here.
This...
2011-06-15
1,355 reads
From time to time I get asked about how PASS Board members are compensated, so I thought it would make...
2011-06-15
688 reads
Ever looked at an execution plan? If you answered no, you can’t possibly have ever tried to tune a query,...
2011-06-15
4,954 reads
I submitted three sessions to the 2011 Summit for consideration and I heard today that two of them were accepted,...
2011-06-15
728 reads
By Steve Jones
We have multiple teams (8) working on Redgate Monitor. Some work on the Standard...
By HeyMo0sh
Learning any kind of theory is easy, but adapting FinOps and watching it rescue...
By Vinay Thakur
As discussed introduction of Always Encryption blog and initial Encryption at rest as TDE...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item The Problem Isn't Always Your...
Comments posted to this topic are about the item Identity Defaults
What happens when I run this code?
CREATE TABLE dbo.IdentityTest
(
id int IDENTITY(10) PRIMARY KEY,
somevalue VARCHAR(20)
)
GO
See possible answers