Free Online SQL Server Training for the Week of January 12, 2013
If you’re a training provider and I’ve missed you, please drop me a line at brian {dot} kelley {at} sqlpass...
2014-01-09
727 reads
If you’re a training provider and I’ve missed you, please drop me a line at brian {dot} kelley {at} sqlpass...
2014-01-09
727 reads
Keep your emails and communications as short as possible.
Make sure you cover everything you absolutely need to, but nothing more....
2014-01-08
394 reads
When writing emails or other communications, state your point or request right at the beginning.
For instance, if you need...
2014-01-07
421 reads
In my IT career, one of the things I have found that sets me apart is my ability to write....
2013-12-23
388 reads
If you’re a training provider and I’ve missed you, please drop me a line at brian {dot} kelley {at} sqlpass...
2013-12-03 (first published: 2013-11-22)
5,329 reads
For those who will be at SQL Saturday #233 in Washington, DC, I’ll be giving my professional development talk, Being...
2013-12-02
2,063 reads
For those who will be at SQL Saturday #233 in Washington, DC, I’ll be giving my professional development talk, Being...
2013-12-02
307 reads
If you’re a training provider and I’ve missed you, please drop me a line at brian {dot} kelley {at} sqlpass...
2013-11-22
341 reads
If you’re a training provider and I’ve missed you, please drop me a line at brian {dot} kelley {at} sqlpass...
2013-11-14
453 reads
If you’re a training provider and I’ve missed you, please drop me a line at brian {dot} kelley {at} sqlpass...
2013-11-14
2,223 reads
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Setting page visibility and the active page are often overlooked last steps when publishing...
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