Presenting at SQL Saturday 119 Chicago!
First thing in the morning Saturday May 19th:
I will be presenting with my colleague from House of Brick David Klee...
2012-05-02
554 reads
First thing in the morning Saturday May 19th:
I will be presenting with my colleague from House of Brick David Klee...
2012-05-02
554 reads
A couple of different events going on today and tomorrow:
Today (03/20) at 3pm CDT - "Choose Your Own Adventure: Performance Tuning"...
2012-03-20
476 reads
I am currently working on some client servers to upgrade multiple SQL 2008 R2 Express instances to 2008 R2 Standard. ...
2012-03-16
637 reads
It's T-SQL Tuesday again, and this month Argenis Fernandez (@DBArgenis/Blog) is hosting with the topic of "Jack of All Trades,...
2012-03-13
949 reads
While writing my last post on cleaning up old maintenance plans, I was reminded of something I heard in a...
2012-03-12
2,544 reads
This is something I trip over every now and then on systems we inherit from our clients, and I thought...
2012-03-12
580 reads
The buzz started yesterday, with the rumblings about Database Mirroring showing up on the "Features Not Supported in a Future...
2012-03-09
905 reads
From the newly released SQL 2012 Books Online documentation:
This note shows that as of SQL Server 2012, which will be...
2012-03-09
2,977 reads
I have inherited a SQL 2005 server with SQL Agent job notifications in place, and a request to clear the...
2012-03-02
869 reads
As I noted in my last post, I am currently on a project to review some older servers (SQL 2000...
2012-02-16
704 reads
Setting page visibility and the active page are often overlooked last steps when publishing...
By Steve Jones
It’s time for T-SQL Tuesday again and this time Todd Kleinhans has a great...
By Steve Jones
Recently I was working in VS Code and I saw a walkthrough for the...
Comments posted to this topic are about the item Password Guidance
Comments posted to this topic are about the item Using table variables in T-SQL
I am trying to check out elastic query between two test instances we have...
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers