Catching Up on The #SQLPASS Virtual Chapters
(Didn't realize until I was posting that this was my 100th post...whew!)
--
A few months ago we purchased a new "smart"...
2016-05-17
881 reads
(Didn't realize until I was posting that this was my 100th post...whew!)
--
A few months ago we purchased a new "smart"...
2016-05-17
881 reads
I am speaking at two different SQL Saturdays in June!
--
First up on June 4th is SQL Saturday #517 Philadelphia (#SQLSAT517)...
2016-05-12
617 reads
Microsoft dropped it on us this morning:
Get ready, SQL Server 2016 coming on June 1st
https://media.makeameme.org/created/yes-finally.jpg
I read the article and was...
2016-05-02
882 reads
We have many clients with multi-node Availability Groups - that is, AGs with more than two replicas. One of the problems...
2016-05-03 (first published: 2016-04-22)
4,388 reads
When you use the msdb tables to try to gather information on your SQL Server Agent jobs, inevitably you will...
2016-04-21 (first published: 2016-04-14)
4,204 reads
It started with a failed backup status check:
Msg 50000, Level 16, State 1, Line 73
** Backups listed in this file...
2016-04-04
2,269 reads
PASS SQLSaturdays are free 1-day training events for SQL Server professionals that focus on local speakers, providing a variety of...
2016-03-28
466 reads
A frequent request I receive is to pull a list of logins/users with certain accesses, role memberships, etc.
I had a...
2016-04-07 (first published: 2016-03-24)
1,445 reads
I had an incident today where a colleague was running a Wait Stats Report and the output looked like this:
As...
2016-03-15 (first published: 2016-03-09)
3,003 reads
It started with a tweet from one the many members of the #sqlfamily who always has something meaningful to say,...
2016-03-07 (first published: 2016-03-01)
1,805 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