Colorado Springs SQL Server User’s Group Meeting on Wednesday, May 19, 2010
The Colorado Springs SQL Server User’s Group is having their May meeting on May 19.
It will be held at the...
2010-05-07
691 reads
The Colorado Springs SQL Server User’s Group is having their May meeting on May 19.
It will be held at the...
2010-05-07
691 reads
The Denver SQL Server User’s Group will be having their May meeting next Thursday, May 20. As always, the meeting...
2010-05-07
497 reads
I had a question from a developer yesterday about how to calculate the difference between local time (on the database...
2010-05-06
1,501 reads
I think it is very important to be able to discover exactly what type of hardware is in an existing...
2010-05-05
1,002 reads
Since I am very interested in various PC-based hardware, and I make an effort to stay current on new developments,...
2010-05-04
858 reads
Well, I managed to finish up my series that featured a DMV query every day during the month of April....
2010-05-03
2,902 reads
The free 24 Hours of PASS event will be held on May 19-20, and includes 24 different one hour presentations...
2010-05-03
530 reads
The DMV for Day 30 is sys.dm_os_buffer_descriptors, which is described by BOL as:
Returns information about all the data pages that...
2010-04-30
3,259 reads
The DMV for Day 29 is sys.dm_exec_connections, which is described by BOL as:
Returns information about the connections established to this...
2010-04-29
2,903 reads
The DMV for Day 28 is sys.dm_io_pending_io_requests, which is described by BOL as:
Returns a row for each pending I/O request...
2010-04-28
1,249 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