HA and DR Precon in Baton Rouge
I’ll be doing a precon for SQLSaturday #324 in Baton Rouge Louisiana on August 1st, 2014 titled “A Day of...
2014-06-30
980 reads
I’ll be doing a precon for SQLSaturday #324 in Baton Rouge Louisiana on August 1st, 2014 titled “A Day of...
2014-06-30
980 reads
I am excited and humbled to be speaking at the PASS Summit for my second year in a row! There...
2014-06-27
1,156 reads
The Kerberos Configuration Manager is a really handy tool that can make configuring Kerberos a much easier task, but it’s...
2014-06-17
3,096 reads
I’m officially on the slate and running for the PASS 2014 Nomination Committee!
Why should you vote for Ryan?
I love the PASS...
2014-06-02
612 reads
I ran into an interesting issue while installing SQL 2012 SP1 in a failover cluster configuration and utilizing the local...
2014-05-08
846 reads
This post has been sitting in the draft folder for way too long, March of last year to be precise....
2014-03-11
1,760 reads
I’ve had several instances over the last few months where I had to reinstall the SQL Server Performance Counters. It...
2014-03-04 (first published: 2014-02-25)
4,472 reads
I ran across an issue that I haven’t seen since SQL 2000 and had almost forgotten about. Let’s do a...
2014-03-03
1,257 reads
A fellow community member sent me an email saying he was having trouble authenticating with Kerberos. Here is the error...
2014-02-26 (first published: 2014-02-18)
3,922 reads
At a conference recently I had someone ask how they would configure Kerberos for accounts that look like “NT Service\MSSQLServer”...
2014-02-18 (first published: 2014-02-10)
5,820 reads
I thought I didn’t care about linting, and lately, I haven’t written a lot...
Want to blend your love of marketing with the power of data? Becoming a...
I live for questions and this was an interesting one. Can you see Table...
Comments posted to this topic are about the item Dynamic T-SQL Script Parameterization Using...
Hi everyone, I’ve been tasked with migrating a Standalone SQL Server instance to a...
I am able to successfully create managed identity on Azure SQLMI & Azure...
What is returned when I run this code in SQL Server 2022?
CREATE TABLE CatIndex ( indexval VARCHAR(20) ) GO INSERT dbo.CatIndex (indexval) VALUES ('1'), ('2'), ('3') GO SELECT CHOOSE(indexval, cast('2025-01-01' AS DATE), CAST('2025-02-01' AS DATE), CAST('2025-03-01' AS DATE)) FROM dbo.CatIndex AS ciSee possible answers