Networking - Part 1
This post, and the next couple in the series (which may not be this week) are me talking through what...
2009-01-06
657 reads
This post, and the next couple in the series (which may not be this week) are me talking through what...
2009-01-06
657 reads
Steve Jones recommended this one to me. It starts at the very beginnings of UPS and goes through pretty much...
2009-01-05
390 reads
I've always been in favor of investing in things that I think will benefit me long term, but all investments...
2009-01-05
1,569 reads
My friend Will Strohl leads this group and asked for help getting the word out. I'm planning to attend.
URL:http://orlando.dotnetnukeug.net/WhatsNew/Events/tabid/91/ctl/Details/Mid/428/ItemID/16/Default.aspx?selecteddate=1/6/2009
Speaker: Stan...
2009-01-05
358 reads
Last year we acquired a small aquarium for my daughter, and then upgraded to a whopping 10 gallon tank. Turned...
2009-01-05
4,017 reads
As many of you know I'm joining the PASS Board of Directors for a two year term beginning yesterday. I'm...
2009-01-01
371 reads
Only a few changes planned for this coming year to the blog (so far), none of them huge:
I plan to...
2008-12-31
1,405 reads
Something new for the end of the year - a recap of everything I posted for 2008. 303 posts if the...
2008-12-30
1,538 reads
Moving databases is fairly simple, but when you move a system database, there are a few extra steps to follow. MVP Brian Knight walks us through how to move temdb in this video.
2008-12-30
4,735 reads
Steve Jones tells me that the biggest advantage that the Kindle offers is the ability to browse and buy a...
2008-12-29
1,391 reads
By Chris Yates
In the beginning, there was OLTP – Online Transaction Processing. Fast, reliable, and ruthlessly...
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...
Hello SQL Server 2022 16.0.4212.1 running on a Windows Server 2025 Std,V 24H2, SO...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
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