New KB Article on SQL Server 2005 File Growth Bug
There is are two new KB articles on how the file growth value can become abnormally large. You can find...
2006-07-13
1,620 reads
There is are two new KB articles on how the file growth value can become abnormally large. You can find...
2006-07-13
1,620 reads
Found this link on one of the security mailing lists I peruse. You can find an archive of the original...
2006-07-11
1,399 reads
Microsoft has published a new Knowledge Base article on the
requirements to receive support for what is known as remote mirroring.
Requirements...
2006-07-07
1,716 reads
I wrote a new article for SQL Server Central on SQL Server 2005 Logins. It covers the basics. This is...
2006-07-05
1,400 reads
It looks like Microsoft Office 2007 will be delayed due to performance
issues. It was supposed to release in conjunction with...
2006-06-29
1,359 reads
Idera's SQL Check
has been updated to support SQL Server 2005. SQL Check is a free
performance monitoring tool, not anywhere near...
2006-06-28
1,547 reads
A blog posting from the WinFS team
caught me a bit by surprise today. Apparently I wasn't the only one,
judging by...
2006-06-27
1,546 reads
This is a bit dated (it came out last week), but here is the list of
the top 100 network security...
2006-06-26
1,457 reads
We are starting up efforts again to try and get a local PASS
chapter based in the Columbia, SC area. If...
2006-06-23
1,386 reads
A few years ago I took the SANS GIAC Security Essentials Course on-line. Included in it was an attempt at...
2006-06-21
2,152 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers