Why Use R Services?
R Services were added to SQL Server 2016, and there are customers using this feature to improve their business processes.
2016-06-23
178 reads
R Services were added to SQL Server 2016, and there are customers using this feature to improve their business processes.
2016-06-23
178 reads
2016-06-22
195 reads
Larry Page is a very interesting person, one that is looking to change the world.
2016-06-21
122 reads
After the crash of an US Air Force database was reported, Steve Jones has some advice.
2016-06-20
114 reads
2016-06-20
75 reads
SQL Server 2016 runs faster, sometimes without you changing anything.
2016-06-17
265 reads
We might be smart in one area, but not others. That's worth remembering.
2016-06-16
123 reads
The Stretch database feature in SQL Server 2016 is fantastic, but is it too expensive?
2016-06-15
207 reads
2016-06-14
82 reads
2016-06-13
69 reads
By gbargsley
We’ve all been there. Someone walks up and asks, “Is SQL Server having issues?”...
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...
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